Kariton Revolution Posted February 19, 2012 Posted February 19, 2012 is that possible? PVP room But only level 99/70 can access Thanks Quote
Jonne Posted February 19, 2012 Posted February 19, 2012 This is Support, not Request. And the thing you might want to know is how to check after the Level: if (BaseLevel == 99 && JobLevel == 70) { // warp } else { // don't } Quote
Gennosuke Kouga Posted February 19, 2012 Posted February 19, 2012 · Hidden by Gennosuke Kouga, February 19, 2012 - >o< Hidden by Gennosuke Kouga, February 19, 2012 - >o< Possible, only need to add: if( BaseLevel >= 99 && JobLevel >= 70 ) warp "pvproom",0,0; else mes "You must be within Base/Job Level 99/70 to go to the pvp-room.";
Kariton Revolution Posted February 20, 2012 Author Posted February 20, 2012 sorry for that last one what i gonna place if i want to add #blvl "name" -lvl beacause for example this player level 255 but he want to go to PVP room how to level down the 255/90 to 99/70 Thanks Quote
nelsontyh Posted February 21, 2012 Posted February 21, 2012 (edited) Would it be something like this? Location,x,y,direction script name sprite,{if (BaseLevel == 99 && Joblevel == 70} { warp “location”,0,0;} else { mes “[PvP Warper]”; mes “This pvp room is for level 99/70 only”; next; mes “[PvP Warper]”; mes “Would you like to decrease your level to 99/70 for this?”; mes “Note: You would have to level to 255/90 again.”; menu “Yes”,L_Yes,”No”,L_No; end;L_Yes: set Baselevel,99; set JobLevel,70; warp “location”,0,0; close;L_No: mes “[PvP Warper]”; mes “Very well then.” close;}}[/codeBOX] Edited February 21, 2012 by nelsontyh Quote
Question
Kariton Revolution
is that possible?
PVP room But only level 99/70 can access
Thanks
5 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.