Ir para conteúdo

macalo

Membro
  • Registro em

  • Última visita

Tudo que macalo postou

  1. eu tenho um sistema vip q é o (System VIP by account 1.0 Kydrai) so que ele manda os dias vip certo e tirar os dias vip certo so que o problema é q n sei configurar o site para ele manda a storage correta pro player q no caso seria a minha 13500. alguem pode ajuda pf ?
  2. O PAPAI ABSOLUTE EXPLICARÁ NAS IMAGENS ESSAS POSIÇÕES ESSE CARA É COMÉDIA KKKKKKK. VLW PELO EVENTO REPUTADO.
  3. macalo postou uma resposta no tópico em Suporte & Pedidos
    hm legal boa sorte
  4. macalo postou uma resposta no tópico em Suporte Tibia OTServer
    eu uso esse sistema aki http://www.tibiaking.com/forum/topic/34334-vip-system-by-account-10-by-kydrai/ e ele n funciona direito .
  5. macalo postou uma resposta no tópico em Suporte & Pedidos
    vai fica parecido com ragnarok com esse limite de level . e tibia sem magia estraga com o ot eu axo.
  6. macalo postou uma resposta no tópico em Suporte Tibia OTServer
    @ Emersonssss Rep + por ta ajudando .
  7. eu não intendi direito pra que serve isso. alguém pode explica melhor ?
  8. macalo postou uma resposta no tópico em Suporte Tibia OTServer
    upppppppp
  9. so não coloka vip no god.
  10. cara funciona até a parte de entra no evento mais quando começar pra mata não conta os frags so isso. vc sabe como muda todas a storages ? mano q porra é essa vc bagunçou tudo olha do jeito q vc coloco o tutorial . Em CreatureScripts/Scripts/ Crie um arquivo.lua chamado RushGlobalRecognition.lua e Adicione : --globalevents/globalevents.xml --<globalevent name="Recognition" interval="150000" event="script" value="RushGlobalRecognition.lua"/> function onThink(interval, lastExecution, thinkInterval) if(getGlobalStorageValue(t.a) == 1) then for _, pid in ipairs(getPlayersOnline()) do if getPlayerStorageValue(pid, t.f) == 1 then if(getPlayerStorageValue(pid, t.f_1) == 0) then doSendAnimatedText(getCreaturePosition(pid), "RED TEAM", TEXTCOLOR_RED) elseif(getPlayerStorageValue(pid, t.f_1) == 1) then doSendAnimatedText(getCreaturePosition(pid), "BLUE TEAM", TEXTCOLOR_LIGHTBLUE) end end end return true end return true end Em TalkActions/ Abra o TalkActions.xml e Adicione as Seguintes Tags: <talkaction words="!start" event="script" access="5" value="RushTalkOpen.lua"/> <talkaction words="!rush" event="script" value="RushTalkJoin.lua"/> Em TalkActions/Scripts/ Crie um arquivo.lua chamado RushTalkOpen e Adicione : --globalevents/globalevents.xml --<globalevent name="RushStart" time="15:53" event="script" value="RushGlobalOpen.lua"/> function onTime(interval, lastExecution) setGlobalStorageValue(t.g, 1) setGlobalStorageValue(t.u, 0) setGlobalStorageValue(t.l, 0) setGlobalStorageValue(t.a, 1) setGlobalStorageValue(t.c, 0) setGlobalStorageValue(t.wv, 0) doBroadcastMessage("Attention! Immediately register to Rush Event, event will start for ".. t.t .." minutes. All players can join to event typing this command: !rush", MESSAGE_STATUS_WARNING) addEvent(function() doBroadcastMessage("Rush event, started in 2 minutes. If you want to join, type this command: !rush", MESSAGE_STATUS_WARNING) end, (t.t - 2) * 1000 * 60) addEvent(function() doBroadcastMessage("Rush event, started in a minute. If you want to join, type this command: !rush", MESSAGE_STATUS_WARNING) end, (t.t - 1) * 1000 * 60) addEvent(start, t.t * 1000 * 60, cid) end function results() if(getGlobalStorageValue(t.a) == 1) then local red = getGlobalStorageValue(t.l) local blue = getGlobalStorageValue(t.u) doBroadcastMessage("Rush Events, results:\nRed Team scored: ".. red .." frags.\nBlue Team scored: ".. blue .." frags.\nMatch is under way to ".. t.v .." frags.", MESSAGE_STATUS_WARNING) addEvent(results, t.r * 1000 * 60) end end function start(cid) if(getGlobalStorageValue(t.a) == 1 and getGlobalStorageValue(t.c) >= t.mn) then doBroadcastMessage(t.q, MESSAGE_STATUS_WARNING) setGlobalStorageValue(t.wv, 1) addEvent(results, t.r * 1000 * 60) for _, pid in ipairs(getPlayersOnline()) do local myOutfit = getCreatureOutfit(pid) local red = {lookType = myOutfit.lookType, lookHead = 94, lookBody = 94, lookLegs = 94, lookFeet = 94, lookTypeEx = 0, lookAddons = myOutfit.lookAddons} local blue = {lookType = myOutfit.lookType, lookHead = 86, lookBody = 86, lookLegs = 86, lookFeet = 86, lookTypeEx = 0, lookAddons = myOutfit.lookAddons} if getPlayerStorageValue(pid, t.f) == 1 then doCreatureAddHealth(pid, getCreatureMaxHealth(pid)) doCreatureAddMana(pid, getCreatureMaxMana(pid)) if((getPlayerStorageValue(pid, t.g) % 2) == 1) then doCreatureChangeOutfit(pid, red) setPlayerStorageValue(pid, t.h, 0) doTeleportThing(pid, t.d_1) setPlayerStorageValue(pid, t.f, 1) setPlayerStorageValue(pid, t.f_1, 0) setPlayerStorageValue(pid, t.f_2, 1) doSendMagicEffect(getCreaturePosition(pid), 10) doPlayerSendTextMessage(pid, MESSAGE_EVENT_ADVANCE, "You are in RED TEAM!\nThis battle will continue up to ".. t.v .." frags!") else doCreatureChangeOutfit(pid, blue) setPlayerStorageValue(pid, t.h, 0) doTeleportThing(pid, t.d_2) setPlayerStorageValue(pid, t.f, 1) setPlayerStorageValue(pid, t.f_1, 1) setPlayerStorageValue(pid, t.f_2, 0) doSendMagicEffect(getCreaturePosition(pid), 10) doPlayerSendTextMessage(pid, MESSAGE_EVENT_ADVANCE, "You are in BLUE TEAM!\nThis battle will continue up to ".. t.v .." frags!") end end end elseif(getGlobalStorageValue(t.c) < t.mn) then doBroadcastMessage(t.x, MESSAGE_STATUS_WARNING) setGlobalStorageValue(t.a, 0) for _, pid in ipairs(getPlayersOnline()) do if getPlayerStorageValue(pid, t.f) == 1 then setPlayerStorageValue(pid, t.f, -1) doTeleportThing(pid, getTownTemplePosition(getPlayerTown(pid))) doSendMagicEffect(getCreaturePosition(pid), CONST_ME_TELEPORT) end end end end
  11. não tem erro no console , ele so nãoconta os frags dentro do eevento .
  12. mano tenta ajeita o bug q n conta as morte pros players ganhar.
  13. ele não da erro, o bug so não coooonta os frags do evento .
  14. ja testei 10 Vezes, o unico bug q ele não contra os frags .
  15. um bug é q ele não conta os frags .
  16. macalo postou uma resposta no tópico em ElfBot NG
    instale novamente com antivírus desligado e abra o elf com antivírus desligado depois de ta aberto pode liga antivírus mais ele vai excluir de novo o elf e baixe de novo com antivírus desligado
  17. é por que meu serve não tem essa função ai quero adicionar ela eu estou axano q é nas soucres mais não sei onde é , eu so mexo com mysql.
  18. tipo se fosse essa domodlib(lib)
  19. ai glr alguém pode me dizer como adicionar uma função no serve ?
  20. macalo postou uma resposta no tópico em Suporte Tibia OTServer
    tb to querendo isso .
  21. quando uma guild coquistar tal storage o nome da guild é colokado no site automaticamente . rep + pra quem conseguir.

Informação Importante

Confirmação de Termo