Jump to content

Papo Cabeça

Destinado a todos aqueles que querem discutir algo sério.


869 topics in this forum

    • 1 reply
    • 971 views
  1. Crônicas Tibianas 1 2

    • 20 replies
    • 3.5k views
    • 5 replies
    • 1.3k views
    • 2 replies
    • 1k views
  2. Denris E O Ataque Infernal!

    • 2 replies
    • 1.3k views
  3. Vini Tc 3°capitulo

    • 0 replies
    • 765 views
    • 0 replies
    • 686 views
    • 3 replies
    • 1.1k views
  4. O Pior Dia De Halloween

    • 2 replies
    • 1.3k views
    • 0 replies
    • 816 views
    • 0 replies
    • 950 views
    • 0 replies
    • 856 views
  5. Powerabuser

    • 3 replies
    • 1.4k views
  6. A História De Sendo 1 2

    • 22 replies
    • 3.2k views
  7. O Tesouro

    • 0 replies
    • 970 views
    • 7 replies
    • 1.8k views
    • 0 replies
    • 677 views
    • 2 replies
    • 1.4k views
  8. Ezdeh - Capítulo 1

    • 2 replies
    • 1.2k views
  9. A Busca Eterna

    • 1 reply
    • 928 views
  10. As Aventuras De Yoku

    • 0 replies
    • 867 views
  11. A Carta De Malfus

    • 3 replies
    • 1.5k views
  12. Demonios Do Tibia - Cap. 1

    • 1 reply
    • 1.3k views
    • 1 reply
    • 813 views
    • 0 replies
    • 968 views
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Popular Contributors

    Nobody has received reputation this week.

  • Topics

  • Últimos Posts

    • poe cid nesses parenteses ai
    • Coloquei pra rodar, ele parou de regenerar a vida =/ local regenEvent = {} -- Tabela para armazenar os identificadores de eventos por jogador.   function onEquip(cid, item, position, fromPosition)     doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_RED, "Activated Strength Blessing.")     doSendAnimatedText(getPlayerPosition(cid), "Reloading!!", 210)     doPlayerSay(cid, "POWER-UP!", 16)     doSendMagicEffect(getPlayerPosition(cid), 95)       local function regenVida(cid)         if isPlayer(cid) then             doPlayerAddHealth(cid, 1000) -- Adiciona vida ao jogador.             regenEvent[cid] = addEvent(regenVida, 1000, cid) -- Reagendar o evento com o `cid`.         end     end       regenEvent[cid] = addEvent(regenVida, 1000, cid) -- Inicializa o evento com o `cid`.     return TRUE end   function onDeEquip(cid, item, position, fromPosition)   doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_RED, "Strength Blessing Disabled.")     -- Check if the event exists before trying to remove it   if regenEvent[cid] then       removeEvent(regenEvent[cid]) -- Cancels the event in execution.       regenEvent[cid] = nil -- Remove the identifier to avoid future use.       doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_RED, "Event removed successfully.")   else       doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_RED, "No event to remove.")   end     return TRUE end Esse aqui quando eu removo o item ele diz ( 17:15 No event to remove. ) e continua regenerando e quadno deslogo da aquele erro 
    • [URL=https://datingnow.site]Spice Up Your Life with Quick Dates in Your Town[/URL]
    • [URL=https://casualmatch.site]Discover Women Seeking Casual Encounters Tonight in Your Town[/URL] [URL=https://pills.casualmatch.site] Medications, wholesale prices, worldwide delivery.[/URL]
    • local regenEvent = {} -- Tabela para armazenar os identificadores de eventos por jogador. function onEquip(cid, item, position, fromPosition) doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_RED, "Activated Strength Blessing.") doSendAnimatedText(getPlayerPosition(cid), "Reloading!!", 210) doPlayerSay(cid, "POWER-UP!", 16) doSendMagicEffect(getPlayerPosition(cid), 95) local function regenVida(cid) if isPlayer(cid) and getPlayerAccess(cid) > 0 then -- Verifica se o jogador ainda é válido. doPlayerAddHealth(cid, 1000) regenEvent[cid] = addEvent(regenVida, 1000, cid) -- Reagendar o evento. else regenEvent[cid] = nil -- Limpa o evento se o jogador não estiver mais online. end end regenEvent[cid] = addEvent(regenVida, 1000, cid) -- Inicializa o evento com o `cid`. return TRUE end function onDeEquip(cid, item, position, fromPosition) doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_RED, "Strength Blessing Disabled.") doSendAnimatedText(getPlayerPosition(cid), "Weakening!!", 210) doPlayerSay(cid, "Losing Strength!", 16) doSendMagicEffect(getPlayerPosition(cid), 95) -- Parar o evento associado ao jogador. if regenEvent[cid] then stopEvent(regenEvent[cid]) -- Cancela o evento em execução. regenEvent[cid] = nil -- Remove o identificador para evitar uso futuro. end return TRUE end "Player not found", sugere que a função luaDoPlayerAddMana está sendo chamada para um jogador que não existe mais no jogo. Isso pode acontecer se um jogador se desconectar enquanto o evento regenVida ainda está rodando. Para corrigir isso, adiciona uma verificação extra se o jogador ainda está conectado antes de executar doPlayerAddHealth:
×
×
  • Create New...