Jump to content
  • 0

Question

Posted
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

 

5 answers to this question

Recommended Posts

Posted


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;

}

Posted
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;
}

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...