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

Aol With full protect but no bless need help!

TKO

Syphero Owner!
Joined
Mar 10, 2008
Messages
2,252
Reaction score
27
Location
Sweden
Hey i want my forever aol with protection for rs/bs to be full bless how do i do that? i have a script here:
Code:
  function onPrepareDeath(cid, lastHitKiller, mostDamageKiller)
    if isPlayer(cid) == true then
        if (getPlayerSlotItem(cid, CONST_SLOT_NECKLACE).itemid == 115) then
                doCreatureSetDropLoot(cid, false)      
                doSendMagicEffect(getCreaturePosition(cid), CONST_ME_HOLYAREA)
				doCreatureSay(cid, "SKULL AMULET!", TALKTYPE_ORANGE_1)
        return true
        end
    end
    return true
end
 
Bump any one? how can i make this neckless have auto bless or when you have it on you always have bless!
 
Sorry, didn't see that you want everything in a single script

Code:
function onPrepareDeath(cid, lastHitKiller, mostDamageKiller)
	if(isPlayer(cid) and getPlayerSlotItem(cid, CONST_SLOT_NECKLACE).itemid == 115) then
		for i = 1, 5 do
			doPlayerAddBlessing(cid, i)
		end
		doCreatureSetDropLoot(cid, false)      
		doSendMagicEffect(getCreaturePosition(cid), CONST_ME_HOLYAREA)
		doCreatureSay(cid, "SKULL AMULET!", TALKTYPE_ORANGE_1)
	end
	return true
end
 
Back
Top