Jump to content

Galerias

Monte sua galeria e mostre à comunidade seu talento.


Recomendações

Sobre Autoria

  • Poste aqui apenas conteúdos que você desenvolveu ou está desenvolvendo;
  • Não discuta sobre ripping nos tópicos desta seção, reporte o mesmo para que a equipe resolva.

 

Sobre Segurança

  • Não entre em links suspeitos, reporte o post para que a equipe avalie.

2959 topics in this forum

    • 72 replies
    • 13.6k views
  1. Interface Uis

    • 5 replies
    • 1k views
    • 9 replies
    • 3.7k views
  2. Systema de Daily Gift

    • 0 replies
    • 338 views
    • 1 reply
    • 637 views
    • 6 replies
    • 2.1k views
  3. doaçao de umas sprites

      1 reaction

    • 3 replies
    • 3.3k views
  4. PAREDES FREE

    • 0 replies
    • 656 views
  5. POKEMON A AVENTURA

    • 0 replies
    • 449 views
    • 0 replies
    • 832 views
    • 0 replies
    • 603 views
  6. pensando em algo

      1 reaction

    • 1 reply
    • 2.3k views
  7. idle

    • 0 replies
    • 1.2k views
  8. cdz

    • 0 replies
    • 2k views
    • 0 replies
    • 3k views
  9. minha primeira sprite

      3 reactions

    • 5 replies
    • 15.4k views
    • 5 replies
    • 3.7k views
  10. Galeria - Benny 1 2 3

      1 reaction

    • 36 replies
    • 7.8k views
    • 31 replies
    • 7.4k views
  11. Shop [Grand Piece]

    • 11 replies
    • 3.3k views
  12. Voltando

    • 1 reply
    • 2.1k views
  13. law smudge

      1 reaction

    • 1 reply
    • 2.1k views
  14. 「DRAW」Girl

    • 4 replies
    • 1.3k views
    • 6 replies
    • 1.3k views
  15. Mc brinquedo

    • 4 replies
    • 2.9k 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...