Jump to content
  • 0

Requesting PVP room But only level 99/70 can access


Kariton Revolution

Question


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

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


  • Group:  Members
  • Topic Count:  5
  • Topics Per Day:  0.00
  • Content Count:  149
  • Reputation:   33
  • Joined:  12/24/11
  • Last Seen:  

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
}

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  12
  • Topics Per Day:  0.00
  • Content Count:  83
  • Reputation:   57
  • Joined:  01/21/12
  • Last Seen:  

Posted · 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

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

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

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:  

set BaseLevel,99;
set JobLevel,70;

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  43
  • Reputation:   1
  • Joined:  01/20/12
  • Last Seen:  

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 by nelsontyh
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...