Jump to content
  • 0

Request Auto Reward Zeny For Base Level


Dolphin86

Question


  • Group:  Members
  • Topic Count:  253
  • Topics Per Day:  0.06
  • Content Count:  701
  • Reputation:   16
  • Joined:  01/07/12
  • Last Seen:  

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

  • 0

  • Group:  Members
  • Topic Count:  34
  • Topics Per Day:  0.01
  • Content Count:  215
  • Reputation:   45
  • Joined:  05/03/13
  • Last Seen:  

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:
image.png.5574db4d08d9fcaf67e0ff516c3ad17a.png

Not heavily tested

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  76
  • Topics Per Day:  0.02
  • Content Count:  461
  • Reputation:   61
  • Joined:  08/28/12
  • Last Seen:  

I think that's here is exactly what you want.

 

  • Upvote 1
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  17
  • Topics Per Day:  0.00
  • Content Count:  81
  • Reputation:   12
  • Joined:  06/22/13
  • Last Seen:  

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:
image.png.5574db4d08d9fcaf67e0ff516c3ad17a.png

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 by Ylen X Walker
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...