Ir para conteúdo

rafaelzera

Campones
  • Total de itens

    56
  • Registro em

  • Última visita

Tudo que rafaelzera postou

  1. pode me dizer em qual area coloco? exemplo actions,creaturescripts
  2. boa tarde galera,to querendo testar 2 codigos que postaram a alguns anos atrás,mais sou iniciante e não sei onde add eles,to na duvida se é na source ou no server? os codigos são estes local shinycard = {[0] = {"Dragon", "Dragon lord", "Cyclops"},[1] = {"Rabbit, orc"},time = 60,id = 18315}local amulets = {[18313] = {"Entei"}, [18314] = {"Mewtwo"}, [18312] = {"Suicune"}, } h_storageClan, h_storageCD, h_storageCDValue, h_storageHelperTime = 181484, 181485, 24, 181486 function onUse(cid, item, fromPosition, itemEx, toPosition)local pos, a = getCreaturePosition(cid), 1 local pos_summon = {{x = pos.x + a, y = pos.y, z = pos.z}, {x = pos.x + a, y = pos.y + a, z = pos.z}, {x = pos.x, y = pos.y + a, z = pos.z}, {x = pos.x - a, y = pos.y + a, z = pos.z}, {x = pos.x - a, y = pos.y, z = pos.z}, {x = pos.x - a, y = pos.y - a, z = pos.z}, {x = pos.x, y = pos.y - a, z = pos.z}, {x = pos.x + a, y = pos.y - a, z = pos.z}, {x = pos.x +a, y = pos.y, z = pos.z}} hname = "" if getPlayerStorageValue(cid, h_storageCD) >= os.time() then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Resta ".. getPlayerStorageValue(cid, h_storageCD) - os.time() .." segundos de cooldown para utilizar esse item. ") doSendMagicEffect(getThingPos(cid), CONST_ME_POFF) doRemoveCreature(getCreatureSummons(cid)[table.maxn(getCreatureSummons(cid))]) return true else if item.itemid == shinycard.id then hname = shinycard[getPlayerStorageValue(cid, h_storageClan)][math.random(#shinycard[getPlayerStorageValue(cid, h_storageClan)])] print (hname) end if (amulets[item.itemid]) then hname = amulets[item.itemid][1] end local helper = doCreateMonster(hname, pos_summon[math.random(9)]) local h_s = {} doConvinceCreature(cid, helper) -- registerCreatureEvent(helper, "HelpingCard") setPlayerStorageValue(helper, h_storageHelperTime, os.time() + 20) function Check(cid) if cid == true or isCreature(cid) then if getPlayerStorageValue(cid, h_storageHelperTime) <= os.time() then doRemoveCreature(cid) print"criatura removida" return true end else print"thing not found" return true end doSendAnimatedText(getThingPos(cid), getPlayerStorageValue(cid, h_storageHelperTime) - os.time() , 34) addEvent(Check, 1000, cid) if getCreatureTarget(cid) == 0 then local master = cid local centerPos = {x = getCreaturePosition(master).x + 1, y = getCreaturePosition(master).y, z = getCreaturePosition(master).z} local spec = getSpectators(centerPos, 8, 7, false) local random = spec[math.random(#spec)] s = random if not isPlayer(s) and not isSummon(s) and not isNpc(s) then helperEntei_1 (cid, s) print("possivel target:" .. getCreatureName(s)) local dest = getDirectionTo(getThingPos(cid), getThingPos(s)) if isWalkable(getPosByDir(getThingPos(cid), dest)) then local d = 1 while d < 2 do addEvent(doMoveCreature, 500,cid, dest) addEvent(doCreatureSetLookDir, 350, cid, getDirectionTo(getThingPos(cid), getThingPos(s))) d = d + 1 end doCreatureSetLookDir(cid, getDirectionTo(getThingPos(cid), getThingPos(s))) else print('not walkable') end end end hname = "" dest = "" end -- Check(helper) -- registerCreatureEvent(cid, "HelpingCard") setPlayerStorageValue(cid, h_storageCD, os.time() + 10) end return true end helper_config = {["Entei"] = {minDamage = 5, maxDamage = 30, rangeAttack = 0},["Suicune"] = {min = 200, 500},["Raikou"] = {min = 200, max = 500}} function helperEntei_1 (cid, target) -- fire balllocal pos, a = getCreaturePosition(target), 1 pos_target = {{x = pos.x + a, y = pos.y, z = pos.z}, {x = pos.x + a, y = pos.y + a, z = pos.z}, {x = pos.x, y = pos.y + a, z = pos.z}, {x = pos.x - a, y = pos.y + a, z = pos.z}, {x = pos.x - a, y = pos.y, z = pos.z}, {x = pos.x - a, y = pos.y - a, z = pos.z}, {x = pos.x, y = pos.y - a, z = pos.z}, {x = pos.x + a, y = pos.y - a, z = pos.z}, {x = pos.x +a, y = pos.y, z = pos.z}} for i = 1, #pos_target do doAreaCombatHealth(cid, COMBAT_FIREDAMAGE, pos_target[i], 1, - helper_config["Entei"].minDamage, - helper_config["Entei"].maxDamage, 6) end return true end créditos ao Nogard por disponibilizar os codigos.
  3. @ Sammy,infelizmente aqui não funcionou,voçe pode dar uma olhada na source ? não to reclamando,acho que vc esqueçeu algo
  4. Obg <3,eu fiz o Healing Wish parecido com o healarea da clefable,ficou mais ou menos kk,o Stored power que fiz ta assim: acho que a pxg coloca 3 sings,mais nao manjo muito de colocar mais de 1 efeito a spell ta assim do Healing Wish elseif spell == "Healing Wish" then local min = (getCreatureMaxHealth(cid) * 50) / 100 local max = (getCreatureMaxHealth(cid) * 60) / 100 local function doHealArea(cid, min, max) local amount = math.random(min, max) if (getCreatureHealth(cid) + amount) >= getCreatureMaxHealth(cid) then amount = -(getCreatureHealth(cid)-getCreatureMaxHealth(cid)) end if getCreatureHealth(cid) ~= getCreatureMaxHealth(cid) then doCreatureAddHealth(cid, amount) doSendAnimatedText(getThingPosWithDebug(cid), "+"..amount.."", 65) end end local pos = getPosfromArea(cid, heal) local n = 0 doHealArea(cid, min, max) while n < #pos do n = n+1 thing = {x=pos[n].x,y=pos[n].y,z=pos[n].z,stackpos=263} local pid = getThingFromPosWithProtect(thing) doSendMagicEffect(pos[n], 773) if isCreature(pid) then if isSummon(cid) and (isSummon(pid) or isPlayer(pid)) then if canAttackOther(cid, pid) == "Cant" then doHealArea(pid, min, max) end elseif ehMonstro(cid) and ehMonstro(pid) then doHealArea(pid, min, max) end end end
  5. obg FlamesAdmin <3,vc sabe como faço aquela spell Healing Wish e Stored power? eu consegui fazer as 2 mais nao ficou 100%
  6. alguém pode me ajudar com a spell Moonblast da gardevoir? se alguém poder ajudar por favor,preciso que a spell fique igual a do pxg.
  7. oi galera tudo blz? pra mim tá mais ou menos,então galera eu baixei o client do Mythology Dx9.exe para testar,ai ele tem um bug de speedy quando vc marcar *andar rapido* como nao sei como resolver isto,eu decidi voltar pro meu client antigo,ai o bug passou pro meu client antigo tbm,tentei extrair o meu client antigo pelo winrar pra ver se resolvia,mais continua bugando a speedy,já tentei desinstalar o winrar ja fiz limpeza de disco,limpeza de log,limpeza com o clean e continua mesma coisa,alguém pode me ajudar com alguma dica de como desbugar?
  8. oi galera,estou com 5 erros ao compilar o client no codeblocks segue o erro que dá: Resp+ pra quem ajudar.
  9. oi,alguém pode me ajudar com o script spell da gardevoir>> Stored Power,eu preciso que a spell fique igual ao pxg,quando o player usar a spell ela demora 3 segundos pra sair. muito obrigado e resp+ pra quem ajudar.
  10. sim, 1 vai em config.lua e coloca>>>accountManager = true 2 em sqltype coloca>> sqlType = "sqlite" 3 em sqlFile coloque sqlFile = "PAlpha.s3db" 4 abra o sqlitestudio-2.0.25 e procure a database>>> PAlpha.s3db click em ok e pronto.
  11. @Crypter muito obrigado por ajudar,namoral tu é foda ^_^ <3,deu certo ^^
  12. eae galera estou com um erro no moveitem que está me desanimando muito,alguém pode ajudar a refazer este script? segue o erro que dá o meu moveitem tá assim function onMoveItem(cid, item, count, toContainer, fromContainer, fromPos, toPos) if not isCreature(cid) then return false end if isWatchingTv(cid) then return false end local name = getCreatureName(cid) local transform = false --- nao retirar item que estao no slot 8 e sao uniques if fromPos.x ~= 0 and toContainer.uid == 0 and fromContainer.uid == 0 and toPos.x == 65535 and getPlayerSlotItem(cid, 8).uid ~= 0 then doPlayerSendCancel(cid, MSG_NAO_E_POSSIVEL) return false end local itemID = item.itemid if itemID >= 14795 and itemID <= 14879 or pokeballs[getPokeballType(itemID)] and (itemID == pokeballs[getPokeballType(itemID)].use and (#getCreatureSummons(cid) > 0 or isRiderOrFlyOrSurf(cid))) then doPlayerSendCancel(cid, "Você não pode mover este item.") return false end if isFly(cid) and (getTileThingByPos(toPos).itemid == 460 or getTileThingByPos(toPos).itemid == 12171 or getTileThingByPos(toPos).itemid == 12172 or (toContainer.uid == 0 and getThingPos(cid).z ~= toPos.z)) then doPlayerSendDefaultCancel(cid, RETURNVALUE_CANNOTTHROW) return false end if isInArray({2589, 15446, 15447, 15448, 15449, 12355}, toContainer.itemid)then -- nao fazer nada no cp return true end local pos = toPos local items = getItemsfromPos(pos) for i = 1, #items do local name = getItemInfo(items.itemid).name if string.find(name, "fainted") or string.find(name, "defeated") then doSendMsg(cid, "Não pode jogar lá.") return false end end if isPokeball(item.itemid) and toPos.x == 65535 then if not getItemAttribute(item.uid, "unique") and getPlayerFreeCap(cid) > 1 then doTransformPokeballIcon(cid, item, count, toContainer, fromContainer, fromPos, toPos) end else if not getItemAttribute(item.uid, "unique") and not getItemAttribute(item.uid, "torneio") then doTransformPokeballIcon(cid, item, count, toContainer, fromContainer, fromPos, toPos) end end if isPokeball(item.itemid) or isContainer(item.uid) then if hasSqm(toPos) then if isContainer(item.uid) then local itens = getItensUniquesInContainer(item.uid) local sendMsg = false if #itens >= 1 then doSendMsg(cid, #itens.." item"..(#itens < 2 and "" or "s").." neste recipiente "..(#itens < 2 and "é exclusivo" or "são exclusivos")..". Você não pode joga-lo"..(#itens < 2 and "" or "s").." fora!") return false end else if getItemAttribute(item.uid, "unique") or getItemAttribute(item.uid, "torneio") then doSendMsg(cid, "Isso é um item exclusivo, você não pode joga-lo fora!") return false end end elseif isContainer(toContainer.uid) and (isPokeball(item.itemid) or isContainer(item.uid)) then if toContainer.itemid == getPlayerSlotItem(cid, 3).itemid then -- nao fazer nada na poke bag principal return true end if not isPosEqual(getThingPos(toContainer.uid), getThingPos(cid)) then if isContainer(item.uid) then local itens = getItensUniquesInContainer(item.uid) local sendMsg = false if #itens >= 1 then doSendMsg(cid, #itens.." item"..(#itens < 2 and "" or "s").." neste recipiente "..(#itens < 2 and "é exclusivo" or "são exclusivos")..". Você não pode joga-lo"..(#itens < 2 and "" or "s").." fora!") return false end else if getItemAttribute(item.uid, "unique") or getItemAttribute(item.uid, "torneio") then doSendMsg(cid, "Isso é um item exclusivo, você não pode joga-lo fora!") return false end end end end end return true end function getItemsfromPos(position, fromStackpos) local toret = { } -- table to return items position.stackpos = fromStackpos if position.stackpos == nil then position.stackpos = 1 -- default end while true do -- loop to catch the items and insert them in toret table local thing = getThingfromPos(position) if thing.itemid == 0 then -- thing doesn't exist, break the loop... break end if getWholeThing ~= nil and getWholeThing ~= 0 then -- if getWholeThing isn't nil and isn't 0 table.insert(toret,thing) else -- else, insert only item uid in toret table table.insert(toret,thing) end position.stackpos = position.stackpos + 1 -- get next item end return toret end
  13. Fuuin sei que não me conheçe  mais na humildade,faz um tutorial de como adicionar um pokemon novo na dxp,porque já  adicionei os pokemons de forma correta mais a ball nao se mexe na bag nem pro slot principal,a moveitem tá assim 

    function onMoveItem(cid, item, count, toContainer, fromContainer, fromPos, toPos)
    if not isCreature(cid) then return false end
    if isWatchingTv(cid) then return false end
    local name = getCreatureName(cid)
    local transform = false
    --- nao retirar item que estao no slot 8 e sao uniques
    if fromPos.x ~= 0 and toContainer.uid == 0 and fromContainer.uid == 0 and toPos.x == 65535 and getPlayerSlotItem(cid, 8).uid ~= 0 then
        doPlayerSendCancel(cid, MSG_NAO_E_POSSIVEL)
        return false
    end

    local itemID = item.itemid
    if itemID >= 14795 and itemID <= 14879 or pokeballs[getPokeballType(itemID)] and (itemID ==  pokeballs[getPokeballType(itemID)].use and (#getCreatureSummons(cid) > 0 or isRiderOrFlyOrSurf(cid))) then
       doPlayerSendCancel(cid, "Você não pode mover este item.")
       return false
    end

    if isFly(cid) and (getTileThingByPos(toPos).itemid == 460 or getTileThingByPos(toPos).itemid == 12171 or getTileThingByPos(toPos).itemid == 12172 or (toContainer.uid == 0 and getThingPos(cid).z ~= toPos.z)) then
        doPlayerSendDefaultCancel(cid, RETURNVALUE_CANNOTTHROW)
        return false
    end

    if isInArray({2589, 15446, 15447, 15448, 15449, 12355}, toContainer.itemid)then -- nao fazer nada no cp
       return true
    end    

    local pos =  toPos
    local items = getItemsfromPos(pos)
    for i = 1, #items do
        local name = getItemInfo(items.itemid).name
        if string.find(name, "fainted") or string.find(name, "defeated") then 
           doSendMsg(cid, "Não pode jogar lá.")
           return false
        end       
    end

        if isPokeball(item.itemid) and toPos.x == 65535 then
            if not getItemAttribute(item.uid, "unique") and getPlayerFreeCap(cid) > 1 then
                 doTransformPokeballIcon(cid, item, count, toContainer, fromContainer, fromPos, toPos)
            end
        else
              if not getItemAttribute(item.uid, "unique") and not getItemAttribute(item.uid, "torneio") then
                 doTransformPokeballIcon(cid, item, count, toContainer, fromContainer, fromPos, toPos)
              end
        end


    if isPokeball(item.itemid) or isContainer(item.uid) then
    if hasSqm(toPos) then

      if isContainer(item.uid) then

       local itens = getItensUniquesInContainer(item.uid)
       local sendMsg = false
        if #itens >= 1 then
           doSendMsg(cid, #itens.." item"..(#itens < 2 and "" or "s").." neste recipiente "..(#itens < 2 and "é exclusivo" or "são exclusivos")..". Você não pode joga-lo"..(#itens < 2 and "" or "s").." fora!")
           return false
        end
       
      else

       if getItemAttribute(item.uid, "unique") or getItemAttribute(item.uid, "torneio") then 
          doSendMsg(cid, "Isso é um item exclusivo, você não pode joga-lo fora!")
          return false 
       end  
      end
      
    elseif isContainer(toContainer.uid) and (isPokeball(item.itemid) or isContainer(item.uid)) then 

       if toContainer.itemid == getPlayerSlotItem(cid, 3).itemid then -- nao fazer nada na poke bag principal
          return true
       end


      if not isPosEqual(getThingPos(toContainer.uid), getThingPos(cid)) then
          if isContainer(item.uid) then
          
                local itens = getItensUniquesInContainer(item.uid)
                local sendMsg = false
                  if #itens >= 1 then
                    doSendMsg(cid, #itens.." item"..(#itens < 2 and "" or "s").." neste recipiente "..(#itens < 2 and "é exclusivo" or "são exclusivos")..". Você não pode joga-lo"..(#itens < 2 and "" or "s").." fora!")
                    return false
                  end
           
          else
             if getItemAttribute(item.uid, "unique") or getItemAttribute(item.uid, "torneio") then 
                doSendMsg(cid, "Isso é um item exclusivo, você não pode joga-lo fora!")
                return false 
             end  
          end
      end
       
    end
    end  

      return true
    end 

    function getItemsfromPos(position, fromStackpos)
        local toret = { } -- table to return items
     
        position.stackpos = fromStackpos
        if position.stackpos == nil then
            position.stackpos = 1 -- default
        end
     
        while true do -- loop to catch the items and insert them in toret table
            local thing = getThingfromPos(position)
            if thing.itemid == 0 then -- thing doesn't exist, break the loop...
                break
            end
     
            if getWholeThing ~= nil and getWholeThing ~= 0 then
                -- if getWholeThing isn't nil and isn't 0
                table.insert(toret,thing)
            else
                -- else, insert only item uid in toret table
                table.insert(toret,thing)
            end
     
            position.stackpos = position.stackpos + 1 -- get next item
        end
     
        return toret
    end

     dá esse erro no moveitem. porfavor se souber como resolver faz um tutorial não custa nada ajudar,quando peço ajuda ninguém dá atenção,eu uso dxp a muito tempo já ajudei meu colega a corrigir varios bugs,mais  não faço ideia de como arrumar este bug.erro-moveitem.thumb.png.4cb348aa5c94c7e78b9f0be6d0f8bcf8.png

  14. eu queria deixar tipo pxg,para o player conseguir boostar +60 ele vai precisa ter varias stones raras,exemplo shiny water stones,shiny fire stones etc..,voçe pode me ajudar?
  15. alguém sabe como faço pra deixar o poke evolution pegando em account manager? já consegui :),testei aqui no evolution e em outro server que tenho,está funcionando certinho a bag abre,os itens sao entregues,mais o character ele começa invisive,alguém sabe como resolver?
  16. alguém poderia me ajudar com um scripts de boost +60 por favor?
  17. uso base dxp.

    Fuuin Fake pode me ajudar?

    quando adiciono pokemons novos no server,e faço /cb ou capturo,eles nao se mexem dentro da bag e nao vai pro slot principal.

    só sei que dá erro no moveitem,eu nao sei arrumar isso :´(.

     

  18. acho que pode ser a versão do xampp,tenta usar essa https://sourceforge.net/projects/xampp/files/XAMPP Windows/1.7.7/xampp-win32-1.7.7-VC9-installer.exe/download
  19. me manda seu mapa que adiciono phenac e outland pra vc,só vou ficar devendo o pvp zone e a held machine
  20. galera estou com o seguinte erro,eu adicionei alguns pokemons novos no server,e quando faço /cb ou capturo os pokes, a ball dos novos pokes nao se mexe na bag e nem vai pro slot pincipal,ai fica dando esse erro,alguém sabe como resolver?
  21. eae galera,estou com um erro na base dxp que está me desanimando muito, alguém me ajuda a resolver? ops já tentei pedir ajuda mais ninguém sabe ajudar ou ignora. print do erro moveitem o meu moveitem tá assim function onMoveItem(cid, item, count, toContainer, fromContainer, fromPos, toPos) if not isCreature(cid) then return false end if isWatchingTv(cid) then return false end local name = getCreatureName(cid) local transform = false --- nao retirar item que estao no slot 8 e sao uniques if fromPos.x ~= 0 and toContainer.uid == 0 and fromContainer.uid == 0 and toPos.x == 65535 and getPlayerSlotItem(cid, 8).uid ~= 0 then doPlayerSendCancel(cid, MSG_NAO_E_POSSIVEL) return false end local itemID = item.itemid if itemID >= 14795 and itemID <= 14879 or pokeballs[getPokeballType(itemID)] and (itemID == pokeballs[getPokeballType(itemID)].use and (#getCreatureSummons(cid) > 0 or isRiderOrFlyOrSurf(cid))) then doPlayerSendCancel(cid, "Você não pode mover este item.") return false end if isFly(cid) and (getTileThingByPos(toPos).itemid == 460 or getTileThingByPos(toPos).itemid == 12171 or getTileThingByPos(toPos).itemid == 12172 or (toContainer.uid == 0 and getThingPos(cid).z ~= toPos.z)) then doPlayerSendDefaultCancel(cid, RETURNVALUE_CANNOTTHROW) return false end if isInArray({2589, 15446, 15447, 15448, 15449, 12355}, toContainer.itemid)then -- nao fazer nada no cp return true end local pos = toPos local items = getItemsfromPos(pos) for i = 1, #items do local name = getItemInfo(items.itemid).name if string.find(name, "fainted") or string.find(name, "defeated") then doSendMsg(cid, "Não pode jogar lá.") return false end end if isPokeball(item.itemid) and toPos.x == 65535 then if not getItemAttribute(item.uid, "unique") and getPlayerFreeCap(cid) > 1 then doTransformPokeballIcon(cid, item, count, toContainer, fromContainer, fromPos, toPos) end else if not getItemAttribute(item.uid, "unique") and not getItemAttribute(item.uid, "torneio") then doTransformPokeballIcon(cid, item, count, toContainer, fromContainer, fromPos, toPos) end end if isPokeball(item.itemid) or isContainer(item.uid) then if hasSqm(toPos) then if isContainer(item.uid) then local itens = getItensUniquesInContainer(item.uid) local sendMsg = false if #itens >= 1 then doSendMsg(cid, #itens.." item"..(#itens < 2 and "" or "s").." neste recipiente "..(#itens < 2 and "é exclusivo" or "são exclusivos")..". Você não pode joga-lo"..(#itens < 2 and "" or "s").." fora!") return false end else if getItemAttribute(item.uid, "unique") or getItemAttribute(item.uid, "torneio") then doSendMsg(cid, "Isso é um item exclusivo, você não pode joga-lo fora!") return false end end elseif isContainer(toContainer.uid) and (isPokeball(item.itemid) or isContainer(item.uid)) then if toContainer.itemid == getPlayerSlotItem(cid, 3).itemid then -- nao fazer nada na poke bag principal return true end if not isPosEqual(getThingPos(toContainer.uid), getThingPos(cid)) then if isContainer(item.uid) then local itens = getItensUniquesInContainer(item.uid) local sendMsg = false if #itens >= 1 then doSendMsg(cid, #itens.." item"..(#itens < 2 and "" or "s").." neste recipiente "..(#itens < 2 and "é exclusivo" or "são exclusivos")..". Você não pode joga-lo"..(#itens < 2 and "" or "s").." fora!") return false end else if getItemAttribute(item.uid, "unique") or getItemAttribute(item.uid, "torneio") then doSendMsg(cid, "Isso é um item exclusivo, você não pode joga-lo fora!") return false end end end end end return true end function getItemsfromPos(position, fromStackpos) local toret = { } -- table to return items position.stackpos = fromStackpos if position.stackpos == nil then position.stackpos = 1 -- default end while true do -- loop to catch the items and insert them in toret table local thing = getThingfromPos(position) if thing.itemid == 0 then -- thing doesn't exist, break the loop... break end if getWholeThing ~= nil and getWholeThing ~= 0 then -- if getWholeThing isn't nil and isn't 0 table.insert(toret,thing) else -- else, insert only item uid in toret table table.insert(toret,thing) end position.stackpos = position.stackpos + 1 -- get next item end return toret end
  22. oi galera do xtibia,recentemente eu adicionei phenac no servidor,pra adicionar eu abri o meu map e outro com o phenac logo do lado,ai só copiei a cidade e hunts de phenac e colei,ai fica dando erro no spawn das casas e dos pokemons,quando loguei pra ver se deu certo os pokemons tinham sumido dos respaws,ops eu tinha passado a cidade de phenac por outro pc,porque o meu note trava quando tento diminuir o zoom da cidade. ai tbm começou a dar este erro quando tentei adicionar mais pokemons https://gyazo.com/22b04c61114345af21efd5ecc5e1bc69 alguém pode ajudar porfavor? foto do erro no remeres https://gyazo.com/48ea58b42fc5874885649d76ff6b0ca8
  23. obrigado pela dica resp+ o que quero fazer é um pouco diferente,tipo quando um player for no site,ele vai criar a conta,ai quando chegar na parte do nickname,tipo ia ter uma opção de pokemons inicias logo abaixo do nick. foto exemplo: https://gyazo.com/c074cde7fe4c233941ce84ac261c3a09
  • Quem Está Navegando   0 membros estão online

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