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

Amulet With Bless

Joined
Sep 29, 2009
Messages
224
Reaction score
0
I Have One Amulet And I Need When Player Use This, He Win All Bless.

Here:
Code:
function onPrepareDeath(cid, lastHitKiller, mostDamageKiller)
    if isPlayer(cid) == true then
        if (getPlayerSlotItem(cid, CONST_SLOT_NECKLACE).itemid == 2196) then
		    if (getCreatureSkullType(cid) == SKULL_RED or SKULL_BLACK) then
                doCreatureSetDropLoot(cid, false)       
                doSendMagicEffect(getCreaturePosition(cid), CONST_ME_HOLYAREA) 
        return true
		    end
        end
    end
    return true
end

Thx
 
Back
Top