Ir para conteúdo

GOD Falumir

Membro
  • Registro em

  • Última visita

Tudo que GOD Falumir postou

  1. Vai cair em cima da parede!
  2. GOD Falumir postou uma resposta no tópico em Playground (Off-topic)
    Passa a jogar mais tibia, entra em um server de war e desconta a raiva la! kkkkkkkkkk e da proxima vez em vez de esperar ataca pohha!!!!!!!!!! ficar parado esperando só perde as mulher, cria atitude!
  3. Verifique a senha que colocou no seu CONFIG.LUA com a senha que registrou no PHPMYADMIN! o problema está nessa area.
  4. Pra resolver é simples, basta ir até a sua pasta Talkactions, procurar por war.lua, abra este arquivo, apague tudo lá e troque por este! AJUDEI? +REP por favor. function onSay(cid, words, param, channel) local guild = getPlayerGuildId(cid) if(not guild or getPlayerGuildLevel(cid) < GUILDLEVEL_LEADER) then doPlayerSendChannelMessage(cid, "", "You cannot execute this talkaction.", TALKTYPE_CHANNEL_W, 0) return true end local t = string.explode(param, ",") if(not t[2]) then doPlayerSendChannelMessage(cid, "", "Not enough param(s).", TALKTYPE_CHANNEL_W, 0) return true end local enemy = getGuildId(t[2]) if(not enemy) then doPlayerSendChannelMessage(cid, "", "Guild \"" .. t[2] .. "\" does not exists.", TALKTYPE_CHANNEL_W, 0) return true end if(enemy == guild) then doPlayerSendChannelMessage(cid, "", "You cannot perform war action on your own guild.", TALKTYPE_CHANNEL_W, 0) return true end local enemyName, tmp = "", db.getResult("SELECT `name` FROM `guilds` WHERE `id` = " .. enemy) if(tmp:getID() ~= -1) then enemyName = tmp:getDataString("name") tmp:free() end if(isInArray({"accept", "reject", "cancel"}, t[1])) then local query = "`guild_id` = " .. enemy .. " AND `enemy_id` = " .. guild if(t[1] == "cancel") then query = "`guild_id` = " .. guild .. " AND `enemy_id` = " .. enemy end tmp = db.getResult("SELECT `id`, `begin`, `end`, `payment` FROM `guild_wars` WHERE " .. query .. " AND `status` = 0") if(tmp:getID() == -1) then doPlayerSendChannelMessage(cid, "", "Currently there's no pending invitation for a war with " .. enemyName .. ".", TALKTYPE_CHANNEL_W, 0) return true end if(t[1] == "accept") then local _tmp = db.getResult("SELECT `balance` FROM `guilds` WHERE `id` = " .. guild) local state = _tmp:getID() < 0 or _tmp:getDataInt("balance") < tmp:getDataInt("payment") _tmp:free() if(state) then doPlayerSendChannelMessage(cid, "", "Your guild balance is too low to accept this invitation.", TALKTYPE_CHANNEL_W, 0) return true end db.query("UPDATE `guilds` SET `balance` = `balance` - " .. tmp:getDataInt("payment") .. " WHERE `id` = " .. guild) end query = "UPDATE `guild_wars` SET " local msg = "accepted " .. enemyName .. " invitation to war." if(t[1] == "reject") then query = query .. "`end` = " .. os.time() .. ", `status` = 2" msg = "rejected " .. enemyName .. " invitation to war." elseif(t[1] == "cancel") then query = query .. "`end` = " .. os.time() .. ", `status` = 3" msg = "canceled invitation to a war with " .. enemyName .. "." else query = query .. "`begin` = " .. os.time() .. ", `end` = " .. (tmp:getDataInt("end") > 0 and (os.time() + ((tmp:getDataInt("begin") - tmp:getDataInt("end")) / 86400)) or 0) .. ", `status` = 1" end query = query .. " WHERE `id` = " .. tmp:getDataInt("id") if(t[1] == "accept") then doGuildAddEnemy(guild, enemy, tmp:getDataInt("id"), WAR_GUILD) doGuildAddEnemy(enemy, guild, tmp:getDataInt("id"), WAR_ENEMY) end tmp:free() db.query(query) doBroadcastMessage(getPlayerGuildName(cid) .. " has " .. msg, MESSAGE_EVENT_ADVANCE) return true end if(t[1] == "invite") then local str = "" tmp = db.getResult("SELECT `guild_id`, `status` FROM `guild_wars` WHERE `guild_id` IN (" .. guild .. "," .. enemy .. ") AND `enemy_id` IN (" .. enemy .. "," .. guild .. ") AND `status` IN (0, 1)") if(tmp:getID() ~= -1) then if(tmp:getDataInt("status") == 0) then if(tmp:getDataInt("guild_id") == guild) then str = "You have already invited " .. enemyName .. " to war." else str = enemyName .. " have already invited you to war." end else str = "You are already on a war with " .. enemyName .. "." end tmp:free() end if(str ~= "") then doPlayerSendChannelMessage(cid, "", str, TALKTYPE_CHANNEL_W, 0) return true end local frags = tonumber(t[3]) if(frags ~= nil) then frags = math.max(10, math.min(1000, frags)) else frags = 100 end local payment = tonumber(t[4]) if(payment ~= nil) then payment = math.max(100000, math.min(1000000000, payment)) tmp = db.getResult("SELECT `balance` FROM `guilds` WHERE `id` = " .. guild) local state = tmp:getID() < 0 or tmp:getDataInt("balance") < payment tmp:free() if(state) then doPlayerSendChannelMessage(cid, "", "Your guild balance is too low for such payment.", TALKTYPE_CHANNEL_W, 0) return true end db.query("UPDATE `guilds` SET `balance` = `balance` - " .. payment .. " WHERE `id` = " .. guild) else payment = 0 end local begining, ending = os.time(), tonumber(t[5]) if(ending ~= nil and ending ~= 0) then ending = begining + (ending * 86400) else ending = 0 end db.query("INSERT INTO `guild_wars` (`guild_id`, `enemy_id`, `begin`, `end`, `frags`, `payment`) VALUES (" .. guild .. ", " .. enemy .. ", " .. begining .. ", " .. ending .. ", " .. frags .. ", " .. payment .. ");") doBroadcastMessage(getPlayerGuildName(cid) .. " has invited " .. enemyName .. " to war till " .. frags .. " frags.", MESSAGE_EVENT_ADVANCE) return true end if(not isInArray({"end", "finish"}, t[1])) then return false end local status = (t[1] == "end" and 1 or 4) tmp = db.getResult("SELECT `id` FROM `guild_wars` WHERE `guild_id` = " .. guild .. " AND `enemy_id` = " .. enemy .. " AND `status` = " .. status) if(tmp:getID() ~= -1) then local query = "UPDATE `guild_wars` SET `end` = " .. os.time() .. ", `status` = 5 WHERE `id` = " .. tmp:getDataInt("id") tmp:free() doGuildRemoveEnemy(guild, enemy) doGuildRemoveEnemy(enemy, guild) db.query(query) doBroadcastMessage(getPlayerGuildName(cid) .. " has " .. (status == 4 and "mend fences" or "ended up a war") .. " with " .. enemyName .. ".", MESSAGE_EVENT_ADVANCE) return true end if(status == 4) then doPlayerSendChannelMessage(cid, "", "Currently there's no pending war truce from " .. enemyName .. ".", TALKTYPE_CHANNEL_W, 0) return true end tmp = db.getResult("SELECT `id`, `end` FROM `guild_wars` WHERE `guild_id` = " .. enemy .. " AND `enemy_id` = " .. guild .. " AND `status` = 1") if(tmp:getID() ~= -1) then if(tmp:getDataInt("end") > 0) then tmp:free() doPlayerSendChannelMessage(cid, "", "You cannot request ending for war with " .. enemyName .. ".", TALKTYPE_CHANNEL_W, 0) return true end local query = "UPDATE `guild_wars` SET `status` = 4, `end` = " .. os.time() .. " WHERE `id` = " .. tmp:getDataInt("id") tmp:free() db.query(query) doBroadcastMessage(getPlayerGuildName(cid) .. " has signed an armstice declaration on a war with " .. enemyName .. ".", MESSAGE_EVENT_ADVANCE) return true end doPlayerSendChannelMessage(cid, "", "Currently there's no active war with " .. enemyName .. ".", TALKTYPE_CHANNEL_W, 0) return true end
  5. Funcionou direitinho mas estou tendo um problema, com esse sistema, eu não consigo manter o meu account manager, quando tento entrar na conta para acessar o account manager diz que não tem cast online, ate ai beleza, o problema é que não consigo acessar o account manager, teria alguma jeito de arrumar isso ou com esse sistema nao da pra ter o manager?
  6. Resolveu muito obrigado amigo, podem fechar o tópico e colocar como RESOLVIDO, me ajudou e agora com certeza retribuo com +REP, obrigado!
  7. Erro consulta SQL: ALTER TABLE `players` ADD `guild_id` INT( 11 ) NOT NULL DEFAULT '' Mensagens do MySQL : #1067 - Invalid default value for 'guild_id'
  8. Quando eu logo ou deslogo algum player da um erro, queria corrigir ele pra manter o servidor 100%, como resolver ? qual comando executar ? Meu servidor é 8.60 MYSQL 'Gesior" 'Xampp'.
  9. RESOLVIDO, podem fechar o tópico.
  10. Adicionei aqui e não é o que procuro, fora os problemas com magias etc ..
  11. Boa noite galera, estou necessitando colocar o sistema de Cast System em meu servidor, pelo que percebi a que encontrei é só pra Linux, quero uma pra Windows alguém pode me ajudar ? (obs: não quero compilar o servidor para linux) Esse que eu encontrei mas é pra linux: ESSE SISTEMA TA PERFEITO SO PRECISO DELE PRA WINDOWS http://www.tibiaking.com/forum/topic/27617-cast-system-tfs-04-86/ Encontrei essa também, mas é uma replica não curti: http://www.tibiaking.com/forum/topic/26602-sistema-cast-system-para-86/
  12. Queria saber porque depois de um tempo ele fecha sozinho '.'
  13. Então galera, necessito de um Cliente pro meu servidor e na versão 10.10 não consigo fazer por nada, o ip do meu server é TheSurvivals.no-ip.biz, se der que o nome é muito grande pode colocar MDHServer.no-ip.biz, pois estou com os 2 ips rodando no NO-IP, quem puder quebrar essa arvore pra mim agradeço muitoooooooo ! OBS: só trocar o IP pra mim, personalizar fundos/etc eu consigo.
  14. Nao esta disponivel a versao 10.10
  15. Fala galera, estou com um grande problema para criar um cliente próprio para meu servidor, aquele "LAAIROY CLIENT CREATOR" da erro na RSA e não vai por nada, procurei outras formas e também não consegui, se alguém puder me ajudar ficarei super grato, valeu galera !
  16. GOD Falumir postou uma resposta no tópico em Ferramentas OpenTibia
    O meu da erro no plugin 10.10, como corrigir ?
  17. Estou tendo um problema, compilo meu servidor "Global Full 9.8" corretamente mas na hora de abrir tenho um problema, surgiram 2 exes na pasta do server, aqui estão os problemas. root@Kiladores:/home/Kiladores# ./otserv :: OTServ Version 0.6.3_SVN :: ============================================================================ :: OTServ executed as root user, please login with a normal user. E esse .. root@Kiladores:/home/Kiladores# ./theforgottenserver -bash: ./theforgottenserver: cannot execute binary file ME AJUDEM POR FAVOR Ç.Ç
  18. É a minha situação pode ser engraçada, pago por uma coisa e n sei usar, o problema é que eu pensei que eu teria acesso a um computador tipo "teamviewer" mas ele é Linux e eu acesso ele pelo PUTTY, aquilo deve ter comandos pra usar eu não sei preciso por meu OT online me ajudem kkkkkkkkkkk, aluguei na www.serversoft.com.br !
  19. Fala galera meu nome é Daniel e eu sou dono do Kiladores OTServer, está uns 2 meses offline mas agora quero voltar com tudo pagando MEU PRIMEIRO DEDICADO, estou alugando um VPS na empresa LGV HOST, ai preciso de uma ajuda não sei qual tipo de windows/linux contratar , aqui está os dados que a empresa está me disponibilizando. O MEU SERVIDOR É UM GLOBAL FULL 9.8 COM SITE XAMPP. TIPO DE VPS QUE IREI ALUGAR: Cloud VPS EUA - Cloud VPS 04 Processador: Intel Power Xeon (2 cores) Memória: 2GB Ram Hard Disk: 100 GB Tráfego: Ilimitado IP: 1 Fixo Uplink: 1000 Mbps Full Duplex OS: Windows/Linux Painel de Reboot: Sim WINDOWS/LINUX Disponíveis: Windows Server 2003 Enterprise SP2 - 32bit (Português) Windows Server 2003 Enterprise SP2 - 64bit (Inglês) Windows XP Professional SP3 - 32bit (Português) Windows XP Professional SP2 - 64bit (Inglês) Linux CentOS 5.8 - 32bits Linux CentOS 5.8 - 64bit Linux Ubuntu 11.04 - 32bit Linux Ubuntu 11.04 - 64bit Linux Ubuntu 10.10 - 32bit Linux Ubuntu 10.10 - 64bit Linux Ubuntu 10.04 - 32bit Linux Ubuntu 10.04 - 64bit Linux Debian 6 - 32bit Linux Debian 6 - 64bit Windows Server 2008 R2 Enterprise 64-bit (Português)
  20. Baixei aqui nesse site mesmo o mapa da Gnomebase com as warzones, porem ele veio sem teleports, sem montros e sem npcs alguem pode me ajudar ?
  21. Entao preciso de Gnomebase Com Warzone 9.6 com a pasta dos monstros e dos npcs de lá, quem tiver por favor me passa ficarei super agradecido !
  22. GOD Falumir postou uma resposta no tópico em Suporte Tibia OTServer
    Muito obrigado pelos comentários, já que ele foi pago vou dar os pontos e aguardar a liberaçao do dinheiro para eu receber, tenham uma ótima noite !
  23. GOD Falumir postou uma resposta no tópico em Suporte Tibia OTServer
    Primeiramente boa tarde a todos, eu tenho um servidor faz bastante tempo porém fiz um site com donate e tudo certinho, fiz a minha conta do pagseguro e adicionei ao meu site Gesior, a minha dúvida é a seguinte .. Uma pessoa fez uma compra no site até ai ok, agora eu preciso saber se ele já pagou e queria saber como tenho certeza disso ?
  24. GOD Falumir postou uma resposta no tópico em Suporte Tibia OTServer
    Vai no config.lua e procure por sqlHost = "localhost" Mude o que está de vermelho para "127.0.0.1"
  25. Horrivel, nenhuma explicação e a script é do tamanho do universo e você nem pra adicionar em uma spoiler sei lá como escreve !

Informação Importante

Confirmação de Termo