• 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!

If player summon die.

Lua:
function isSummon(cid)
	return (isMonster(cid)) and (getCreatureMaster(cid)~=cid)
end

you can use this function inside

Lua:
function onDeath(cid, corpse, lastHitKiller, mostDamageKiller)
    local money = 1000
    if isSummon(cid) then
        doPlayerWithdrawMoney(getCreatureMaster(cid), money)
    end
    return TRUE
end
 
Back
Top