-
-
- Friend code 3DS
-
-
Friend code 3DS
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).
-
(Resolvido)Oque são sources?
Só pra complementar, source é o código fonte do servidor, que faz a comunicação entre o client e os jogadores~
-
Erro na TFS
Acredito que este tópico seja útil: http://www.tibiaking.com/forum/topic/19848-96-sources-para-compilar-tfs-96x/
-
[Sugestão] Por onde começo ?
Existem vários tutoriais aqui e ainda tem a Escola de Mapping, onde você pode se candidatar a alguma aula :} Espero que ajude! >w<
-
-
item de skill :D
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í.
-
-
-
Ganhar comando ao fazer quest
Aparece alguma mensagem do motivo para não transformar?
-
-
Ganhar comando ao fazer quest
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í.
-
-
Olá :3
Assisti sim a segunda temporada. As coleções são "O contra-ataque de Suzaku" e "O pesadelo de Nunnally" Medo x.x
-
Olá :3
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.
-
Olá :3
Bem-vindA* Gostei da idéia, adiciona skype?
-
Olá :3
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! (:
-
Olá :3
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) [: