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

Water From Hydra Cave

Bulet

Knight of Apocalypse
Joined
Jul 12, 2009
Messages
183
Reaction score
9
Location
Brazil
Any one can help me with these script to got a pure water from hydra cave to druid outfit?

Water
17:23 You see shallow water.ItemID: [4613], ActionID: [60156].
Ceiron WaterSkin EMPTY
17:24 You see a waterhose.It weighs 8.00 oz.ItemID: [5938].
Ceiron WaterSkin with pure water
17:25 You see a waterhose.It weighs 10.00 oz.ItemID: [5939].

If want SS ask me but i think will just need that to make
 
./data/actions/actions.xml:
Code:
<action itemid="5938" event="script" value="script_name.lua"/>

Script:
Code:
function onUse(cid, item, fromPosition, itemEx, toPosition)
	if(itemEx.actionid == 60156) then
		doTransformItem(item.uid, 5939)
	end
	return true
end
 
Back
Top