Jump to content
  • 0

Script that automatically raises MAX LEVEL


PandaLovesHamster

Question


  • Group:  Members
  • Topic Count:  51
  • Topics Per Day:  0.01
  • Content Count:  452
  • Reputation:   33
  • Joined:  12/18/14
  • Last Seen:  

Hi, would it be possible for a someone to make a script that will make the current server's max level raise when a certain event or instance is finished?

For example, current max level for the server is level 15, when players finish a certain instance, max level will then be increased to 25.

I'm sure this is kinda complex, so I would really appreciate it even if it's just the max level thingy or something .. let's just say every 30 minutes it will raise the server max level by about 5. So lv15 -> 30 mins -> lv20 -> 30 mins -> lv25 ... something like that.

Thank you so much if someone can help me out here.

Link to comment
Share on other sites

4 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  53
  • Topics Per Day:  0.01
  • Content Count:  411
  • Reputation:   261
  • Joined:  04/25/12
  • Last Seen:  

Well, you can "Block" the Up.

 

ex:

 

prontera,150,150,5 Script Up Blocked 90,{
 
mes "What level do you want to became the max?";
input .@lvlblock;
next;
mes "Done!";
close2;
set $lvlblock,.@lvlblock;
end;
 
OnPcBaseUpEvent:
if(BaseLevel>.@lvlblock){
set BaseLevel,.@lvlblock;
dispbottom "You can pass the lvl max!";
end;
}
end;
}

 

But i think that @lvlup bypass this, this will only work on up with monsters

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  51
  • Topics Per Day:  0.01
  • Content Count:  452
  • Reputation:   33
  • Joined:  12/18/14
  • Last Seen:  

Hi, thanks for the reply. I'll definitely try this. It would be awesome if it would automatically update for let's say a certain player can finally get in for example town Prontera. If some player can manage to go in Prontera, it will automatically increase the max level.

But I'll be using this for now. It would require someone to actually input the level limit right?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  53
  • Topics Per Day:  0.01
  • Content Count:  411
  • Reputation:   261
  • Joined:  04/25/12
  • Last Seen:  

Yes, but you can make with set, this is only a sample.

 

This could be:

 

prontera,150,150,5 Script Up Blocked 90,{
 
end;
 
OnInit:
set  $lvlblock,2; // Max LvL == 2
end;
 
OnPcBaseUpEvent:
if(BaseLevel>$lvlblock){
set BaseLevel,$lvlblock;
dispbottom "You can pass the lvl max!";
end;
}
end;
}

 

@off

 

One quest, this is for a SAO server?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  51
  • Topics Per Day:  0.01
  • Content Count:  452
  • Reputation:   33
  • Joined:  12/18/14
  • Last Seen:  

Thanks so much, this will really help us out.

Yup, we're trying to make a semi-SAO server, just the floor clearing feature though.Trying to stay as close to the official with the other features and stuff though.

Edited by PandaRapesHamster
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...