Ir para conteúdo

Maxwillian

Campones
  • Total de itens

    90
  • Registro em

  • Última visita

Sobre Maxwillian

Informações

  • Forma que conheci o xTibia
    Amigos
  • Sou
    Não Informado

Últimos Visitantes

1228 visualizações

Maxwillian's Achievements

  1. Maxwillian

    Pic cliente

    Bom galera eu estava editando meu serve quando troquei o pic original pelo meu os pokémons estão aparecendo todos ao contrario TIpo macho esta como femea e femea esta como macho veja e isto esta em todos os pokémons se alguem poder ajudar ou criar um outro cliente
  2. Muito bom!!Se poder faz v2 ai tira esses bugs
  3. Se não pode ajudar simplesmente ignore o tópico amigo beleza só uma dica se o cara esta pedindo e por que ele não conseguiu achar.
  4. Creio que o lordbaxx estava querendo posta mais acho que ele não ira postar mais.
  5. local poke = {"Shiny Mr. Mime", 'Mew', 'Mewtwo', 'Abra', 'Kadabra', 'Alakazam', 'Drowzee', 'Hypno', 'Mr. Mime', 'Porygon', 'Shiny Abra', 'Shiny Alakazam', 'Shiny Hypno', 'Porygon2'} --alterado v1.9 local etele = 9499 local cdtele = 1800 local config = { premium = false, -- se precisa ser premium account (true or false) battle = true -- se precisa estar sem battle (true). Se colocar false, poderá usar teleport no meio de batalhas } local places = { [1] = {name = "Saffron", id = 1, sto = 897530}, [2] = {name = "Cerulean", id = 2, sto = 897531}, [3] = {name = "Lavender", id = 3, sto = 897532}, [4] = {name = "Fuchsia", id = 4, sto = 897533}, [5] = {name = "Celadon", id = 5, sto = 897534}, [6] = {name = "Viridian", id = 6, sto = 897535}, --alterado v1.7 [7] = {name = "Vermilion", id = 7, sto = 897536}, [8] = {name = "Pewter", id = 8, sto = 897537}, [9] = {name = "Pallet", id = 9}, [10] = {name = "Cinnabar", id = 10, sto = 897538}, [11] = {name = "Snow", id = 11, sto = 897539}, [12] = {name = "Golden", id = 14, sto = 897540}, } function onSay(cid, words, param) if #getCreatureSummons(cid) == 0 then doPlayerSendCancel(cid, "You need a pokemon to use teleport.") return true end if not isInArray(poke, getCreatureName(getCreatureSummons(cid)[1])) then return 0 end if getPlayerStorageValue(cid, Agatha.stoIni) >= 1 and getPlayerStorageValue(cid, Agatha.stoIni) < 50 then --alterado v1.9 doPlayerSendCancel(cid, "You can't do that here!") return true end if getPlayerStorageValue(cid, 22545) == 1 then --golden arena doPlayerSendCancel(cid, "You can't do that while the golden arena!") return true end if getPlayerStorageValue(cid, 212124) >= 1 then --alterado v1.6 return doPlayerSendCancel(cid, "You can't do it with a pokemon with mind controlled!") end if getPlayerStorageValue(cid, 52480) >= 1 then return doPlayerSendCancel(cid, "You can't do it while a duel!") --alterado v1.6 end if getPlayerStorageValue(cid, 6598754) == 1 or getPlayerStorageValue(cid, 6598755) == 1 then return doPlayerSendCancel(cid, "You can't do it while in the PVP Zone!") --alterado v1.7 end if exhaustion.get(cid, etele) and exhaustion.get(cid, etele) > 0 then local tempo = tonumber(exhaustion.get(cid, etele)) or 0 local min = math.floor(tempo) doPlayerSendCancel(cid, "Your pokemon is tired, wait "..getStringmytempo(tempo).." to teleport again.") return true end if config.premium and not isPremium(cid) then doPlayerSendCancel(cid, "Only premium members are allowed to use teleport.") return true end if config.battle and getCreatureCondition(cid, CONDITION_INFIGHT) then doPlayerSendCancel(cid, "Your pokemon can't concentrate during battles.") return true end if (param == '') then local str = "" str = str .. "Places to go :\n\nHouse\n" for a = 1, #places do str = str..""..places[a].name.."\n" end doShowTextDialog(cid, 7416, str) return true end local item = getPlayerSlotItem(cid, 8) local nome = getPokeballName(item.uid) local summon = getCreatureSummons(cid)[1] local lastppos = getThingPos(cid) local lastspos = getThingPos(summon) local telepos = {} local myplace = "" local townid = 0 local citySto = 0 --alterado v1.7 if string.lower(param) == "house" then if not getHouseByPlayerGUID(getPlayerGUID(cid)) then doPlayerSendTextMessage(cid, MESSAGE_EVENT_DEFAULT, "You don't own a house.") return true end telepos = getHouseEntry(getHouseByPlayerGUID(getPlayerGUID(cid))) myplace = "our home" else for x = 1, #places do if string.find(string.lower(places[x].name), string.lower(param)) then townid = places[x].id myplace = places[x].name citySto = places[x].sto or -1 --alterado v1.7 end end if myplace == "" then doPlayerSendCancel(cid, "That place doesn't exist.") return true end end if myplace ~= "" and townid > 0 then telepos = getTownTemplePosition(townid) end if string.lower(param) ~= "house" and citySto ~= -1 and getPlayerStorageValue(cid, citySto) <= -1 then --alterado v1.7 doPlayerSendCancel(cid, "You have to talk with nurse in this place, before you can teleport for there!") return true end if getDistanceBetween(getThingPos(cid), telepos) <= 15 then doPlayerSendCancel(cid, "You are too near to the place you want to go!") return true end doSendMagicEffect(getThingPos(summon), 29) doSendMagicEffect(getThingPos(cid), 29) doTeleportThing(cid, telepos, false) local pos2 = getClosestFreeTile(cid, getPosByDir(getThingPos(cid), SOUTH)) doTeleportThing(summon, pos2, false) doSendMagicEffect(getThingPos(cid), 29) doCreatureSay(cid, ""..nome..", teleport to "..myplace.."!", 1) doCreatureSay(cid, ""..nome..", teleport to "..myplace.."!", 1, false, 0, lastppos) doCreatureSay(summon, "TELEPORT!", TALKTYPE_MONSTER) doCreatureSay(summon, "TELEPORT!", TALKTYPE_MONSTER, false, 0, lastspos) doCreatureSetLookDir(cid, SOUTH) doCreatureSetLookDir(summon, SOUTH) doSendMagicEffect(getThingPos(summon), CONST_ME_TELEPORT) exhaustion.set(cid, etele, cdtele) return true end Não sei por spoiler
  6. Manow ta tudo trocado saffron ta como cerulean e cerulean esta como saffron asim por diante celadon ta como pewter e pewter ta como celadon poderia ajeitar?
  7. Tipo pra min colocar pra teleporta sem ser premium no caso eu coloco false certo?
  8. Quando algum player vai teleporta aparece a seguinte mensagem you have to talk with nurse in this place,before you can teleport for there Bom não sei o que é mais sei o que seja isso seja isso o meu teleport e /h tem a lista de cidades e tudo Places to go : House Saffron Cerulean Lavender Fuchsia Celadon Viridian Vermilion Pewter Pallet Cinnabar Snow Golden Bom quem poder ajudar agradeço desde já
  9. Maxwillian

    MoveEvents

    [30/04/2014 22:21:11] [Error - MoveEvents Interface] [30/04/2014 22:21:11] data/movements/scripts/PVP/Trade_Back.lua:onStepIn [30/04/2014 22:21:11] Description: [30/04/2014 22:21:11] data/lib/011-string.lua:29: attempt to index local 'str' (a number value) [30/04/2014 22:21:11] stack traceback: [30/04/2014 22:21:11] data/lib/011-string.lua:29: in function 'explode' [30/04/2014 22:21:11] data/movem Estou com esse problema em meu servido se alguem souber como eu poderia arrumar Aqui esta meu Trade-back local tileClans = {33800, 33801, 33802, 33803, 33804, 33805, 33806, 33807, 33808} -- psy ore win nat sea gard male rai volc function onStepIn(cid, item, pos) if isSummon(cid) then return false end -- local storage = 171877 if isInArray(tileClans, item.actionid) then storage = 171878 end -- local b = string.explode(getPlayerStorageValue(cid, storage), "/") local t = string.explode(b[1], ";") --alterado v1.8 -- if #getCreatureSummons(cid) >= 1 then for i = 1, #getCreatureSummons(cid) do doTeleportThing(getCreatureSummons(cid), {x=tonumber(t[1]) - 1, y=tonumber(t[2]), z=tonumber(t[3])}, false) end end doTeleportThing(cid, {x=tonumber(t[1]), y=tonumber(t[2]), z=tonumber(t[3])}, false) setPlayerStorageValue(cid, storage, -1) return true end
  10. Maxwillian

    PokéxMax

    15 Online mais é asim no começo mesmo tem que tocar para frente. '-' nu sei se foi elogio seila mais valew ''-''
  11. Maxwillian

    PokéxMax

    Eae galera Go jogar PokeXMax bom e PDA Ainda pois não sei ainda criar um com sources bom Nossa pagina no facebook seria essa https://www.facebook.com/PokeeMax Nosso blogger:http://pokemax01.blogspot.com.br/ Baixem cliente criem account e Pronto Asim que eu aprender a criar um com source Irei deixar 24 horas bom só jogar... Somente editei algumas coisas tipo adicionei os comandos correr e !afk
  • Quem Está Navegando   0 membros estão online

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