Hello, fellow otland member's. I was just wondering if someone can rig up a creature script for me.
I'm in need of a script if storage id +1 then it add's a 2% Magic Level / Skill level Damage on login. And for every +1 storage it detects it add's 2% on top of the other 2% it was given so for an example Below.
- Example -
77665 1=2%
77665 2=4%
77665 3=6%
77665 4=8%
77665 5=10%
77665 6=12%
- If this can be done i would be greatly appreciated and Thank you -
- - - Updated - - -
Or if someone can make this give the % in bonus attack's. and make it go up by 2% every rebirth you have.
Yes i have the function GetPlayerRebirths.
I'm in need of a script if storage id +1 then it add's a 2% Magic Level / Skill level Damage on login. And for every +1 storage it detects it add's 2% on top of the other 2% it was given so for an example Below.
- Example -
77665 1=2%
77665 2=4%
77665 3=6%
77665 4=8%
77665 5=10%
77665 6=12%
- If this can be done i would be greatly appreciated and Thank you -
- - - Updated - - -
Or if someone can make this give the % in bonus attack's. and make it go up by 2% every rebirth you have.
Yes i have the function GetPlayerRebirths.
LUA:
function onLogin(cid)
if getPlayerRebirths(cid) >= 1 then
end
return true
end
Last edited: