Kariton Revolution Posted February 19, 2012 Group: Members Topic Count: 161 Topics Per Day: 0.03 Content Count: 429 Reputation: 5 Joined: 11/21/11 Last Seen: January 14, 2017 Share Posted February 19, 2012 is that possible? PVP room But only level 99/70 can access Thanks Quote Link to comment Share on other sites More sharing options...
Jonne Posted February 19, 2012 Group: Members Topic Count: 8 Topics Per Day: 0.00 Content Count: 153 Reputation: 33 Joined: 12/24/11 Last Seen: September 30, 2024 Share 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 Link to comment Share on other sites More sharing options...
Gennosuke Kouga Posted February 19, 2012 Group: Members Topic Count: 12 Topics Per Day: 0.00 Content Count: 83 Reputation: 57 Joined: 01/21/12 Last Seen: September 15, 2014 Share 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."; Link to comment
Kariton Revolution Posted February 20, 2012 Group: Members Topic Count: 161 Topics Per Day: 0.03 Content Count: 429 Reputation: 5 Joined: 11/21/11 Last Seen: January 14, 2017 Author Share 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 Link to comment Share on other sites More sharing options...
Emistry Posted February 20, 2012 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: Sunday at 05:32 PM Share Posted February 20, 2012 set BaseLevel,99; set JobLevel,70; Quote Link to comment Share on other sites More sharing options...
nelsontyh Posted February 21, 2012 Group: Members Topic Count: 8 Topics Per Day: 0.00 Content Count: 43 Reputation: 1 Joined: 01/20/12 Last Seen: August 31, 2012 Share 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 Link to comment Share on other sites More sharing options...
Question
Kariton Revolution
is that possible?
PVP room But only level 99/70 can access
Thanks
Link to comment
Share on other sites
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.