Dolphin86 Posted May 17, 2020 Group: Members Topic Count: 280 Topics Per Day: 0.06 Content Count: 757 Reputation: 17 Joined: 01/07/12 Last Seen: December 18, 2024 Share Posted May 17, 2020 As title, can someone create a script that reward player 1k zeny for each 10 base level player gain? example : player get lvl 10 base get reward 1000zeny player get lvl 20 base get reward 1000zeny and so on, reward are automatic every time they reach certain mile stone, also add notice to player chat log example : Congratulation you have reach milestone base level 10, you gained 1000z, next mile stone is base level 20 Quote Link to comment Share on other sites More sharing options...
0 Kreustoo Posted May 17, 2020 Group: Members Topic Count: 34 Topics Per Day: 0.01 Content Count: 216 Reputation: 45 Joined: 05/03/13 Last Seen: March 9 Share Posted May 17, 2020 Hello, - script LabelEvent -1,{ OnPCBaseLvUpEvent: while(BaseLevel - lastRewarded >= 10){ //lastRewarded to not miss multiple leveling lastRewarded = lastRewarded + 10; Zeny = Zeny + 1000; dispbottom "Congratulation you have reach milestone base level "+(lastRewarded)+", you gained 1000z"+(lastRewarded<90?(", next mile stone is base leve "+(lastRewarded+10)+"."):"."); } } Killed one remover: Not heavily tested Quote Link to comment Share on other sites More sharing options...
0 WhiteEagle Posted May 17, 2020 Group: Members Topic Count: 79 Topics Per Day: 0.02 Content Count: 480 Reputation: 67 Joined: 08/28/12 Last Seen: 9 hours ago Share Posted May 17, 2020 I think that's here is exactly what you want. 1 Quote Link to comment Share on other sites More sharing options...
0 Louis T Steinhil Posted April 5, 2023 Group: Members Topic Count: 37 Topics Per Day: 0.01 Content Count: 177 Reputation: 33 Joined: 06/22/13 Last Seen: Saturday at 11:49 PM Share Posted April 5, 2023 (edited) On 5/18/2020 at 12:03 AM, Kreustoo said: Hello, - script LabelEvent -1,{ OnPCBaseLvUpEvent: while(BaseLevel - lastRewarded >= 10){ //lastRewarded to not miss multiple leveling lastRewarded = lastRewarded + 10; Zeny = Zeny + 1000; dispbottom "Congratulation you have reach milestone base level "+(lastRewarded)+", you gained 1000z"+(lastRewarded<90?(", next mile stone is base leve "+(lastRewarded+10)+"."):"."); } } Killed one remover: Not heavily tested Hello i tried this but it skips level 10 on multi level up enabled. I want to include level 10 also. Edited April 5, 2023 by Ylen X Walker Quote Link to comment Share on other sites More sharing options...
Question
Dolphin86
As title, can someone create a script that reward player 1k zeny for each 10 base level player gain?
example :
player get lvl 10 base get reward 1000zeny
player get lvl 20 base get reward 1000zeny
and so on, reward are automatic every time they reach certain mile stone, also add notice to player chat log
example : Congratulation you have reach milestone base level 10, you gained 1000z, next mile stone is base level 20
Link to comment
Share on other sites
3 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.