-
Total de Posts
13 -
Registro em
-
Última visita
-
Dias Ganhos
5
Other groups
lippe ganhou no último dia 31 de Maio 2024
lippe teve o conteúdo mais curtida!
Sobre lippe

Últimos Visitantes
531 visualizações
lippe's Achievements
-
JoseOlivas começou a seguir lippe
-
[Canary / TFS 1.x] Comando !tfs
lippe postou um tópico no fórum em TFS 1.X, Compartilhe seu código C++, LUA, PHP e etc
local fps = TalkAction("!fps") function fps.onSay(player, words, param) if player:hasExhaustion("fps-cooldown") then player:sendTextMessage(MESSAGE_EVENT_ADVANCE, "You need to wait 10 seconds before using it again.") return false end player:setExhaustion("fps-cooldown", 10) player:dropConnection() return true end fps:groupType("normal") fps:register() Lua::registerMethod(L, "Player", "dropConnection", PlayerFunctions::luaPlayerDropConnection); int PlayerFunctions::luaPlayerDropConnection(lua_State* L) { std::shared_ptr<Player> player = Lua::getUserdataShared<Player>(L, 1); if (player) { player->disconnect(); } else { lua_pushnil(L); } return 1; } static int luaPlayerDropConnection(lua_State* L); Não dou suporte, façam bom uso. -
Sistema de Cards Pokémon – Transforme Seu Pokémon em Shiny
lippe postou um tópico no fórum em TFS 1.X, Compartilhe seu código C++, LUA, PHP e etc
local SHINY_EVOLUTIONS = { [6001] = { name = "Bulbasaur", shiny = "Shiny Bulbasaur", cardId = 20001 }, [6002] = { name = "Ivysaur", shiny = "Shiny Ivysaur", cardId = 20002 }, [6003] = { name = "Venusaur", shiny = "Shiny Venusaur", cardId = 20003 }, [6004] = { name = "Charmander", shiny = "Shiny Charmander", cardId = 20004 }, [6005] = { name = "Charmeleon", shiny = "Shiny Charmeleon", cardId = 20005 }, [6006] = { name = "Charizard", shiny = "Shiny Charizard", cardId = 20006 }, [6007] = { name = "Squirtle", shiny = "Shiny Squirtle", cardId = 20007 }, [6008] = { name = "Wartortle", shiny = "Shiny Wartortle", cardId = 20008 }, [6009] = { name = "Blastoise", shiny = "Shiny Blastoise", cardId = 20009 }, [6010] = { name = "Caterpie", shiny = "Shiny Caterpie", cardId = 20010 }, [6011] = { name = "Metapod", shiny = "Shiny Metapod", cardId = 20011 }, [6012] = { name = "Butterfree", shiny = "Shiny Butterfree", cardId = 20012 }, [6013] = { name = "Weedle", shiny = "Shiny Weedle", cardId = 20013 }, [6014] = { name = "Kakuna", shiny = "Shiny Kakuna", cardId = 20014 }, [6015] = { name = "Beedrill", shiny = "Shiny Beedrill", cardId = 20015 }, [6016] = { name = "Pidgey", shiny = "Shiny Pidgey", cardId = 20016 }, [6017] = { name = "Pidgeotto", shiny = "Shiny Pidgeotto", cardId = 20017 }, [6018] = { name = "Pidgeot", shiny = "Shiny Pidgeot", cardId = 20018 }, [6019] = { name = "Rattata", shiny = "Shiny Rattata", cardId = 20019 }, [6020] = { name = "Raticate", shiny = "Shiny Raticate", cardId = 20020 }, [6021] = { name = "Spearow", shiny = "Shiny Spearow", cardId = 20021 }, [6022] = { name = "Fearow", shiny = "Shiny Fearow", cardId = 20022 }, [6023] = { name = "Ekans", shiny = "Shiny Ekans", cardId = 20023 }, [6024] = { name = "Arbok", shiny = "Shiny Arbok", cardId = 20024 }, [6025] = { name = "Pikachu", shiny = "Shiny Pikachu", cardId = 20025 }, [6026] = { name = "Raichu", shiny = "Shiny Raichu", cardId = 20026 }, [6027] = { name = "Sandshrew", shiny = "Shiny Sandshrew", cardId = 20027 }, [6028] = { name = "Sandslash", shiny = "Shiny Sandslash", cardId = 20028 }, [6029] = { name = "Nidoran♀", shiny = "Shiny Nidoran♀", cardId = 20029 }, [6030] = { name = "Nidorina", shiny = "Shiny Nidorina", cardId = 20030 }, [6031] = { name = "Nidoqueen", shiny = "Shiny Nidoqueen", cardId = 20031 }, [6032] = { name = "Nidoran♂", shiny = "Shiny Nidoran♂", cardId = 20032 }, [6033] = { name = "Nidorino", shiny = "Shiny Nidorino", cardId = 20033 }, [6034] = { name = "Nidoking", shiny = "Shiny Nidoking", cardId = 20034 }, [6035] = { name = "Clefairy", shiny = "Shiny Clefairy", cardId = 20035 }, [6036] = { name = "Clefable", shiny = "Shiny Clefable", cardId = 20036 }, [6037] = { name = "Vulpix", shiny = "Shiny Vulpix", cardId = 20037 }, [6038] = { name = "Ninetales", shiny = "Shiny Ninetales", cardId = 20038 }, [6039] = { name = "Jigglypuff", shiny = "Shiny Jigglypuff", cardId = 20039 }, [6040] = { name = "Wigglytuff", shiny = "Shiny Wigglytuff", cardId = 20040 }, [6041] = { name = "Zubat", shiny = "Shiny Zubat", cardId = 20041 }, [6042] = { name = "Golbat", shiny = "Shiny Golbat", cardId = 20042 }, [6043] = { name = "Oddish", shiny = "Shiny Oddish", cardId = 20043 }, [6044] = { name = "Gloom", shiny = "Shiny Gloom", cardId = 20044 }, [6045] = { name = "Vileplume", shiny = "Shiny Vileplume", cardId = 20045 }, [6046] = { name = "Paras", shiny = "Shiny Paras", cardId = 20046 }, [6047] = { name = "Parasect", shiny = "Shiny Parasect", cardId = 20047 }, [6048] = { name = "Venonat", shiny = "Shiny Venonat", cardId = 20048 }, [6049] = { name = "Venomoth", shiny = "Shiny Venomoth", cardId = 20049 }, [6050] = { name = "Diglett", shiny = "Shiny Diglett", cardId = 20050 }, [6051] = { name = "Dugtrio", shiny = "Shiny Dugtrio", cardId = 20051 }, [6052] = { name = "Meowth", shiny = "Shiny Meowth", cardId = 20052 }, [6053] = { name = "Persian", shiny = "Shiny Persian", cardId = 20053 }, [6054] = { name = "Psyduck", shiny = "Shiny Psyduck", cardId = 20054 }, [6055] = { name = "Golduck", shiny = "Shiny Golduck", cardId = 20055 }, [6056] = { name = "Mankey", shiny = "Shiny Mankey", cardId = 20056 }, [6057] = { name = "Primeape", shiny = "Shiny Primeape", cardId = 20057 }, [6058] = { name = "Growlithe", shiny = "Shiny Growlithe", cardId = 20058 }, [6059] = { name = "Arcanine", shiny = "Shiny Arcanine", cardId = 20059 }, [6060] = { name = "Poliwag", shiny = "Shiny Poliwag", cardId = 20060 }, [6061] = { name = "Poliwhirl", shiny = "Shiny Poliwhirl", cardId = 20061 }, [6062] = { name = "Poliwrath", shiny = "Shiny Poliwrath", cardId = 20062 }, [6063] = { name = "Abra", shiny = "Shiny Abra", cardId = 20063 }, [6064] = { name = "Kadabra", shiny = "Shiny Kadabra", cardId = 20064 }, [6065] = { name = "Alakazam", shiny = "Shiny Alakazam", cardId = 20065 }, [6066] = { name = "Machop", shiny = "Shiny Machop", cardId = 20066 }, [6067] = { name = "Machoke", shiny = "Shiny Machoke", cardId = 20067 }, [6068] = { name = "Machamp", shiny = "Shiny Machamp", cardId = 20068 }, [6069] = { name = "Bellsprout", shiny = "Shiny Bellsprout", cardId = 20069 }, [6070] = { name = "Weepinbell", shiny = "Shiny Weepinbell", cardId = 20070 }, [6071] = { name = "Victreebel", shiny = "Shiny Victreebel", cardId = 20071 }, [6072] = { name = "Tentacool", shiny = "Shiny Tentacool", cardId = 20072 }, [6073] = { name = "Tentacruel", shiny = "Shiny Tentacruel", cardId = 20073 }, [6074] = { name = "Geodude", shiny = "Shiny Geodude", cardId = 20074 }, [6075] = { name = "Graveler", shiny = "Shiny Graveler", cardId = 20075 }, [6076] = { name = "Golem", shiny = "Shiny Golem", cardId = 20076 }, [6077] = { name = "Ponyta", shiny = "Shiny Ponyta", cardId = 20077 }, [6078] = { name = "Rapidash", shiny = "Shiny Rapidash", cardId = 20078 }, [6079] = { name = "Slowpoke", shiny = "Shiny Slowpoke", cardId = 20079 }, [6080] = { name = "Slowbro", shiny = "Shiny Slowbro", cardId = 20080 }, [6081] = { name = "Magnemite", shiny = "Shiny Magnemite", cardId = 20081 }, [6082] = { name = "Magneton", shiny = "Shiny Magneton", cardId = 20082 }, [6083] = { name = "Farfetch'd", shiny = "Shiny Farfetch'd", cardId = 20083 }, [6084] = { name = "Doduo", shiny = "Shiny Doduo", cardId = 20084 }, [6085] = { name = "Dodrio", shiny = "Shiny Dodrio", cardId = 20085 }, [6086] = { name = "Seel", shiny = "Shiny Seel", cardId = 20086 }, [6087] = { name = "Dewgong", shiny = "Shiny Dewgong", cardId = 20087 }, [6088] = { name = "Grimer", shiny = "Shiny Grimer", cardId = 20088 }, [6089] = { name = "Muk", shiny = "Shiny Muk", cardId = 20089 }, [6090] = { name = "Shellder", shiny = "Shiny Shellder", cardId = 20090 }, [6091] = { name = "Cloyster", shiny = "Shiny Cloyster", cardId = 20091 }, [6092] = { name = "Gastly", shiny = "Shiny Gastly", cardId = 20092 }, [6093] = { name = "Haunter", shiny = "Shiny Haunter", cardId = 20093 }, [6094] = { name = "Gengar", shiny = "Shiny Gengar", cardId = 20094 }, [6095] = { name = "Onix", shiny = "Shiny Onix", cardId = 20095 }, [6096] = { name = "Drowzee", shiny = "Shiny Drowzee", cardId = 20096 }, [6097] = { name = "Hypno", shiny = "Shiny Hypno", cardId = 20097 }, [6098] = { name = "Krabby", shiny = "Shiny Krabby", cardId = 20098 }, [6099] = { name = "Kingler", shiny = "Shiny Kingler", cardId = 20099 }, [6100] = { name = "Voltorb", shiny = "Shiny Voltorb", cardId = 20100 }, [6101] = { name = "Electrode", shiny = "Shiny Electrode", cardId = 20101 }, [6102] = { name = "Exeggcute", shiny = "Shiny Exeggcute", cardId = 20102 }, [6103] = { name = "Exeggutor", shiny = "Shiny Exeggutor", cardId = 20103 }, [6104] = { name = "Cubone", shiny = "Shiny Cubone", cardId = 20104 }, [6105] = { name = "Marowak", shiny = "Shiny Marowak", cardId = 20105 }, [6106] = { name = "Hitmonlee", shiny = "Shiny Hitmonlee", cardId = 20106 }, [6107] = { name = "Hitmonchan", shiny = "Shiny Hitmonchan", cardId = 20107 }, [6108] = { name = "Lickitung", shiny = "Shiny Lickitung", cardId = 20108 }, [6109] = { name = "Koffing", shiny = "Shiny Koffing", cardId = 20109 }, [6110] = { name = "Weezing", shiny = "Shiny Weezing", cardId = 20110 }, [6111] = { name = "Rhyhorn", shiny = "Shiny Rhyhorn", cardId = 20111 }, [6112] = { name = "Rhydon", shiny = "Shiny Rhydon", cardId = 20112 }, [6113] = { name = "Chansey", shiny = "Shiny Chansey", cardId = 20113 }, [6114] = { name = "Tangela", shiny = "Shiny Tangela", cardId = 20114 }, [6115] = { name = "Kangaskhan", shiny = "Shiny Kangaskhan", cardId = 20115 }, [6116] = { name = "Horsea", shiny = "Shiny Horsea", cardId = 20116 }, [6117] = { name = "Seadra", shiny = "Shiny Seadra", cardId = 20117 }, [6118] = { name = "Goldeen", shiny = "Shiny Goldeen", cardId = 20118 }, [6119] = { name = "Seaking", shiny = "Shiny Seaking", cardId = 20119 }, [6120] = { name = "Staryu", shiny = "Shiny Staryu", cardId = 20120 }, [6121] = { name = "Starmie", shiny = "Shiny Starmie", cardId = 20121 }, [6122] = { name = "Mr. Mime", shiny = "Shiny Mr. Mime", cardId = 20122 }, [6123] = { name = "Scyther", shiny = "Shiny Scyther", cardId = 20123 }, [6124] = { name = "Jynx", shiny = "Shiny Jynx", cardId = 20124 }, [6125] = { name = "Electabuzz", shiny = "Shiny Electabuzz", cardId = 20125 }, [6126] = { name = "Magmar", shiny = "Shiny Magmar", cardId = 20126 }, [6127] = { name = "Pinsir", shiny = "Shiny Pinsir", cardId = 20127 }, [6128] = { name = "Tauros", shiny = "Shiny Tauros", cardId = 20128 }, [6129] = { name = "Magikarp", shiny = "Shiny Magikarp", cardId = 20129 }, [6130] = { name = "Gyarados", shiny = "Shiny Gyarados", cardId = 20130 }, [6131] = { name = "Lapras", shiny = "Shiny Lapras", cardId = 20131 }, [6132] = { name = "Ditto", shiny = "Shiny Ditto", cardId = 20132 }, [6133] = { name = "Eevee", shiny = "Shiny Eevee", cardId = 20133 }, [6134] = { name = "Vaporeon", shiny = "Shiny Vaporeon", cardId = 20134 }, [6135] = { name = "Jolteon", shiny = "Shiny Jolteon", cardId = 20135 }, [6136] = { name = "Flareon", shiny = "Shiny Flareon", cardId = 20136 }, [6137] = { name = "Porygon", shiny = "Shiny Porygon", cardId = 20137 }, [6138] = { name = "Omanyte", shiny = "Shiny Omanyte", cardId = 20138 }, [6139] = { name = "Omastar", shiny = "Shiny Omastar", cardId = 20139 }, [6140] = { name = "Kabuto", shiny = "Shiny Kabuto", cardId = 20140 }, [6141] = { name = "Kabutops", shiny = "Shiny Kabutops", cardId = 20141 }, [6142] = { name = "Aerodactyl", shiny = "Shiny Aerodactyl", cardId = 20142 }, [6143] = { name = "Snorlax", shiny = "Shiny Snorlax", cardId = 20143 }, [6144] = { name = "Articuno", shiny = "Shiny Articuno", cardId = 20144 }, [6145] = { name = "Zapdos", shiny = "Shiny Zapdos", cardId = 20145 }, [6146] = { name = "Moltres", shiny = "Shiny Moltres", cardId = 20146 }, [6147] = { name = "Dratini", shiny = "Shiny Dratini", cardId = 20147 }, [6148] = { name = "Dragonair", shiny = "Shiny Dragonair", cardId = 20148 }, [6149] = { name = "Dragonite", shiny = "Shiny Dragonite", cardId = 20149 }, [6150] = { name = "Mewtwo", shiny = "Shiny Mewtwo", cardId = 20150 }, [6151] = { name = "Mew", shiny = "Shiny Mew", cardId = 20151 }, } for corpseId, data in pairs(SHINY_EVOLUTIONS) do local action = Action() function action.onUse(player, item, fromPosition, target, toPosition, isHotkey) if not target or not target:isItem() then player:sendCancelMessage("Você precisa usar isso em um corpo.") return true end local targetId = target:getId() if targetId ~= corpseId then player:sendCancelMessage("Esse card não funciona neste corpo.") return true end target:remove() local shiny = Game.createMonster(data.shiny, toPosition) if shiny then player:say("O " .. data.name .. " renasceu como um " .. data.shiny .. "!", TALKTYPE_MONSTER_SAY) else player:sendCancelMessage("Erro ao criar o " .. data.shiny) end item:remove(1) return true end action:id(data.cardId) action:register() end -
| LANÇAMENTO BRAZZINUM | NOVO CLIENT | MAJOR UPDATE MARÇO | | EVENTO 1 ANO DE PIXELOT | www.pixelot.com.br Tudo está preparado para receber vocês em nosso novo mundo! Estamos na reta final para o primeiro major update de março, com contagem regressiva e muita ansiedade para o grande lançamento. ✅ Criação de contas e personagens já disponível! ✅ Sistema Multi-World: Seus coins podem ser usados em ambos os mundos! ✅ Major Update + Cliente 14: Sexta-feira, 07/03. ✅ Lançamento do servidor Brazzinum: Quinta-feira, 13/03, às 20h. ✨ O que vem por aí? 🔹 Novas hunts para cobrir lacunas de level cap (Level 10k+). 🔹 Conteúdos inéditos e novas missões. 🔹 Nova classe inicial (Level 1000): Monk. 🔹 Sistema de profissões inovador. 🔹 Reformulação de preços da store e balanceamento da economia e dos loots. 🔹 Otimização do servidor, garantindo uma jogabilidade fluida e estável. 🔥 É o Brazzinum o mundo novo da galera ! 🔥
-
@ omnic tem crédito nenhum pra esse Daniel não inclusive é o mais pilantra por ter vazado um mapa que confiei a ele uma parceria pra abrir um ot, mas vou deixa um conselho pra vocês, não confie em ninguém neste mundo de ot serve, é um mais safado que o outro, eu ja fiz muita coisa errada mas sempre paguei pelo erros e sempre paguei pelo que devia agora esses caras parece que tão passando fome, nem eu que perdi minha casa com tudo dentro, como mostra no video do arquivo original do mapa, sou tão mizeravel.
-
-
🎉 É CONTAGEM REGRESSIVA! TODOS PRONTOS? 🚀 Amantes de Tibia, segurem-se porque a abertura do teste server está finalmente AQUI! Queremos compartilhar alguns detalhes cruciais com nossa incrível comunidade. Embora a data exata seja um mistério (shhh, contratos...streamers..!), estamos super animados para anunciar que já estamos ao vivo! 🌐 Queremos vocês a bordo, explorando, e nos dando aquele feedback valioso. Removemos praticamente todos as acessos, facilitando a participação de todos. LEMBRANDO Os acessos estão liberados, especialmente para vocês, nossos incríveis jogadores oficiais. Confiram nosso site: Pixelot Online 🌟 [Hidden Content] Participem do nosso Discord: Pixelot Discord 🎮 [Hidden Content] Estamos planejando recompensas ÉPICAS para aqueles que ajudarem a encontrar bugs e para os destemidos que conquistarem o top 10! 🏆 Principais Novidades 🚀: Upgrade System Incrível: Deixe seus itens ainda mais poderosos com diversos novos status! +20 Novos Bosses: Preparem-se para mecânicas de jogo SURPREENDENTES e desafios épicos! Vamos nessa, exploradores! Juntos, vamos tornar esse teste server incrível e preparar terreno para o lançamento oficial. Sejam os primeiros a desbravar as novidades e nos ajudem a criar a melhor experiência Tibiana! GOD Konan 🌟
- 1 resposta
-
- 71
-
-
-
-
-
-
[Hidden Content]
- 7 respostas
-
- 39
-
-
-
-
-
-
se puder me manda o link do scan
-
[Hidden Content] pra quem tiver com dificuldade
- 7 respostas
-
- 119
-
-
-
-
-
-
Bom galera, trago para vocês as sprites do Grand Line Adventure, muitas pessoas no meu grupo ( [Hidden Content] ) de devs estão pedido então resolvi fazer a boa.
- 7 respostas
-
- 261
-
-
-
-
-
-
Ferramente essencial para a instalação do object builder scan: [Hidden Content] AdobeAIRInstaller.exe
-
Melhor Base Poketibia Para Fazer Um Projeto Do 0 Com Source!
lippe respondeu ao tópico de Bolinha em Suporte C++, LUA E etc
entendi nem foi por maldade ou duvidando não, é porque é a primeira pessoa que vi falando desses bugs e nunca vi provas do mesmo -
Melhor Base Poketibia Para Fazer Um Projeto Do 0 Com Source!
lippe respondeu ao tópico de Bolinha em Suporte C++, LUA E etc
Você citou diversos bugs que nunca ouvi falar no pota, queria saber se você tem provas de pelo menos metade dos bugs que você citou ?
×
- Criar Novo...
