Dolphin86 Posted May 17, 2020 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 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 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...
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