[1/11/2015 15:34:0] data/actions/scripts/cassino/rare club.lua:1: unexpected symbol near 'ï'
SCRIPT rare club \/
function onUse(cid, item, frompos, item2, topos) --== Configurações local config = { items = {5957, 10000, 8928, 7697, 10311}, -- Itens que ele pode ganhar vp = 12661, -- ID do Vip Coin } --== Fim das Configurações
local rand = math.random(1, #config.items) if (item.actionid == 1144) and item.itemid == 1945 then if getPlayerItemCount(cid, config.vp) >= 6 then doPlayerRemoveItem(cid, config.vp, 6) doPlayerAddItem(cid, config.items[rand], 1) doBroadcastMessage("O Jogador ["..getCreatureName(cid).."] Esta com sorte Hoje e Acaba de Ganhar ["..getItemNameById(config.items[rand]).."] No Cassino.")
else doPlayerSendCancel(cid,"Voce precisa de 6 Vip Coins") doSendMagicEffect(getPlayerPosition(cid), 6) end elseif item.itemid == 1946 then doTransformItem(item.uid,item.itemid-1) end
Pergunta
Squash01 2
Alguem Poderia Arrumar este Erro no Script?
Valendo Sempre +REP
function onUse(cid, item, frompos, item2, topos)
--== Configurações
local config = {
items = {5957, 10000, 8928, 7697, 10311}, -- Itens que ele pode ganhar
vp = 12661, -- ID do Vip Coin
}
--== Fim das Configurações
local rand = math.random(1, #config.items)
if (item.actionid == 1144) and item.itemid == 1945 then
if getPlayerItemCount(cid, config.vp) >= 6 then
doPlayerRemoveItem(cid, config.vp, 6)
doPlayerAddItem(cid, config.items[rand], 1)
doBroadcastMessage("O Jogador ["..getCreatureName(cid).."] Esta com sorte Hoje e Acaba de Ganhar ["..getItemNameById(config.items[rand]).."] No Cassino.")
else
doPlayerSendCancel(cid,"Voce precisa de 6 Vip Coins")
doSendMagicEffect(getPlayerPosition(cid), 6)
end
elseif item.itemid == 1946 then
doTransformItem(item.uid,item.itemid-1)
end
return TRUE
end
Link para o comentário
Compartilhar em outros sites
7 respostass a esta questão
Posts Recomendados