• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Item Problem

wikutag

SoulBound 8.6 100% custom
Joined
Dec 27, 2012
Messages
305
Reaction score
0
Location
United states Kentucky
Amulet does disappears when u die seems like its all screwed up
Help

</item>
<item id="2138" article="a" name="Donate Amulet">
<attribute key="weight" value="100" />
<attribute key="armor" value="4" />
<attribute key="absorbPercentFire" value="3" />
<attribute key="absorbPercentDeath" value="3" />
<attribute key="absorbPercentIce" value="3" />
<attribute key="absorbPercentEnergy" value="3" />
<attribute key="speed" value="20" />
<attribute key="slotType" value="necklace" />
<attribute key="showattributes" value="1" />
<attribute key="preventDrop" value="100" />
<attribute key="showcharges" value="10000" />
</item>
 
You know what its my bless i think the ammy isnt suppose to be protected
Like it works but it seems to not work with the ammy
PHP:
-- [(  Script edited by: DoidinMapper )] --
function onSay(cid, words, param)
if getPlayerBlessing(cid, 1) or getPlayerBlessing(cid, 2) or getPlayerBlessing(cid, 3) or getPlayerBlessing(cid, 4) or getPlayerBlessing(cid, 5) then
doPlayerSendCancel(cid,'You have already got one or more blessings!')
else
if doPlayerRemoveMoney(cid, 50000) == TRUE then
doPlayerAddBlessing(cid, 1)
doPlayerAddBlessing(cid, 2)
doPlayerAddBlessing(cid, 3)
doPlayerAddBlessing(cid, 4)
doPlayerAddBlessing(cid, 5)
doSendMagicEffect(getPlayerPosition(cid), 28)
doPlayerSendTextMessage(cid,MESSAGE_EVENT_ADVANCE, 'You have been blessed by the gods!')
else
doPlayerSendCancel(cid, "You need 50.000 gold coins to get blessed!")
end
end
return TRUE
end
 
Back
Top