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

Request soul refiller

wafuboe

Active Member
Joined
Dec 24, 2010
Messages
884
Solutions
2
Reaction score
26
well like the title says i need an item that if you use it it will refill all your soulpoints =P


ty :*
 
u should use this function:

Code:
doPlayerAddSoul(cid, soul)

for example after use item:

Code:
function onUse(cid, item, fromPosition, itemEx, toPosition)

doPlayerAddSoul(cid, 100)
doRemoveItem(item.uid)

return true 
end
 
Back
Top