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

Lua Whos it going with this....

WibbenZ

Global Moderator
Staff member
Global Moderator
Joined
Oct 16, 2008
Messages
6,374
Solutions
229
Reaction score
1,503
Location
Sweden
Well looki here :))
ex.
Lua:
function onLogin(cid)
setCreatureStorageValue(cid,11551)
if getPlayerStorageValue(cid,11551) >= 1 then
doCreatureAddHealth(cid, 100)
end

Not the best ex. but how to remove the damn storageValue?
rep++
 
like that ? i donno what you need
Lua:
function onLogin(cid)
setCreatureStorageValue(cid,11551,1)-- this sets storage 
if getPlayerStorageValue(cid,11551) >= 1 then  -- this check storage exist
doCreatureAddHealth(cid, 100)
setCreatureStorageValue(cid,11551,-1)  -- this remove storage 
end
 
Back
Top