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

firewalker boot PLEASE HELP

Nerkoerko

Banned User
Joined
Feb 28, 2009
Messages
402
Reaction score
5
Location
Polska
I need equipment (assistance) necessary unite about it it two codes hota will give it and firewalker?

local itemToCreateFullHelmet = 2147
local NotFullHelmetOfTheAncients = 9934

function onUse(cid, item, fromPosition, itemEx, toPosition)
if item.itemid == itemToCreateFullHelmet then
if itemEx.itemid == NotFullHelmetOfTheAncients then
doRemoveItem(item.uid, 1)
doTransformItem(itemEx.uid, itemEx.itemid - 1)
end
end
return TRUE
end
 
Last edited:
Lua:
local config = {ItemNOTfull = 0000, ItemNeed = 0000, FullItem = 0000}

function onUse(cid, item, fromPosition, itemEx, toPosition)
    if doPlayerRemoveItem(cid, config.ItemNOTfull, 1) and doPlayerRemoveItem(cid, config.ItemNeed, 1) == TRUE
	 doPlayerAddItem(cid, config.FullItem, 1)
    end
  return TRUE
end
 
Back
Top