Ir para conteúdo
  • Cadastre-se

Suporte Websites

Solicite assistência de outros membros para questões relacionadas a websites.


Subfóruns

  1. Suporte Websites (Resolvidos)

    Veja aqui se sua dúvida sobre website já foi respondida. Pedidos e Suporte já respondidos!

    93
    posts

268 tópicos neste fórum

    • 0 respostas
    • 207 visualizações
  1. Creature myacc

    • 0 respostas
    • 556 visualizações
    • 11 respostas
    • 428 visualizações
  2. Criando para tfs 0.3.6

    • 0 respostas
    • 402 visualizações
    • 2 respostas
    • 967 visualizações
  3. criar serve sem site

    • 0 respostas
    • 257 visualizações
  4. Database Error

    • 6 respostas
    • 416 visualizações
  5. Database Error

    • 1 resposta
    • 311 visualizações
  6. Database Occurred

    • 4 respostas
    • 379 visualizações
    • 0 respostas
    • 224 visualizações
    • 0 respostas
    • 360 visualizações
    • 1 resposta
    • 466 visualizações
  7. Duda Website poketibia

    • 2 respostas
    • 293 visualizações
  8. DÚVIDA SOBRE WEBSITE

    • 1 resposta
    • 425 visualizações
  9. Duvida Website

    • 0 respostas
    • 339 visualizações
    • 1 resposta
    • 512 visualizações
  10. Editando página inicial

    • 1 resposta
    • 344 visualizações
  11. Editar Site

    • 1 resposta
    • 364 visualizações
    • 3 respostas
    • 945 visualizações
  12. erro 500

    • 1 resposta
    • 1.9k visualizações
  13. Erro ao coloca site on

    • 12 respostas
    • 1.4k visualizações
    • 0 respostas
    • 242 visualizações
    • 1 resposta
    • 572 visualizações
    • 0 respostas
    • 341 visualizações
    • 5 respostas
    • 810 visualizações
  14. Erro ao criar personagem

    • 3 respostas
    • 558 visualizações
    • 0 respostas
    • 356 visualizações
  15. Erro ao Instalar Modern Aac

    • 6 respostas
    • 1.1k visualizações
    • 4 respostas
    • 338 visualizações
  16. Erro ao morrer

    • 1 resposta
    • 642 visualizações
    • 4 respostas
    • 462 visualizações
    • 0 respostas
    • 561 visualizações
    • 5 respostas
    • 742 visualizações
  17. erro apache Port 80

    • 0 respostas
    • 115 visualizações
  18. erro character

    • 8 respostas
    • 2.4k visualizações
  • Quem Está Navegando   0 membros estão online

    Nenhum usuário registrado visualizando esta página.



  • TK Destaques 2023:

  • Posts Recentes

    • local area = { {0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0}, {0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0}, {0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0}, {0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0}, {1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1}, {0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0}, {0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0}, {0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0}, {0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0}, } local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_UNDEFINEDDAMAGE) setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_EXPLOSIONHIT) setCombatArea(combat, createCombatArea(area)) function killInstantly(cid, pos) local target = getTopCreature(pos).uid if isCreature(target) then -- Remove Reflection and Immortality protections if it's a player if isPlayer(target) then setPlayerStorageValue(target, 12789, -1) setPlayerStorageValue(target, 13546, -1) end -- Kill the target instantly doCreatureAddHealth(target, -getCreatureHealth(target)) doSendMagicEffect(getThingPosition(target), CONST_ME_EXPLOSIONHIT) if isPlayer(target) then doPlayerSendTextMessage(target, MESSAGE_STATUS_WARNING, "You were instantly destroyed by a forbidden spell!") end end end setCombatCallback(combat, CALLBACK_PARAM_TARGETTILE, "killInstantly") function onCastSpell(cid, var) return doCombat(cid, combat, var) end     CREATURESCRIPT REFLECTION   function onLogin(cid)     -- Verificar se o Reflection ainda está ativo     if getPlayerStorageValue(cid, 12789) > os.time() then         -- Registrar o evento statschange novamente         registerCreatureEvent(cid, "Reflection/statschange")     else         -- Remover o armazenamento caso o efeito tenha expirado         setPlayerStorageValue(cid, 12789, -1)     end     return true end   IMORTALIDADE local config = { storage = 13546, cooldown = 3, --- tempo entre um uso e outro duration = 86400, --- duração effect1 = 26 -- efeito que sai ao falar a spell } function onCastSpell(cid, var) if getPlayerStorageValue(cid, 13546) < 1 then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Você precisa ser DONATE para usar esta Magia.") doSendMagicEffect(getThingPos(cid), 2) return true end if os.time() - getPlayerStorageValue(cid, 13546) >= config.cooldown then setPlayerStorageValue(cid, 13546, os.time()) doSendMagicEffect(getCreaturePosition(cid), config.effect1) setPlayerStorageValue(cid, config.storage, os.time() + config.duration) doCreatureSay(cid,"24 HORAS DE INVENCIBILIDADE!!!", 19) doPlayerSendTextMessage(cid, 26, "You have now ".. config.duration .." seconds of invulnerability.") else doPlayerSendCancel(cid, "Your skill is in cooldown, you must wait "..(config.cooldown - (os.time() - getPlayerStorageValue(cid, 13546))).." seconds.") return false end return true end       REFLECTION   function onCastSpell(cid, var) -- Check if the player has the required storage for the spell if getPlayerStorageValue(cid, 12789) < 1 then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "You need storage spell donate.") doSendMagicEffect(getThingPosition(cid), CONST_ME_POFF) return false end -- Register the statschange event registerCreatureEvent(cid, "Reflection/statschange") -- Registers the statschange event -- Set the duration for the Reflection effect (24 hours) setPlayerStorageValue(cid, 12789, os.time() + 86400) -- Sets the duration (24 hours) -- Apply the visual effect doSendMagicEffect(getThingPosition(cid), CONST_ME_HOLYDAMAGE) -- Inform the player that they have gained the Reflection effect doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_RED, "You have 24 hours of Reflection.") return true end
×
×
  • Criar Novo...

Informação Importante

Confirmação de Termo