Dolphin86 Posted May 17, 2020 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
0 Kreustoo Posted May 17, 2020 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
0 WhiteEagle Posted May 17, 2020 Posted May 17, 2020 I think that's here is exactly what you want. 1 Quote
0 Louis T Steinhil Posted April 5, 2023 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
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
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.