Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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!
Ok so I made (10140) An aol And I'm trying to make it inf.. Well I tried editing the charges to 99999 But it still just disappears. Any help? Idk what else I would need to edit. thx
function onDeath(cid, corpse, deathList)
if getPlayerSlotItem(cid, CONST_SLOT_NECKLACE).itemid == 10140 then
doCreatureSetStorage(cid, 1, 1)
end
return true
end
Modify login.lua
LUA:
if getCreatureStorage(cid, 1) == 1 then
doPlayerAddItem(cid, 10140, 1)
doCreatureSetStorage(cid, 1)
end
registerCreatureEvent(cid, 'death')