• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Experience Scroll - onUse - onLogin - onThink

kito2

www.masteria.net
Joined
Mar 9, 2009
Messages
3,764
Solutions
1
Reaction score
227
Location
Chile, Santiago
Basically Im looking for a script that will add a % extra to your current experience stage for some specific time.

The idea is to use a script which dissapears and add the exp; after this you can relog or whatever before the specific time ends and you will keep receiving the bonus.

If you are online, and the specific time goes, you get back to your normal experiencei stage.

I saw a few scripts here over otland, but they were a bit bugged.
 
The idea is to use http://otland.net/threads/mod-experience-scroll-with-time-expire.147551/ this mods but making it work... What isn't working:

1) The onThink event isn't working.
2) Also doPlayerSetExperienceRate(cid, rates[SKILL__LEVEL]+config.rate) will add 1+2 = 3 => 300% more of experience... If you want to add 25%, it should be doPlayerSetExperienceRate(cid, rates[SKILL__LEVEL]*config.rate) having config.rate = 1.25 otherwise you will ask why you are not getting the amount you spect. This happens because if you use doPlayerSetExperienceRate(cid, 1.73) it will raise player experience in a 73% percent.
 
Back
Top