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

C++ put 2 hour exhaustion to be able to use another item again

kfalls

New Member
Joined
Jan 11, 2018
Messages
16
Reaction score
1
local config = {

effect = 503 --

}

function onUse(cid, item, fromPosition, itemEx, toPosition)
doCreatureAddMana(cid, getCreatureMaxMana(cid))
doRemoveItem(item.uid)
doCreatureSay(cid, "Craack..", TALKTYPE_ORANGE_1, cid)
return true
end
 
Back
Top