Ir para conteúdo

Ina Kion

Membro
  • Registro em

  • Última visita

  1. Marjer reagiu a uma resposta no tópico: item de skill :D
  2. JhonathanSouza reagiu a uma resposta no tópico: item de skill :D
  3. Ina Kion respondeu ao post em um tópico de Ina Kion em Outros Jogos
    É só ir aqui e vai aparecer assim. O convite só é aceito quando os dois adicionam o FC. Já viu como funciona friend safari de Pokemon X/Y?
  4. Anuudek reagiu a uma resposta no tópico: (Resolvido)Oque são sources?
  5. Ina Kion postou uma resposta no tópico em Outros Jogos
    Se alguém quiser trocar friend code, o meu é este: 3136 7614 9883 Avisa depois qual o FC pra eu adicionar também XD Só tenho dois jogos: Pokemon X (meu friend safari se não me engano é Wartortle, Panpour e Froadier); Bravely Default (ainda não testei nenhum recurso do jogo que envolva troca de FC).
  6. Só pra complementar, source é o código fonte do servidor, que faz a comunicação entre o client e os jogadores~
  7. Ina Kion respondeu ao post em um tópico de Sadness em Suporte Tibia OTServer
    Acredito que este tópico seja útil: http://www.tibiaking.com/forum/topic/19848-96-sources-para-compilar-tfs-96x/
  8. Existem vários tutoriais aqui e ainda tem a Escola de Mapping, onde você pode se candidatar a alguma aula :} Espero que ajude! >w<
  9. MaXwEllDeN reagiu a uma resposta no tópico: item de skill :D
  10. Ina Kion respondeu ao post em um tópico de Alienbear em Suporte Tibia OTServer
    function doPlayerAddMagicLevel(cid, amount) return doPlayerAddSpentMana(cid, getPlayerRequiredMana(cid, getPlayerMagLevel(cid, true) + amount) - getPlayerSpentMana(cid)) end local STORAGE = 20 function onUse(cid, item, fromPosition, itemEx, toPosition) if getPlayerStorageValue(cid, STORAGE)>= 1 then return true end local voc = getPlayerVocation(cid) if voc == 1 or voc == 2 or voc == 5 or voc == 6 or voc == 15 or voc == 16 then doPlayerAddMagicLevel(cid, 5) doPlayerSendTextMessage(cid, MESSAGE_EVENT_ADVANCE, "Você abriu um baú e ganhou 15 de skill em magic level, parabéns.") elseif voc == 3 or voc == 7 then doPlayerAddSkill(cid, SKILL_DISTANCE, 15) doPlayerSendTextMessage(cid, MESSAGE_EVENT_ADVANCE, "Você abriu um baú e ganhou 15 de skill em distance fighting, parabéns.") elseif voc == 4 or voc == 8 then local club = getPlayerSkillLevel(cid, 1) local sword = getPlayerSkillLevel(cid,2) local axe = getPlayerSkillLevel(cid, 3) local skill_add = "" if club > sword and club > axe then doPlayerAddSkill(cid, 1, 15) skill_add = "club" elseif axe > club and axe > sword then doPlayerAddSkill(cid, 2, 15) skill_add = "axe" else doPlayerAddSkill(cid, 3, 15) skill_add = "sword" end doPlayerSendTextMessage(cid, MESSAGE_EVENT_ADVANCE, "Você abriu um baú e ganhou 15 de skill em ".. skill_add .. " fighting, parabéns.") elseif voc == 13 or voc == 14 then doPlayerAddSkill(cid, 1, 15) doPlayerSendTextMessage(cid, MESSAGE_EVENT_ADVANCE, "Você abriu um baú e ganhou 15 de skill em club, parabéns.") end setPlayerStorageValue(cid, STORAGE, 1) return true end Não encontrei a função que adiciona magic level ao player, por isso pode ser que não funcione bem no seu servidor. Testa aí.
  11. Ina Kion reagiu a uma resposta no tópico: {Simple} Level Points
  12. Ina Kion reagiu a uma resposta no tópico: Werewolf System
  13. Aparece alguma mensagem do motivo para não transformar?
  14. Ina Kion reagiu a uma resposta no tópico: Como funcionam os Scripts?
  15. local STORAGE = 2000 -- StorageValue da Quest local config = { -- [Id vocação] = {nível, nova voc, looktype, a efeito} [700] = {1, 700, 550, 208}, -- NARUTO [701] = {1, 701, 555, 110}, -- SASUKE [702] = {1, 702, 553, 87}, -- Rock Lee [703] = {1, 703, 498, 5}, -- SAKURA [704] = {1, 704, 538, 205}, -- GAARA [705] = {1, 705, 551, 124}, -- NEJI [706] = {1, 706, 544, 209}, -- KIBA [707] = {1, 707, 556, 187}, -- Shikamaru [708] = {1, 708, 540, 124}, -- HINATA [709] = {1, 709, 558, 126}, -- TENTEN [710] = {1, 710, 541, 108}, -- ITACHI [711] = {1, 711, 545, 4}, -- BEE [712] = {1, 712, 542, 10}, -- KAKASHI [714] = {1, 714, 559, 30}, -- TOBI [715] = {1, 715, 548, 242}, -- MINATO [716] = {1, 716, 546, 34}, -- Kisame [718] = {1, 718, 539, 67}, -- HIDAN [719] = {1, 719, 465, 67}, -- Kakuzu [720] = {1, 720, 547, 30}, -- Mádara [721] = {1, 721, 561, 110}, -- Yamato [722] = {1, 722, 552, 30}, -- Orochimaru [723] = {1, 723, 570, 122}, -- DEIDARA [216] = {1, 216, 557, 3}, -- Temari [770] = {1, 770, 572, 3}, -- Raikage [806] = {1, 806, 554, 189}, -- EFS } local from, to = {x = 1001, y = 705, z = 7}, {x = 1031, y = 737, z = 7} -- Comeco e último fazer mapa local from2, to2 = {x = 1011, y = 705, z = 6}, {x = 1031, y = 738, z = 6} -- Comeco e último fazer mapa local from3, to3 = {x = 1012, y = 706, z = 5}, {x = 1032, y = 739, z = 5} -- Comeco e último fazer mapa local from4, to4 = {x = 985, y = 598, z = 7}, {x = 1044, y = 652, z = 7} -- Comeco e último fazer mapa local from5, to5 = {x = 986, y = 615, z = 6}, {x = 1039, y = 647, z = 7} -- Comeco e último fazer mapa local from6, to6 = {x = 990, y = 616, z = 5}, {x = 1040, y = 647, z = 5} -- Comeco e último fazer mapa function onSay (cid, word, param, channel) if getPlayerStorageValue(cid, STORAGE) < 1 then return true end if isInRange(getCreaturePosition(cid), from, to) or isInRange(getCreaturePosition(cid), from2, to2) or isInRange(getCreaturePosition (cid), from3, to3) or isInRange (getCreaturePosition(cid), from4, to4) or isInRange (getCreaturePosition(cid), from5, to5) or isInRange(getCreaturePosition (cid), from6, to6) then doPlayerSendCancel (cid, "Você PODE Localidade: Não se Transformar!") return true end doCreatureSay(cid, "Akatsuki") local voc = config[getPlayerVocation(cid)] if voc then if getPlayerLevel(cid) >= voc[1] then doPlayerSetVocation (cid, voc [2]) doPlayerSendTextMessage (cid, MESSAGE_STATUS_WARNING, "Você Transformou!") local outfit = {lookType = voc [3]} doCreatureChangeOutfit (cid, outfit) doSendMagicEffect (getCreaturePosition (cid), voc [4]) else doPlayerSendTextMessage (cid, MESSAGE_STATUS_WARNING, "Você Precisa Estar nenhum nível" .. voc [1] .. "Transformar para.") end else doPlayerSendCancel (cid, "You cannot transform here.") end return true end Testa aí.
  16. Ina Kion reagiu a uma resposta no tópico: Como funcionam os Scripts?
  17. Ina Kion respondeu ao post em um tópico de Ina Kion em Playground (Off-topic)
    Assisti sim a segunda temporada. As coleções são "O contra-ataque de Suzaku" e "O pesadelo de Nunnally" Medo x.x
  18. Ina Kion respondeu ao post em um tópico de Ina Kion em Playground (Off-topic)
    Ainda não entendi o porque da lista :~ Já assisti sim. Assisti duas vezes a primeira temporada e tenho as 2 coleções lançadas aqui no Brasil que são histórias paralelas a história original. Não se preocupe, irei pertubar a todos aqui quando surgir alguma dúvida que Max não consiga me ajudar.
  19. Ina Kion respondeu ao post em um tópico de Ina Kion em Playground (Off-topic)
    Bem-vindA* Gostei da idéia, adiciona skype?
  20. Ina Kion respondeu ao post em um tópico de Ina Kion em Playground (Off-topic)
    Também espero ficar muito tempo aqui, tenho muito o que aprender :} O personagem é o Oji de Tamako Market. Estava assistindo Hataraku Maou-sama e Red Data Girl, mas já acabaram aí to só assistindo Shingeki no Kiojin. Agora mangá eu to lendo 3, que estão em lançamento aqui no Brasil, que são: Mirai Nikki, Dragon Ball e Maid-sama! (:
  21. Ina Kion postou uma resposta no tópico em Playground (Off-topic)
    Olá, meu nome é Marina Limeira e vim para o fórum com o objetivo de fazer scripts. Programo em Pascal (tudo bem que não é lá tudo isso, mas todos temos que começar de algum lugar), estou atualmente estudando Java e comecei recentemente Lua. Jogo League of Legends e passo maior parte do meu tempo jogando osu!, upando no kaizokuPROJECT e jogando TetrisFriends. Gosto de animes/mangás e séries xD. Ah, e antes que eu esqueça, sou RL do Max (MaXwEllDeN) [:

Informação Importante

Confirmação de Termo