Ir para conteúdo

MaXwEllDeN

Héroi
  • Registro em

  • Última visita

Tudo que MaXwEllDeN postou

  1. MaXwEllDeN postou uma resposta no tópico em Playground (Off-topic)
    Só "saio de férias" dia 12 de Janeiro.
  2. MaXwEllDeN postou uma resposta no tópico em Playground (Off-topic)
    2012 pra mim só termina em 2013
  3. MaXwEllDeN postou uma resposta no tópico em Playground (Off-topic)
    Vamos parar de ofender né, aqui é playground mas continua sendo o TK. @Tópico jájá vou mudar meu nick pra Sky Diving.
  4. MaXwEllDeN postou uma resposta no tópico em Suporte & Pedidos
    Por-favor, poderiam apresentar as provas? Não posso fazer nada sem elas.
  5. Muito obrigado pelas dicas galera, me baseando no cabo da espada do Vittu tentei criar essa outra sprite:
  6. MaXwEllDeN postou uma resposta no tópico em Playground (Off-topic)
    ASdakodkasd Tenso né \:
  7. MaXwEllDeN postou uma resposta no tópico em Playground (Off-topic)
    aehuaheuee
  8. MaXwEllDeN postou uma resposta no tópico em Suporte Tibia OTServer
    Área errada amigo, preste mais atenção onde posta. Movido para Suporte OTServ.
  9. MaXwEllDeN postou uma resposta no tópico em Playground (Off-topic)
  10. MaXwEllDeN postou uma resposta no tópico em Playground (Off-topic)
    Ok mãe.
  11. Bem que eu suspeitei
  12. MaXwEllDeN postou uma resposta no tópico em Playground (Off-topic)
    Pegou exame? WTF?
  13. MaXwEllDeN postou uma resposta no tópico em Playground (Off-topic)
    Hm.. Sou de Alagoas, mas pretendo fazer Engenharia Mecatrônica aí em Pernambuco.
  14. MaXwEllDeN postou uma resposta no tópico em Playground (Off-topic)
    Bacana UFPE?
  15. MaXwEllDeN postou uma resposta no tópico em Playground (Off-topic)
    Ensino Médio Integrado com Curso Técnico. Instituto Federal(Antigo CEFET)
  16. MaXwEllDeN postou uma resposta no tópico em Playground (Off-topic)
    aheuaheuhauehuhauheua
  17. MaXwEllDeN postou uma resposta no tópico em Playground (Off-topic)
    Recebí hoje D: Ainda estamos no 3º Bimestre por causa da greve u.u
  18. MaXwEllDeN postou uma resposta no tópico em Playground (Off-topic)
    Vampira, esqueceu o [/mentira]
  19. MaXwEllDeN postou uma resposta no tópico em Playground (Off-topic)
    VERDADE, esquecí que ainda tem a merda do Português, Português é a única que compete com Biologia aehuahe.
  20. Yes \õ/
  21. -- This script is part of Biohazard Event System -- Copyright (C) 2012 #####, Oneshot -- -- This program is free software: you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation, either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see . -- Main config. BIOHAZARD_DEFAULT_MAX_PLAYERS = 10 BIOHAZARD_IGNORE_GROUP_ID = 4 BIOHAZARD_ARENA_ENTER_POSITION = {x = 31931, y = 31799, z = 7} BIOHAZARD_ARENA_KICK_POSITION = {x = 32360, y = 31781, z = 7} BIOHAZARD_GLOBAL_STATUS = 67600 BIOHAZARD_GLOBAL_MAX_PLAYERS = 67601 BIOHAZARD_PLAYER_STATUS = 67600 BIOHAZARD_PLAYER_NEMESIS_HEALTH = 67601 BIOHAZARD_NEMESIS_MAX_HEALTH = 100000000 -- Main functions. function doSetBiohazardMaxPlayers(amount) doSetStorage(BIOHAZARD_GLOBAL_MAX_PLAYERS, amount) return true end function getBiohazardMaxPlayers() return getStorage(BIOHAZARD_GLOBAL_MAX_PLAYERS) end function getBiohazardPlayerStatus(cid) return getCreatureStorage(cid, BIOHAZARD_PLAYER_STATUS) end function doSetBiohazardPlayerStatus(cid, status) doCreatureSetStorage(cid, BIOHAZARD_PLAYER_STATUS, status) return true end function doBiohazardAddPlayer(cid) doTeleportThing(cid, BIOHAZARD_ARENA_ENTER_POSITION) if getPlayerGroupId(cid) < BIOHAZARD_IGNORE_GROUP_ID then doCreatureSetStorage(cid, BIOHAZARD_PLAYER_STATUS, 1) end return true end function doBiohazardKickPlayer(cid) doTeleportThing(cid, BIOHAZARD_ARENA_KICK_POSITION) doRemoveCondition(cid, CONDITION_OUTFIT) doCreatureSetStorage(cid, BIOHAZARD_PLAYER_STATUS, -1) return true end function getBiohazardEventPlayers() local ret = {} for _, cid in ipairs(getPlayersOnline()) do if cid and getCreatureStorage(cid, BIOHAZARD_PLAYER_STATUS) >= 1 then table.insert(ret, cid) end end return ret end function doBiohazardChooseNemesis() local players = getBiohazardEventPlayers() local cid = players[math.random(1, #players)] doSetCreatureOutfit(cid, {lookType = 311}, -1) doCreatureSetStorage(cid, BIOHAZARD_PLAYER_NEMESIS_HEALTH, BIOHAZARD_NEMESIS_MAX_HEALTH) doCreatureSetStorage(cid, BIOHAZARD_PLAYER_STATUS, 2) return true end function isNemesis(cid) return getCreatureStorage(cid, BIOHAZARD_PLAYER_STATUS) == 2 end function getBiohazardNemesis() local ret for _, cid in ipairs(getBiohazardEventPlayers()) do if getCreatureStorage(cid, BIOHAZARD_PLAYER_STATUS) == 2 then ret = cid break end end return ret end setGlobalStorageValue(BIOHAZARD_GLOBAL_STATUS, -1) setGlobalStorageValue(BIOHAZARD_GLOBAL_MAX_PLAYERS, -1) Testa aí!
  22. MaXwEllDeN postou uma resposta no tópico em Playground (Off-topic)
    Mas não se encaixa no meu conceito de exatas, exatas são coisas legais, que te estimulam a fazer algo, Biologia não .-.
  23. MaXwEllDeN postou uma resposta no tópico em Playground (Off-topic)
    Naaah, adaskodaskodasokdo.

Informação Importante

Confirmação de Termo