Monster Cash Point

Jedzkie

The Master of White Spaces
Messages
632
Points
0
Age
33
Location
Philippines
Discord
✪ Jedzkie#0662
IRC Nickname
Jedzkie
Github
Jedzkie
Emulator
Client Version
2016-03-16 RE
Hi! can i request a script that if i kill a monster, ranging 10 levels higher and lower in my level.. it gives me 1 cash point, only 5% chance, hope this is possible im on renewal.

 
Not sure about your idea to give 1 cash point whenever a certain player kills monster who's level is less than the baselevel - 10. It can be abuse
default_tongue.png


Code:
-	script	Sample	-1,{	OnNPCKillEvent:		if (getmonsterinfo(killedrid, MOB_LV) > (BaseLevel + 10) || getmonsterinfo(killedrid, MOB_LV) < (BaseLevel - 10)) {			if (rand(100) < 5)				 #CASHPOINTS++;			dispbottom "You now have " +#CASHPOINTS+ " cash points.";		}		end;}
 
Might wanna add a minimum level requirement to start receiving those bonuses but Patskie's approach is good.

 
Not sure about your idea to give 1 cash point whenever a certain player kills monster who's level is less than the baselevel - 10. It can be abuse
default_tongue.png


- script Sample -1,{ OnNPCKillEvent: if (getmonsterinfo(killedrid, MOB_LV) > (BaseLevel + 10) || getmonsterinfo(killedrid, MOB_LV) < (BaseLevel - 10)) { if (rand(100) < 5)  #CASHPOINTS++; dispbottom "You now have " +#CASHPOINTS+ " cash points."; } end;}
This is great
default_smile.png
, ahm sir Patskie I would like to request also like this script

for every MVP boss that gives cash point for only 5% for low level mvp gives 1-50 cash (random) and then for high mvp give 50-100 (random)  im not sure about the mvp levels dunno what mob is the lowest and the highest. for mini boss 1-10 cash point (random) every mini boss 

 
Last edited by a moderator:
Back
Top