-
Quem Está Navegando 0 membros estão online
- Nenhum usuário registrado visualizando esta página.
-
Conteúdo Similar
-
- 0 respostas
- 958 visualizações
-
- 1 resposta
- 2927 visualizações
-
- 0 respostas
- 907 visualizações
-
- 1 resposta
- 2245 visualizações
-
Pergunta
Xruan10x 0
Eae galera blz?
Bom é o seguinte estou tentando usar um script postado aqui no forum, só q esta dando um erro na minha distro.
o script é esse:
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
local ball_slot, price = 12355, 1000 --ID do slot em que a pokebola fica; Preço p/ remover o held item.
function onUse(cid, item, fromPosition, itemEx, toPosition)
local ball_pos = toPosition
ball_pos.x = ball_pos.x + 1
local ball_slot = getTileItemById(ball_pos, ball_slot).uid
local pokeball = getContainerItem(ball_slot, 0).uid
if pokeball <= 0 or not getItemAttribute(pokeball, "poke") then
doPlayerSendCancel(cid, "You must put on the pokeball slot a valid pokeball.")
return true
end
local held_item = {}
for itemid, held_info in pairs(heldTable) do
local attr = getItemAttribute(pokeball, held_info.attribute)
if attr and attr == held_info.ident then
table.insert(held_item, itemid)
end
end
if #held_item == 0 then
doPlayerSendCancel(cid, "Your pokemon does not have a held item.")
return true
elseif getPlayerMoney(cid) < price then
doPlayerSendCancel(cid, "You need more "..price - getPlayerMoney(cid).." gold to remove your pokemon's held item(s).")
return true
end
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "You removed your pokeball's held item(s) for the price of "..price.." gold.")
doPlayerRemoveMoney(cid, price)
for i = 1, #held_item do
doPlayerAddItem(cid, held_item, 1)
doItemSetAttribute(pokeball, heldTable[held_item].attribute, nil)
end
return true
end
-------------------------------------------------------------------------------------------------------------------------------------------
OBS:Tentei por em spoiler mas n consegui, me desculpem pela má organização xD
Link para o comentário
Compartilhar em outros sites
10 respostass a esta questão
Posts Recomendados