Jump to content

Recommended Posts

Posted (edited)

PLEASE HELP ME! i'm thinking of a script that if i use the equipment it has

1% chance to boost the character EXP by 50% for 10 minutes if he killed a

level 75 or higher level monster

I tried several scripts but it failed.

 

Edited by KyleEzra
  • 4 weeks later...
Posted
On ‎08‎/‎03‎/‎2018 at 11:16 AM, KyleEzra said:

PLEASE HELP ME! i'm thinking of a script that if i use the equipment it has

1% chance to boost the character EXP by 50% for 10 minutes if he killed a

level 75 or higher level monster

I tried several scripts but it failed.

 

As I reviewed the item_bonus.txt, this is impossible. Unless you have knowledge on programming to create your own item bonus.

Posted
-	script	sample	-1,{
	
	OnNPCKillEvent:
		if (isequipped(<item_id>)) {
			if (rand(100) < 1) 
				if (getmonsterinfo(killedrid, MOB_LV) >= 75) {
					sc_start SC_EXPBOOST, (600 * 1000), 50;
				}
		}
		end;
}

 

  • Like 1
Posted
13 hours ago, Emistry said:

-	script	sample	-1,{
	
	OnNPCKillEvent:
		if (isequipped(<item_id>)) {
			if (rand(100) < 1) 
				if (getmonsterinfo(killedrid, MOB_LV) >= 75) {
					sc_start SC_EXPBOOST, (600 * 1000), 50;
				}
		}
		end;
}

 

There you go OP. Emistry at your service :P /heh

Posted (edited)
On 3/31/2018 at 10:27 AM, Emistry said:
-	script	sample	-1,{
	
	OnNPCKillEvent:
		if (isequipped(<item_id>)) {
			if (rand(100) < 1) 
				if (getmonsterinfo(killedrid, MOB_LV) >= 75) {
					sc_start SC_EXPBOOST, (600 * 1000), 50;
				}
		}
		end;
}

 

this one is working perfectly, thanks Emistry

 

On 3/31/2018 at 11:52 PM, philfix.sai said:

There you go OP. Emistry at your service :P /heh

yup he saves the day again :D

Edited by KyleEzra
  • 4 years later...
Posted
On 3/30/2018 at 6:27 PM, Emistry said:
-	script	sample	-1,{
	
	OnNPCKillEvent:
		if (isequipped(<item_id>)) {
			if (rand(100) < 1) 
				if (getmonsterinfo(killedrid, MOB_LV) >= 75) {
					sc_start SC_EXPBOOST, (600 * 1000), 50;
				}
		}
		end;
}

 

Good day sir. How about if just for overally monster and no required lvl? and plus additional exp gain for about 10-20%? Thank you in advance.

Posted
On 7/23/2022 at 6:36 AM, iFox said:

Good day sir. How about if just for overally monster and no required lvl? and plus additional exp gain for about 10-20%? Thank you in advance.

just change your server exp rate to 10~20% higher ?

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...