Ir para conteúdo
  • Cadastre-se

Posts Recomendados

Estou com Estes 2 Erros nos Scripts

Alguem poderia me Ajudar?

Sempre Valendo +REP

 

1º Erro

[15/2/2015 16:50:35] [Error - CreatureScript Interface] 
[15/2/2015 16:50:35] data/creaturescripts/scripts/dota/ga3.lua:onDeath
[15/2/2015 16:50:35] Description: 
[15/2/2015 16:50:35] (LuaInterface::luaDoRemoveCreature) Creature not found
1º Script

function onDeath(cid, corpse, killer)



local M ={
["Gerador Azul III"] = {Pos = {x=194,y=1168,z=7},id= 1353,Pos2 = {x=202,y=1167,z=7},id2= 1354,Pos3 = {x=217,y=1167,z=7},id3= 1354,Pos4 = {x=229,y=1167,z=7},id4= 1354},
}
local mensage1 = "[Evento Dota] Gerador Azul III Foi Destruido! Time Azul foi o Vencedor desta Rodada do Evento Dota! Sala dos vencedores Liberada, Comemorem!" -- Mensagem depois que o Gerador for Destruido
local v3 = {x=211, y=1167, z=7, stackpos=253} -- position v3
local v2 = {x=223, y=1166, z=7, stackpos=253} -- position v2
local v1 = {x=235, y=1167, z=7, stackpos=253} -- position v1

local x = M[getCreatureName(cid)]
if x then
local parede = getTileItemById(x.Pos, x.id)
local parede2 = getTileItemById(x.Pos2, x.id2)
local parede3 = getTileItemById(x.Pos3, x.id3)
local parede4 = getTileItemById(x.Pos4, x.id4)
if parede then
doRemoveItem(parede.uid, 1)
doRemoveItem(parede2.uid, 1)
doRemoveItem(parede3.uid, 1)
doRemoveItem(parede4.uid, 1)
doRemoveCreature(getThingfromPos(v3).uid)
doRemoveCreature(getThingfromPos(v2).uid)
doRemoveCreature(getThingfromPos(v1).uid)

broadcastMessage(mensage1, MESSAGE_EVENT_ADVANCE)
end
end
return TRUE
end

 
2º Erro
[15/2/2015 17:37:35] [Error - TalkAction Interface] 
[15/2/2015 17:37:35] data/talkactions/scripts/loteria_tk.lua:onSay
[15/2/2015 17:37:35] Description: 
[15/2/2015 17:37:35] data/talkactions/scripts/loteria_tk.lua:11: attempt to compare number with nil
[15/2/2015 17:37:35] stack traceback:
2º Script

function onSay(cid, words, param)



if getPlayerStorageValue(cid, 828121) >= 0 then
return doPlayerSendTextMessage(cid, 27, "Você já está participando do evento!")
end

if getGlobalStorageValue(9183112) == -1 then
return doPlayerSendTextMessage(cid, 27, "O evento não está em execução, Aguarde ele comecar!")
end

if (tonumber(param) > 10) then
return doPlayerSendTextMessage(cid, 27, "Somente números de 1 á 10.")
end

if doPlayerRemoveMoney(cid, 100000) == FALSE then
return doPlayerSendTextMessage(cid, 27, "Você não possui dinheiro o suficiente para participar do evento! É necessário ter 100k!")
end

setPlayerStorageValue(cid, 828121, param)
doPlayerSendTextMessage(cid, 27, "Agora você está participando do evento, seu número: ".. param ..", Aguarde o resultado, Boa sorte!")
return true
end

 

 

VENHAM JOGAR O MELHOR BAIAK JÁ CRIADO DE 2022!!

 

CRIE SUA CONTA AGORA MESMO!

 

www.baiakudo.com

Link para o post
Compartilhar em outros sites

Já esta Adicionado... tudo certo lá.

VENHAM JOGAR O MELHOR BAIAK JÁ CRIADO DE 2022!!

 

CRIE SUA CONTA AGORA MESMO!

 

www.baiakudo.com

Link para o post
Compartilhar em outros sites

Dou uma olhada depois no primeiro erro.

Já sobre o segundo:

function onSay(cid, words, param)
    if not param or param == "" then
        return doPlayerSendCancel(cid, "/command number[1-10]")
    elseif not tonumber(param) then
        return doPlayerSendCancel(cid, "/command number[1-10]")
    elseif getPlayerStorageValue(cid, 828121) >= 0 then
        return doPlayerSendTextMessage(cid, 27, "Você já está participando do evento!")
    elseif getGlobalStorageValue(9183112) == -1 then
        return doPlayerSendTextMessage(cid, 27, "O evento não está em execução, Aguarde ele comecar!")
    elseif tonumber(param) < 1 or tonumber(param) > 10 then
        return doPlayerSendTextMessage(cid, 27, "Somente números de 1 á 10.")
    elseif not doPlayerRemoveMoney(cid, 100000) then
        return doPlayerSendTextMessage(cid, 27, "Você não possui dinheiro o suficiente para participar do evento! É necessário ter 100k!")
    else
        setPlayerStorageValue(cid, 828121, param)
        doPlayerSendTextMessage(cid, 27, "Agora você está participando do evento, seu número: "..param..". Aguarde o resultado, boa sorte!")
    end
    return true
end
Editado por zipter98 (veja o histórico de edições)

não respondo pms solicitando suporte em programação/scripting

Link para o post
Compartilhar em outros sites

Funfo o 2 Script...

Só Falta o Primeiro =D

VENHAM JOGAR O MELHOR BAIAK JÁ CRIADO DE 2022!!

 

CRIE SUA CONTA AGORA MESMO!

 

www.baiakudo.com

Link para o post
Compartilhar em outros sites

Participe da conversa

Você pode postar agora e se cadastrar mais tarde. Se você tem uma conta, faça o login para postar com sua conta.

Visitante
Responder

×   Você colou conteúdo com formatação.   Remover formatação

  Apenas 75 emojis são permitidos.

×   Seu link foi automaticamente incorporado.   Mostrar como link

×   Seu conteúdo anterior foi restaurado.   Limpar o editor

×   Não é possível colar imagens diretamente. Carregar ou inserir imagens do URL.

  • Quem Está Navegando   0 membros estão online

    Nenhum usuário registrado visualizando esta página.

  • Conteúdo Similar

    • Por DeathRocks
      Bom Pessoal,
       
      Estou com Este Erro na Minha Distro...
      E Queria Que vcs Conseguise Arrumar
      E Uso OTX 8.60
      Ficaria Muito Grato e Sempre Valendo +REP
       
      Mensagem do Erro
      [3/12/2015 16:9:4] [Error - CreatureScript Interface] [3/12/2015 16:9:4] data/creaturescripts/scripts/fraglook.lua:onLook [3/12/2015 16:9:4] Description: [3/12/2015 16:9:4] (LuaInterface::luaGetPlayerNameByGUID) Player not found E Aqui Esta o Script
      function getPlayerFrags(cid) local time = os.time() local times = {today = (time - 86400), week = (time - (7 * 86400))} local contents, result = {day = {}, week = {}, month = {}}, db.getResult("SELECT `pd`.`date`, `pd`.`level`, `p`.`name` FROM `player_killers` pk LEFT JOIN `killers` k ON `pk`.`kill_id` = `k`.`id` LEFT JOIN `player_deaths` pd ON `k`.`death_id` = `pd`.`id` LEFT JOIN `players` p ON `pd`.`player_id` = `p`.`id` WHERE `pk`.`player_id` = " .. getPlayerGUID(cid) .. " AND `k`.`unjustified` = 1 AND `pd`.`date` >= " .. (time - (30 * 86400)) .. " ORDER BY `pd`.`date` DESC") if(result:getID() ~= -1) then repeat local content = {date = result:getDataInt("date")} if(content.date > times.today) then table.insert(contents.day, content) elseif(content.date > times.week) then table.insert(contents.week, content) else table.insert(contents.month, content) end until not result:next() result:free() end local size = { day = table.maxn(contents.day), week = table.maxn(contents.week), month = table.maxn(contents.month) } return size.day + size.week + size.month end function onLook(cid, thing, position, lookDistance) local string = 'You see yourself.' if isPlayer(thing.uid) and thing.uid ~= cid then if getPlayerPremiumDays(thing.uid) > 0 then doPlayerSetSpecialDescription(thing.uid,'[Frags: '..getPlayerFrags(thing.uid)..'][VIP]') else doPlayerSetSpecialDescription(thing.uid,'[Frags: '..getPlayerFrags(thing.uid)..'][FREE]') end elseif thing.uid == cid then if getPlayerPremiumDays(cid) > 0 then doPlayerSetSpecialDescription(cid,'[Frags: '..getPlayerFrags(cid)..'][VIP]') else doPlayerSetSpecialDescription(cid,'[Frags: '..getPlayerFrags(cid)..'][FREE]') end if getPlayerFlagValue(cid, PLAYERFLAG_SHOWGROUPINSTEADOFVOCATION) then string = string..' You are '.. getPlayerGroupName(cid) ..'.' elseif getPlayerVocation(cid) ~= 0 then string = string..' You are '.. getPlayerVocationName(cid) ..'.' else string = string..' You have no vocation.' end string = string..getPlayerSpecialDescription(cid)..'' if getPlayerNameByGUID(getPlayerPartner(cid), false, false) ~= nil then string = string..' You are '.. (getPlayerSex(cid) == 0 and 'wife' or 'husband') ..' of '.. getPlayerNameByGUID(getPlayerPartner(cid)) ..'.' end if getPlayerGuildId(cid) > 0 then string = string..' You are ' .. (getPlayerGuildRank(cid) == '' and 'a member' or getPlayerGuildRank(cid)) ..' of the '.. getPlayerGuildName(cid) string = getPlayerGuildNick(cid) ~= '' and string..' ('.. getPlayerGuildNick(cid) ..').' or string..'.' end if getPlayerFlagValue(cid, PLAYERCUSTOMFLAG_CANSEECREATUREDETAILS) then string = string..'\nHealth: ['.. getCreatureHealth(cid) ..' / '.. getCreatureMaxHealth(cid) ..'], Mana: ['.. getCreatureMana(cid) ..' / '.. getCreatureMaxMana(cid) ..'].' string = string..'\nIP: '.. doConvertIntegerToIp(getPlayerIp(cid)) ..'.' end if getPlayerFlagValue(cid, PLAYERCUSTOMFLAG_CANSEEPOSITION) then string = string..'\nPosition: [X:'.. position.x..'] [Y:'.. position.y..'] [Z:'.. position.z..'].' end doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, string) return false end return true end  
×
×
  • Criar Novo...

Informação Importante

Confirmação de Termo