• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[Request ]if premium, no lose exp on die !!!!

ninexin

insane.sytes.net
Joined
Jun 10, 2007
Messages
213
Reaction score
3
Location
Brazil
need help for create a creaturescripts !!! onLogin if premium ignore bless and not lose exp on die !!!!


need so muchhhhhhhhhhhhh plx !!!
 
script name.lua
Code:
function onPrepareDeath(cid, lastHitKiller, mostDamageKiller)
if isPlayer(cid) then
doPlayerSetLossPercent(cid, experience, 0)
end
return TRUE
end

creaturescript.xml
Code:
<event type="preparedeath" name="ProtectPremium" event="script" value="script name.lua"/>

login.lua add:
Code:
registerCreatureEvent(cid, "ProtectPremium")
 
You could try changing your premium vocation. Go in vocations.xml and put lessloss="100" on your promoted vocs.
 
Back
Top