Thanatos Card

skenywitdafer

New member
Messages
42
Points
0
Can anyone help with this my thana card in my server is too powerful its the same now as ice pick can any one change it to demi-human something like that can you post the script here coz i dont understand much on scripting items.

 
Very easy. Follow through your item_bonus.txt file. You're going to need to learn how to change something as easy as item scripts if you're running a server, so why not start now?

Since you don't want to "Ignore" their defence, but just want damage increased to demi-humans, try 

bonus2 bAddRace,n,x;
Note: This is just physical damage, not magic.

 
Last edited by a moderator:
how to script this one.

Increase damage to the Demi Human monsters by 25%. Flee -30

or

Increase Damage from Demi-Human by 25%

Drain sp on each attack

flee rate + 30

 
Last edited by a moderator:
For flee, you need to try this:

bonus bFlee,n; Flee + n 


For draining sp, try this:

bonus2 bSPDrainRate,n,x; n/10 % probability to drain x% SP when attacking 


And for increasing damage received by Demi-Humans, you would want to try this:

bonus2 bSubRace,n,x; +x% damage reduction against race n n: 0=Formless, 1=Undead, 2=Brute, 3=Plant, 4=Insect, 5=Fish, 6=Demon, 7=Demi-Human, 8=Angel, 9=Dragon, 10=Boss monster, 11=Other than (normal monster) boss monster 
But keep in mind, if you leave it as a positive number, it'll help reduce damage from a race, but if you use a negative, it'll increase damage from race.
 
Last edited by a moderator:
Back
Top