Jump to content
  • 0

Help with this basic script again :)


Kariton Revolution

Question


  • Group:  Members
  • Topic Count:  161
  • Topics Per Day:  0.04
  • Content Count:  429
  • Reputation:   5
  • Joined:  11/21/11
  • Last Seen:  

prontera,150,150,6    script    PvPRoom    112,{
mes “[PvP Warper]”;
menu “LvL1-99 PvP”,L_Yes,”NoLimit”,L_No;
end;
 
L_Yes:
if (BaseLevel == 98 && Joblevel == 1} next;
warp “pvp_y_6-2”,0,0;
close;
 
L_No:
mes “[PvP Warper]”;
mes “NoLimit.”
warp "pvp_y_7-2",0,0;
close;
}
 
how to make pvp_y_6-2 only level 1 to 99 can join the room?
and can anyone fix the error? ^_^ Thanks

 
Link to comment
Share on other sites

5 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  48
  • Topics Per Day:  0.01
  • Content Count:  1125
  • Reputation:   236
  • Joined:  07/30/12
  • Last Seen:  


prontera,150,150,6 script PvPRoom 112,{

mes "[PvP Warper]";

menu "LvL1-99 PvP",L_Yes,"NoLimit",L_No;

L_Yes:

if (BaseLevel < 99) {

mes "You need to be level 99 to enter.";

close;

}

warp "pvp_y_6-2",0,0;

close;

L_No:

mes "[PvP Warper]";

mes "NoLimit.";

warp "pvp_y_7-2",0,0;

close;

}

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  161
  • Topics Per Day:  0.04
  • Content Count:  429
  • Reputation:   5
  • Joined:  11/21/11
  • Last Seen:  

sir anakid can you make level 1 to 99 can join in 1-99/PvProom

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  65
  • Reputation:   13
  • Joined:  01/08/12
  • Last Seen:  

prontera,150,150,6    script    PvPRoom    112,{
mes "[PvP Warper]";
menu "LvL1-99 PvP",L_Yes,"NoLimit",L_No;

L_Yes:
if (BaseLevel > 0 && BaseLevel < 99) {
mes "You need to be level 99 to enter.";
close;
}
warp "pvp_y_6-2",0,0;
close;

L_No:
mes "[PvP Warper]";
mes "NoLimit.";
warp "pvp_y_7-2",0,0;
close;
}
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  161
  • Topics Per Day:  0.04
  • Content Count:  429
  • Reputation:   5
  • Joined:  11/21/11
  • Last Seen:  

its not working :( my level 150 character can join in 1-99 pvp room :(((



Fix Thankyou AnaKid !! :)) and Vengeance

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10015
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

use this

if( BaseLevel > 99 ){
    mes "You cant join.";
}
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...