Jump to content
  • 0

gm zone


primeRO

Question


  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  10
  • Reputation:   0
  • Joined:  10/05/12
  • Last Seen:  

Can I ask for gm zone room?..which all gm (admin, event) are authorized to enter the room..

if any normal players attempt to enter the room..they will @nuke and announce like this:

"player_name" attempt to enter the gm zone..this will be your last warning..something like that..

thx

Link to comment
Share on other sites

3 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  30
  • Topics Per Day:  0.01
  • Content Count:  782
  • Reputation:   82
  • Joined:  01/01/12
  • Last Seen:  

You can learn to script by find right commands in /doc/script_commands.txt

if (getgmlevel < 1) {
dispbottom "You are not authorised!";
atcommand "@die";
announce strcharinfo(0)+" attempted to enter the GM room!";
end;
}

Edited by darristan
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  10
  • Reputation:   0
  • Joined:  10/05/12
  • Last Seen:  

You can learn to script by find right commands in /doc/script_commands.txt

if (getgmlevel < 1) {
dispbottom "You are not authorised!";
atcommand "@die";
announce strcharinfo(0)+" attempted to enter the GM room!";
end;
}

Sir can I ask for the full script?..

here's the map I want to be my gm zone..

job3_sha01,72,25

thanks

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  24
  • Reputation:   1
  • Joined:  05/27/12
  • Last Seen:  

prontera,155,185,5 script GM Room 998,{

if (getgmlevel() >= 1){

mes "Hello there GM " + strcharinfo(0) + " !";

mes "Would you like to warp you in your room?";

switch(select("YES:NO")) {

case 1:

next;

warp "job3_sha01",72,25;

end;

case 2:

mes "Ok...";

mes "Have a Nice Day!!!";

close;

}

}

}

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...