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

Fountain Regen..

jpkulik

New Member
Joined
Mar 15, 2008
Messages
208
Reaction score
2
Hello guys! :D
I was creating my treining system, and now, to fishin it, i tryed to create a fountain, that when used, work's like a health potion.
Some one can helpme with this script?
I hope yes!
Cya fellas.
 
Code:
local health = 1
local action = 2
function onUse(cid, item)
   if item.actionid == action then
      doCreatureAddHealth(cid, health)
   end
   return TRUE
end
o.o
 
Back
Top