Ir para conteúdo

KaboFlow29

Visconde
  • Total de itens

    267
  • Registro em

  • Última visita

  • Dias Ganhos

    3

Tudo que KaboFlow29 postou

  1. A Database Error Occurred Error Number: 1146 Table 'pokexmex.news' doesn't exist SELECT * FROM (`news`) ORDER BY `id` desc LIMIT 10
  2. 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
  3. Eu Kero Saver Como Adicionar Cd? Deu Attake Como Ele m1 e m12 Para Pokes Tipo Pokemon Centurion,,,Or Paventures... Help..
  4. booom men sou que charizard eu venusaur eu blastoise ele lvl 85 :S
  5. ok gracias help ajudeme pliss
  6. [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
  7. ok mano aqui mi lua-..... http://www.mediafire.com/download/qi1q65pdxj5ciez/configuration.rar Help Plisss Stylo Maldoso Or Slicer Help...
  8. [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/
  9. eu me poste ele scripts nao me funciona
  10. 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
  11. eu nao level system, eu to editando mais thnks, New Pewter City,... New Viridian City..
  12. 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..
  13. Eu Meu Da Bug Nao Cliente
  14. eu usa programa Pic editor :3
  15. eu murluka Base Deu Datos De StyloMaldoso. Con Iconos Nas Balls Pode Ser?? Boom Base Deu Datos,
  16. Eu StyloMaldoso Nao Vai Postear Map?? Ele Map Tene Muito Bugs... Addon System? Eu Mais Systems?
  17. Ty Mano Eu Pode Ser? Pokes Typo ..( Hitmontop? Hitmonlee Hitmonchan?? O Pokes Deu Drak?)
  18. 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
  19. Booom Edit You Server♥
  20. 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 ..
  21. 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.
×
×
  • Criar Novo...