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

Solved talkaction to restore softboots on tfs 1.0

mimus

New Member
Joined
Mar 14, 2012
Messages
168
Reaction score
2
hello everybody! im wondering if you could helpme to do a talkaction to restore the worn soft boots to a new brand pair of soft boots, tank u so much!
 
Code:
function onSay(cid, words, param)
     local player, effect = Player(cid), CONST_ME_POFF

     if player:getItemCount(10021) >= 1 then
         if player:removeMoney(10000) then
             player:removeItem(10021, 1)
             player:addItem(2640, 1)
             player:sendTextMessage(MESSAGE_INFO_DESCR, "You repaired your soft boots for 10000 gold.")
             effect = CONST_ME_MAGIC_BLUE
         else
             player:sendTextMessage(MESSAGE_STATUS_SMALL, "You don't have enough money.")
         end
     else
         player:sendTextMessage(MESSAGE_STATUS_SMALL, "You don't have worn soft boots.")
     end
     player:getPosition():sendMagicEffect(effect)
     return false
end
 
Back
Top