-
Total de itens
267 -
Registro em
-
Última visita
-
Dias Ganhos
3
Tudo que KaboFlow29 postou
-
[Tutorial] Criando Site para seu Ot Server com vertrigo
tópico respondeu ao VanWilder de KaboFlow29 em Tutoriais para Iniciantes
A Database Error Occurred Error Number: 1146 Table 'pokexmex.news' doesn't exist SELECT * FROM (`news`) ORDER BY `id` desc LIMIT 10 -
Price System - Pokemons (PDA by Slicer)
tópico respondeu ao Noninhouh de KaboFlow29 em Tutoriais para Iniciantes
Nao -.- teno afff function onLook(cid, thing, position, lookDistance) local str = "" if not isPokeball(thing.itemid) then if priceList[getItemInfo(thing.itemid).name] then price = priceList[getItemInfo(thing.itemid).name].price if thing.type > 1 then str = "You see "..thing.type.." "..getItemInfo(thing.itemid).plural.."." price = price * thing.type else str = "You see "..getItemInfo(thing.itemid).article.." "..getItemInfo(thing.itemid).name.."." end str = str.." Price: $"..price.."." if getItemAttribute(thing.uid, "description") then str = str.."\n"..getItemAttribute(thing.uid, "description").."." end if getPlayerGroupId(cid) >= 4 and getPlayerGroupId(cid) <= 6 then str = str.."\nItemID: ["..thing.itemid.."]." --alterado v1.7 local pos = getThingPos(thing.uid) str = str.."\nPosition: [X: "..pos.x.."][Y: "..pos.y.."][Z: "..pos.z.."]" end doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, str) return false end end if not isCreature(thing.uid) then local iname = getItemInfo(thing.itemid) if isPokeball(thing.itemid) then unLock(thing.uid) local lock = getItemAttribute(thing.uid, "lock") --alterado v1.8 local pokename = getItemAttribute(thing.uid, "poke") local item = getItemInfo(thing.itemid) str = "You see "..item.article.." "..item.name.."." if getItemAttribute(thing.uid, "unique") then --alterado v1.8 str = str.." It's an unique item." end str = str.."\nIt contains "..getArticle(pokename).." "..pokename..".\n" --alterado v1.6 if lock and lock > 0 then str = str.."It will unlock in ".. os.date("%d/%m/%y %X", lock)..".\n" --alterado v1.8 end local boost = getItemAttribute(thing.uid, "boost") or 0 if boost > 0 then str = str.."Boost level: +"..boost..".\n" end if getItemAttribute(thing.uid, "nick") then str = str.."It's nickname is: "..getItemAttribute(thing.uid, "nick")..".\n" end doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, str) return false elseif string.find(iname.name, "fainted") or string.find(iname.name, "defeated") then --corpses str = "You see a "..string.lower(iname.name)..". " --alterado v1.8 \/ if isContainer(thing.uid) then str = str.."(Vol: "..getContainerCap(thing.uid)..")" end str = str.."\n" doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, str) return false elseif isContainer(thing.uid) then --containers local info = getItemInfo(thing.itemid) --alterado v1.7 if info.name == "dead human" and getItemAttribute(thing.uid, "pName") then str = "You see a dead human (Vol:"..getContainerCap(thing.uid).."). " str = str.."You recognize ".. getItemAttribute(thing.uid, "pName")..". ".. getItemAttribute(thing.uid, "article").." was killed by a " str = str.."".. getItemAttribute(thing.uid, "attacker").."." else str = "You see "..info.article.." "..info.name..". (Vol:"..getContainerCap(thing.uid)..")." end if getPlayerGroupId(cid) >= 4 and getPlayerGroupId(cid) <= 6 then str = str.."\nItemID: ["..thing.itemid.."]" --alterado v1.8 local pos = getThingPos(thing.uid) str = str.."\nPosition: [X: "..pos.x.."][Y: "..pos.y.."][Z: "..pos.z.."]" --alterado v1.8 end doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, str) return false elseif getItemAttribute(thing.uid, "unique") then --alterado v1.8 \/ local info = getItemInfo(thing.itemid) local p = getThingPos(thing.uid) local str = "You see " if thing.type > 0 then str = str..thing.type.." "..info.plural.."." else str = str..info.article.." "..info.name.."." end str = str.." It's an unique item.\n" str = str..info.description.."\nItemID: ["..thing.itemid.."]" str = str.."\nPosition: ["..p.x.."]["..p.y.."]["..p.z.."]" sendMsgToPlayer(cid, MESSAGE_INFO_DESCR, str) return false else return true end end local NPCBattle = { ["Brock"] = {artig = "He is", cidbat = "Pewter"}, ["Misty"] = {artig = "She is", cidbat = "Cerulean"}, ["Blaine"] = {artig = "He is", cidbat = "Cinnabar"}, ["Sabrina"] = {artig = "She is", cidbat = "Saffron"}, --alterado v1.7 ["Kira"] = {artig = "She is", cidbat = "Viridian"}, ["Koga"] = {artig = "He is", cidbat = "Fushcia"}, ["Erika"] = {artig = "She is", cidbat = "Celadon"}, ["Surge"] = {artig = "He is", cidbat = "Vermilion"}, } local npcname = getCreatureName(thing.uid) if ehNPC(thing.uid) and NPCBattle[npcname] then --npcs duel str = "You see "..npcname..". "..NPCBattle[npcname].artig.." leader of the gym from "..NPCBattle[npcname].cidbat.."." --alterado v1.7 doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, str) return false elseif ehNPC(thing.uid) and getPlayerStorageValue(thing.uid, 697548) ~= -1 then --npcs de TV local str = getPlayerStorageValue(thing.uid, 697548) --alterado v1.7 local pos = getThingPos(thing.uid) str = youAre[getPlayerGroupId(cid)] and str.."\nPosition: [X: "..pos.x.."][Y: "..pos.y.."][Z: "..pos.z.."]" or str doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, str) return false end if not isPlayer(thing.uid) and not isMonster(thing.uid) then --outros npcs str = "You see "..getCreatureName(thing.uid).."." doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, str) return false end if isPlayer(thing.uid) then --player doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, getPlayerDesc(cid, thing.uid, false)) --alterado v1.7 return false end if getCreatureName(thing.uid) == "Evolution" then return false end if not isSummon(thing.uid) then --monstros local str = "You see a "..string.lower(getCreatureName(thing.uid))..".\n" doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, str) return false elseif isSummon(thing.uid) and not isPlayer(thing.uid) then --summons local boostlevel = getItemAttribute(getPlayerSlotItem(getCreatureMaster(thing.uid), 8).uid, "boost") or 0 if getCreatureMaster(thing.uid) == cid then local myball = getPlayerSlotItem(cid, 8).uid local string = "You see your "..string.lower(getCreatureName(thing.uid)).."." if boostlevel > 0 then string = string.."\nBoost level: +"..boostlevel.."." end string = string.."\nHit points: "..getCreatureHealth(thing.uid).."/"..getCreatureMaxHealth(thing.uid).."." string = string.."\n"..getPokemonHappinessDescription(thing.uid) doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, string) else doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You see a "..string.lower(getCreatureName(thing.uid))..".\nIt belongs to "..getCreatureName(getCreatureMaster(thing.uid))..".") end return false end return true end- 14 respostas
-
- price system
- pda
-
(e 1 mais)
Tags:
-
Eu Kero Saver Como Adicionar Cd? Deu Attake Como Ele m1 e m12 Para Pokes Tipo Pokemon Centurion,,,Or Paventures... Help..
-
Reformulaçao Do Level Das Magias e Level Dos Pokemons
tópico respondeu ao FlamesAdmin de KaboFlow29 em Ferramentas
booom men sou que charizard eu venusaur eu blastoise ele lvl 85 :S -
lib [Encerrado] Herro Na Consola Plis Help
tópico respondeu ao KaboFlow29 de KaboFlow29 em Tópicos Sem Resposta
ok gracias help ajudeme pliss -
lib [Encerrado] Herro Na Consola Plis Help
um tópico no fórum postou KaboFlow29 Tópicos Sem Resposta
[24/11/2013 12:41:01] [Error - LuaScriptInterface::loadFile] data/lib/configuration.lua:9275: '}' expected (to close '{' at line 8505) near 'newpokedex' [24/11/2013 12:41:01] [Warning - LuaScriptInterface::initState] Cannot load data/lib/ [24/11/2013 12:41:02] [Error - LuaScriptInterface::loadFile] data/lib/configuration.lua:9275: '}' expected (to close '{' at line 8505) near 'newpokedex' [24/11/2013 12:41:02] [Warning - LuaScriptInterface::initState] Cannot load data/lib/ Configuration.lib Help Pliss http://www.mediafire...nfiguration.rar -
sistema [Encerrado] Error Na Consolaa Help
tópico respondeu ao KaboFlow29 de KaboFlow29 em Tópicos Sem Resposta
ok mano aqui mi lua-..... http://www.mediafire.com/download/qi1q65pdxj5ciez/configuration.rar Help Plisss Stylo Maldoso Or Slicer Help... -
sistema [Encerrado] Error Na Consolaa Help
um tópico no fórum postou KaboFlow29 Tópicos Sem Resposta
[24/11/2013 12:41:01] [Warning - Actions::registerEvent] Duplicate registered item id: 14058 [24/11/2013 12:41:01] [Error - LuaScriptInterface::loadFile] data/lib/configuration.lua:9275: '}' expected (to close '{' at line 8505) near 'newpokedex' [24/11/2013 12:41:01] [Warning - LuaScriptInterface::initState] Cannot load data/lib/ [24/11/2013 12:41:02] [Error - LuaScriptInterface::loadFile] data/lib/configuration.lua:9275: '}' expected (to close '{' at line 8505) near 'newpokedex' [24/11/2013 12:41:02] [Warning - LuaScriptInterface::initState] Cannot load data/lib/ [24/11/2013 12:41:02] [Error - LuaScriptInterface::loadFile] cannot open data/movements/scripts/PVP/Tile_Pz.lua: No such file or directory [24/11/2013 12:41:02] [Warning - Event::loadScript] Cannot load script (data/movements/scripts/PVP/Tile_Pz.lua) [24/11/2013 12:41:02] cannot open data/movements/scripts/PVP/Tile_Pz.lua: No such file or directory [24/11/2013 12:41:03] [Error - LuaScriptInterface::loadFile] data/lib/configuration.lua:9275: '}' expected (to close '{' at line 8505) near 'newpokedex' [24/11/2013 12:41:03] [Warning - LuaScriptInterface::initState] Cannot load data/lib/ -
Outland completa para POKÉMON - Ilhas para POKÉMON
tópico respondeu ao murluka de KaboFlow29 em Mapas
mano que base de datos???- 363 respostas
-
- outlands pxg
- detalhes pxg
- (e 3 mais)
-
[Show Off] Barra Skill - baseada na pxg
tópico respondeu ao Noninhouh de KaboFlow29 em Exposições (Show Off)
Vc Is Um Deus :3 -
eu me poste ele scripts nao me funciona
-
Pokemon XRain(PDA) -By malconte To con Eu Base :3 Fue Agregado.. Fighter Tower.. Puedes Enpesar De Nivel 50+ Para Terminar 100+ con poke+50 o 150+ sin pokes+50
-
eu nao level system, eu to editando mais thnks, New Pewter City,... New Viridian City..
-
Hola Gente Deu http://www.xtibia.com First Show Off,,, PVP Center,, Coliseum, Boost Machine, Master Ball Quest.. New Pewter City... New Viridian City.... Eu Posteare Mais Cosas Deu My Server..
-
Eu Meu Da Bug Nao Cliente
-
resolvido [Encerrado] Sexo dos pokemons
tópico respondeu ao tibiapk300 de KaboFlow29 em Tópicos Sem Resposta
eu usa programa Pic editor :3 -
[Encerrado] Respaw na frente do pokemon
tópico respondeu ao MaxxSilva de KaboFlow29 em Tópicos Sem Resposta
si bloker reespaw? -
resolvido [Encerrado] Script x defense e x attack
tópico respondeu ao MaxxSilva de KaboFlow29 em Tópicos Sem Resposta
sorte -
Outland completa para POKÉMON - Ilhas para POKÉMON
tópico respondeu ao murluka de KaboFlow29 em Mapas
eu murluka Base Deu Datos De StyloMaldoso. Con Iconos Nas Balls Pode Ser?? Boom Base Deu Datos,- 363 respostas
-
- outlands pxg
- detalhes pxg
- (e 3 mais)
-
Pokémon Mysterion [Dowload] !
tópico respondeu ao StyloMaldoso de KaboFlow29 em OTServer Alternativo (ATS)
Eu StyloMaldoso Nao Vai Postear Map?? Ele Map Tene Muito Bugs... Addon System? Eu Mais Systems? -
pedido Preciso De Background Deu Pokemon,
pergunta respondeu ao KaboFlow29 de KaboFlow29 em Dúvidas e Pedidos
Ty Mano Eu Pode Ser? Pokes Typo ..( Hitmontop? Hitmonlee Hitmonchan?? O Pokes Deu Drak?) -
fala ae galera eu aqui de novo pedindo pros design aqui do xtibia um grande pedido espero que ajudem... primeiro : uma capa para facebook com o nome Poke X Mex tamanho 850x315. segundo : uma foto de perfil pra página com o nome também PokeXMex.. Terceiro : um background no tamanho 1600x800 escrito PokeXMex o melhor servidor de todos os tempos. e por ultimo um imagem pro cliente proprio no tamanho 640x480 escrito Pokemon X Mex VALENDO 6 REP ESPERO QUE ME AJUDEM OS DESIGN AQUI DO XTIBIA
-
Pokémon Mysterion [Dowload] !
tópico respondeu ao StyloMaldoso de KaboFlow29 em OTServer Alternativo (ATS)
Booom Edit You Server♥ -
action [Encerrado] Quest Spells
tópico respondeu ao KaboFlow29 de KaboFlow29 em Tópicos Sem Resposta
pessoas ele que necessidade isto é um script de um Quest que em você faz um Spell.. people in need is a script from a search that performs a spell .. -
Olá amigos Eu preciso de um queijo soletra-lhe uma experiência i um item i I rep por favor me ajude...
-
Quem Está Navegando 0 membros estão online
- Nenhum usuário registrado visualizando esta página.