Ir para conteúdo

kttallan

Infante
  • Total de itens

    1574
  • Registro em

  • Última visita

  • Dias Ganhos

    16

Tudo que kttallan postou

  1. Ola Gente Agora eu Venho Postar A Minha cituação O Seguinte Eu Tenho meu Vps Ai Botei Ele No Arquivo Otmod o Ip Do Meu Vps como Ai Em Baixo. Module name: addon_server description: Server protocol extended author: Darckx13 website: http://xtibia.com autoload: true autoload-priority: 1000 dependencies: -client_entergame @onLoad: | EnterGame.setDefaultServer("Ip Do Vps", 7171, 854) Como Podes Ver Ali Em Cima Qualquer Pessoa Pode Descobrir O Ip Da Minha Vps E Tentarar Hackear Ou Tentar invadir Meu Vps tem como Eu Esconder Esse Arquivo Em Outro Complexo Que So eu possa Abrir. Rep +
  2. Serio man não Faiz mais Quest não Ta Mt Paia As Quest..
  3. add skype preciso de mapper skyper : lord.sorte
  4. sistema De M1 a M14 E Facil Mesmo Assim achei muito legal seu servve.
  5. kttallan

    PokeSkmt

    Pokemon Dash Advenced 1.8 Editado por Stylo Maldoso ta Na Cara Não ? "-" -- Servidor -- Serio Veio Muito Legal Gostei Mesmo Muita Divercidade gostei.
  6. kttallan

    POKEMON LOTHUS

    Pode Dar Muito Foturo o serve o jogo precisa de mt coisa pra ser bom ? R = Não ja vi varios serves pior = A Do Outhrow Sem Ofenças Pois O Serve Ja Ta Pronto Ai Qualquer Pessoa pode Ter = acho que esse dai ta em desenvolvimento so isso plz
  7. Sim Manin E Quando Ele Ta Fraco Creio Que Duvida Senada.
  8. Ou simples Usa Otclient E Melhor ^^ Mesmo ASsim Topico Reportado Para que Movam.
  9. Amigo Né Melhor Vocé Usar Outro Não Caso Contrario Pergunta A Tal Player Que postou Esse Serve Ele Deverar SAber.
  10. Olha Amigo Eu Não Sei Muito De Wodbone mais posta o scripter da talktions.
  11. Amigo Esse Ataque e Geralmente Em Propia Defesa Quando Vocé Usa Ele Ele Mata Todos Pokes Ao Redor Dele Pelo Que Eu Saiba Vocé Tentar Conserta Ele Acho q Pode Dar Mt Bug
  12. Posta O Seu Startes.lua E Tabem O Erro No Scripter Que Crei Que Deu = )
  13. kkk Credito Vocé Deve Estar Honrado de Estar Com Seu Nome Nessa Foto ^^
  14. Amigo Organiza Esse Topico Letras Peque Nas Poste Fotos e Mais Coisas Ta muito Desorganizado.
  15. Tabem Concordo A Cabeça Do Kratos Parece Uma Melancia Redonda Cheia de Suco Mais Mesmo Assim Ficou + ou - kk
  16. Rep - Por Letra Grande e Azul. Dificulta Muito Pra Ler '-'
  17. kttallan

    Charmander

    Ná Comparação De Sprite Essa Ficou Bonita. Rosa E a Antiga Creditos : RaphaelPDC
  18. Mais Quando Sair De Fase Test vocé Vai Resetar Pois Capturei Um Tangela E Tou Doidinho kkk'k
  19. Pode Considerar So Dei Uma Dica. Topico Reportado para que movam
  20. Poste Imagen Do Seu Servidor Sistemas E Mais Coisas pq Assim Nen Eu Entraria... So Dica !
  21. !!! Duvida Stylo Acho Legal Seu Ot É D + So Que Por Que Via Hamachi Vai Ser Hosteado ?
  22. Sou O Primeiro A TEstar : )
  23. local shinys = { "Venusaur", "Charizard", "Blastoise", "Butterfree", "Beedrill", "Pidgeot", "Rattata", "Raticate", "Raichu", "Zubat", "Golbat", "Paras", "Parasect", "Venonat", "Venomoth", "Growlithe", "Arcanine", "Abra", "Alakazam", "Tentacool", "Tentacruel", "Farfetch'd", "Grimer", "Muk", "Gengar", "Onix", "Krabby", "Kingler", "Voltorb", "Electrode", "Cubone", "Marowak", "Hitmonlee", "Hitmonchan", "Tangela", "Horsea", "Seadra", "Scyther", "Jynx", "Electabuzz", "Pinsir", "Magikarp", "Gyarados", "Snorlax", "Dragonair", "Dratini"} local raros = {"Dragonite"} --alterado v1.5 local function ShinyName(cid) if isCreature(cid) then if string.find(tostring(getCreatureName(cid)), "Shiny") then local newName = tostring(getCreatureName(cid)):match("Shiny (.*)") doCreatureSetNick(cid, newName) if isMonster(cid) then doSetCreatureDropLoot(cid, false) end end end end local function doSetRandomGender(cid) if not isCreature(cid) then return true end if isSummon(cid) then return true end local gender = 0 local name = getCreatureName(cid) if not newpokedex[name] then return true end local rate = newpokedex[name].gender if rate == 0 then gender = 3 elseif rate == 1000 then gender = 4 elseif rate == -1 then gender = 0 elseif math.random(1, 1000) <= rate then gender = 4 else gender = 3 end doCreatureSetSkullType(cid, gender) end local function doShiny(cid) if isCreature(cid) then if isSummon(cid) then return true end if getPlayerStorageValue(cid, 74469) >= 1 then return true end if getPlayerStorageValue(cid, 22546) >= 1 then return true end --alterado v1.7 -golden- if isNpcSummon(cid) then return true end if isInArray(shinys, getCreatureName(cid)) then transform = math.random(100, 100) --100% chance elseif isInArray(raros, getCreatureName(cid)) then transform = math.random(100, 100) --100% chance else return true end if transform == 10 then doSendMagicEffect(getThingPos(cid), 18) local shi = doCreateMonster("Shiny ".. getCreatureName(cid) .."", getThingPos(cid)) setPlayerStorageValue(shi, 74469, 1) setPlayerStorageValue(cid, 74469, 1) doRemoveCreature(cid) else setPlayerStorageValue(cid, 74469, 1) end else return true end end function onSpawn(cid) registerCreatureEvent(cid, "Experience") registerCreatureEvent(cid, "GeneralConfiguration") registerCreatureEvent(cid, "DirectionSystem") registerCreatureEvent(cid, "CastSystem") if isSummon(cid) then registerCreatureEvent(cid, "SummonDeath") return true end addEvent(doSetRandomGender, 5, cid) addEvent(doShiny, 10, cid) addEvent(ShinyName, 15, cid) addEvent(adjustWildPoke, 5, cid) return true end transform = math.random(100, 100) --100% chance
  • Quem Está Navegando   0 membros estão online

    • Nenhum usuário registrado visualizando esta página.
×
×
  • Criar Novo...