-
Total de itens
267 -
Registro em
-
Última visita
-
Dias Ganhos
3
Tudo que KaboFlow29 postou
-
Bom.. Coool
-
Error... [24/04/2013 00:10:41] [Error - LuaScriptInterface::loadFile] cannot open data/actions/scripts/default.lua: No such file or directory [24/04/2013 00:10:41] [Warning - Event::loadScript] Cannot load script (data/actions/scripts/default.lua) [24/04/2013 00:10:41] cannot open data/actions/scripts/default.lua: No such file or directory [24/04/2013 00:10:41] [Warning - Actions::registerEvent] Duplicate registered item uid: 5015 [24/04/2013 00:10:45] [Warning - Event::loadScript] Event onTimer not found (data/globalevents/scripts/tournament.lua) [24/04/2013 00:10:45] [Warning - Event::loadScript] Event onTimer not found (data/globalevents/scripts/tournament1.lua) [24/04/2013 00:10:45] [Warning - Event::loadScript] Event onTimer not found (data/globalevents/scripts/tournament2.lua) [24/04/2013 00:10:45] [Warning - Event::loadScript] Event onTimer not found (data/globalevents/scripts/tournament3.lua) [24/04/2013 00:10:45] [Warning - Event::loadScript] Event onTimer not found (data/globalevents/scripts/tournament4.lua) [24/04/2013 00:10:45] [Warning - Event::loadScript] Event onTimer not found (data/globalevents/scripts/tournament5.lua) [24/04/2013 00:10:45] [Warning - Event::loadScript] Event onTimer not found (data/globalevents/scripts/tournament6.lua) [24/04/2013 00:10:45] [Warning - Event::loadScript] Event onTimer not found (data/globalevents/scripts/tournament7.lua) [24/04/2013 00:10:45] [Warning - Event::loadScript] Event onTimer not found (data/globalevents/scripts/tournament8.lua) [24/04/2013 00:10:45] [Warning - Event::loadScript] Event onTimer not found (data/globalevents/scripts/tournament9.lua) [24/04/2013 00:10:45] [Warning - Event::loadScript] Event onTimer not found (data/globalevents/scripts/tournament10.lua)
-
as schedules do not put my plus 1?
-
Ancioso para modificaçoes Outland Main Quest
-
[Encerrado] [ajuda] Por favor alguem me ajuda
tópico respondeu ao KaboFlow29 de KaboFlow29 em Tópicos Sem Resposta
Ta Dando Bug Mano Bug -
[Encerrado] Pedido] Alguém têm o system de price da pxg?
tópico respondeu ao josegremista de KaboFlow29 em Tópicos Sem Resposta
Price System.. Look.lua.. PriceList Nao Funciona ele System Exemlplo... -
Price System.. Look.lua.. PriceList Nao Funciona ele System Exemlplo...
-
[Encerrado] [ajuda] Por favor alguem me ajuda
tópico respondeu ao KaboFlow29 de KaboFlow29 em Tópicos Sem Resposta
ele server e PDA V1.8_f Creditos - Slicer, Stylo Maldoso KarlKalvin Ty Mano Sanao E Bug Eu Master Ball Nao Taba Adicionada.. mano bug -
[Encerrado] Ajuda Master Ball Nao Catch
tópico respondeu ao KaboFlow29 de KaboFlow29 em Tópicos Sem Resposta
ty mano -
scripts / catch _____________________________________ local ballcatch = { [2394] = {cr = 3, on = 24, off = 23, ball = 11826, send = 47, typeee = "normal"}, [2391] = {cr = 6, on = 198, off = 197, ball = 11832, send = 48, typeee = "great"}, [2393] = {cr = 10, on = 202, off = 201, ball = 11835, send = 46, typeee = "super"}, [2392] = {cr = 15, on = 200, off = 199, ball = 11829, send = 49, typeee = "ultra"}, [12924] = {cr = 10, on = 200, off = 199, ball = 12923, send = 49, typeee = "master"}, } function onUse(cid, item, frompos, item3, topos) local item2 = getTopCorpse(topos) if item2 == null then return true end if getItemAttribute(item2.uid, "catching") == 1 then return true end if getItemAttribute(item2.uid, "golden") and getItemAttribute(item2.uid, "golden") == 1 then return doPlayerSendCancel(cid, "You can't try to catch a pokemon in the Golden Arena!") --alterado v1.6 end local name = string.lower(getItemNameById(item2.itemid)) name = string.gsub(name, "fainted ", "") name = string.gsub(name, "defeated ", "") local x = pokecatches[doCorrectPokemonName(name)] -------------------------------------------------------------------------------- local storage = newpokedex[doCorrectPokemonName(name)].stoCatch --edited brokes count system if getPlayerStorageValue(cid, storage) == -1 then setPlayerStorageValue(cid, storage, "normal = 0, great = 0, super = 0, ultra = 0, saffari = 0, master = 0 ") end -------------------------------------------------------------------------------- if not x then return true end local owner = getItemAttribute(item2.uid, "corpseowner") if owner and isCreature(owner) and isPlayer(owner) and cid ~= owner then --alterado v1.5 doPlayerSendCancel(cid, "You are not allowed to catch this pokemon.") return true end ----------------------------------------------------- newidd = ballcatch[item.itemid].ball typeee = ballcatch[item.itemid].typeee ----------------------------------------------------- local catchinfo = {} catchinfo.rate = ballcatch[item.itemid].cr catchinfo.catch = ballcatch[item.itemid].on catchinfo.fail = ballcatch[item.itemid].off catchinfo.newid = newidd catchinfo.name = doCorrectPokemonName(name) catchinfo.topos = topos catchinfo.chance = x.chance doSendDistanceShoot(getThingPos(cid), topos, ballcatch[item.itemid].send) doRemoveItem(item.uid, 1) local d = getDistanceBetween(getThingPos(cid), topos) ------------------------ --id da saffari if getPlayerStorageValue(cid, 98796) >= 1 and getPlayerItemCount(cid, 2391) <= 0 then setPlayerStorageValue(cid, 98796, -1) setPlayerStorageValue(cid, 98797, -1) --alterado v1.8 doTeleportThing(cid, SafariOut, false) doSendMagicEffect(getThingPos(cid), 21) doPlayerSendTextMessage(cid, 27, "You spend all your 'saffari balls', good luck in the next time...") end ------------------------- addEvent(doSendPokeBall, d * 70 + 100 - (d * 14) , cid, catchinfo, false, false, typeee) --edited brokes count system addEvent(doSendMagicEffect, (d * 70 + 100 - (d * 14)) - 100, topos, 3) return true end ______________________________________________________________________________________ lib / configuration pokeballs = { ["normal"] = {effect = 188, on = 11826, use = 11827, off = 11828, all = {11826, 11827, 11828}}, ["ultra"] = {effect = 191, on = 11829, use = 11830, off = 11831, all = {11829, 11830, 11831}}, ["super"] = {effect = 190, on = 11835, use = 11836, off = 11837, all = {11835, 11836, 11837}}, ["great"] = {effect = 189, on = 11832, use = 11833, off = 11834, all = {11832, 11833, 11834}}, ["master"] = {effect = 196, on = 12923, use = 12925, off = 12922, all = {12923, 12925, 12922}}, ["shinynormal"] = {effect = 188, on = 11737, use = 11738, off = 11739, all = {11737, 11738, 11739}}, ["shinygreat"] = {effect = 189, on = 11740, use = 11741, off = 11742, all = {11740, 11741, 11742}}, ["shinysuper"] = {effect = 190, on = 11743, use = 11744, off = 11745, all = {11743, 11744, 11745}}, ["shinyultra"] = {effect = 191, on = 11746, use = 11747, off = 11748, all = {11746, 11747, 11748}}, ["shinymaster"] = {effect = 196, on = 12923, use = 12925, off = 12922, all = {12923, 12925, 12922}}, }
-
como você faz para os pokemon não pedir este alimento felis i sempre limitPokeballs = 6 -- deprecated happyDropTime = 30 -- a cada "happyDropTime" segundos o pokemon vai perder HAPPINESS minHappinessEffectDelay = 25 -- a cada min de "happinessEffectDelay" segundos o pokemon vai mostrar a felicidade maxHappinessEffectDelay = 40 -- a cada min de "happinessEffectDelay" segundos o pokemon vai mostrar a felicidade PokemonStageVeryHappy = 215 -- com quanto de happy o poke precisa pra estar muito feliz PokemonStageHappy = 160 -- ... pra estar feliz PokemonStageOK = 110 -- ... pra estar normal PokemonStageSad = 50 -- ... pra estar triste PokemonStageMad = 0 -- ... pra estar bravo maximumHunger = 120 -- maior fome possivel stateHunger = 100 -- 19estagio que precisa estar pra ficar com fome increaseHunger = 7 -- a cada X segundos (xml do monstro) aumenta o hunger em "increaseHunger" decreaseHappy = 1 -- HAPPINESS que o pokemon vai perder a cada "happyDropTime" decreaseHungryHappy = 4 -- 3HAPPINESS a mais que o pokemon vai perder se estiver com fome useTeleportWithFly = false dropHappyDuringBattles = false -- HAPPINESS vai cair enquanto estiver batalhando ? true / false
-
[Encerrado] [ajuda] Por favor alguem me ajuda
tópico respondeu ao KaboFlow29 de KaboFlow29 em Tópicos Sem Resposta
scripts deu Nurse local pokeballs = { [1] = {effect = 188, on = 11826, use = 11827, off = 11828, all = {11826, 11827, 11828}}, [2] = {effect = 191, on = 11829, use = 11830, off = 11831, all = {11829, 11830, 11831}}, [3] = {effect = 190, on = 11835, use = 11836, off = 11837, all = {11835, 11836, 11837}}, [4] = {effect = 189, on = 11832, use = 11833, off = 11834, all = {11832, 11833, 11834}}, [5] = {effect = 188, on = 11737, use = 11738, off = 11739, all = {11737, 11738, 11739}}, [6] = {effect = 189, on = 11740, use = 11741, off = 11742, all = {11740, 11741, 11742}}, [7] = {effect = 190, on = 11743, use = 11744, off = 11745, all = {11743, 11744, 11745}}, [8] = {effect = 191, on = 11746, use = 11747, off = 11748, all = {11746, 11747, 11748}}, } --alterado v1.7 \/\/ local posis = { --[storage da city] = {pos da nurse na city}, [897529] = {x = 1060, y = 904, z = 7}, --cerulean [897530] = {x = 1049, y = 1072, z = 6}, --saffron [897531] = {x = 1204, y = 1042, z = 7}, --lavender [897532] = {x = 900, y = 1014, z = 6}, --celadon [897533] = {x = 724, y = 853, z = 6}, --pewter [897534] = {x = 706, y = 1085, z = 7}, --viridian [897535] = {x = 1074, y = 1234, z = 6}, --vermilion [897536] = {x = 1215, y = 1326, z = 7}, --fuchsia [897537] = {x = 849, y = 1396, z = 6}, --cinnabar [897538] = {x = 1431, y = 1600, z = 6}, --snow [897539] = {x = 1361, y = 1007, z = 7}, --Golden [897540] = {x = 778, y = 1814, z = 7}, --Hamlin [897541] = {x = 1194, y = 1871, z = 6}, --Butwall [897542] = {x = 831, y = 2234, z = 7}, --Shamouti [897543] = {x = 1868, y = 2632, z = 6}, --Murcott [897544] = {x = 1440, y = 967, z = 10}, --Outland North [897545] = {x = 513, y = 2469, z = 10}, --Outland East [897547] = {x = 331, y = 1585, z = 14}, --Outland South } function onThingMove(creature, thing, oldpos, oldstackpos) end function onCreatureAppear(creature) end function onCreatureDisappear(cid, pos) if focus == cid then selfSay('Good bye sir!') focus = 0 talk_start = 0 end end function onCreatureTurn(creature) end function msgcontains(txt, str) return (string.find(txt, str) and not string.find(txt, '(%w+)' .. str) and not string.find(txt, str .. '(%w+)')) end function onCreatureSay(cid, type, msg) local msg = string.lower(msg) local talkUser = NPCHANDLER_CONVBEHAVIOR == CONVERSATION_DEFAULT and 0 or cid for a, b in pairs(gobackmsgs) do local gm = string.gsub(b.go, "doka!", "") local bm = string.gsub(b.back, "doka!", "") if string.find(string.lower(msg), string.lower(gm)) or string.find(string.lower(msg), string.lower(bm)) then return true end end if((msgcontains(msg, 'hi') or msgcontains(msg, 'heal') or msgcontains(msg, 'help')) and (getDistanceToCreature(cid) <= 3)) then if exhaustion.get(cid, 9211) then selfSay('Please wait a few moment before asking me to heal your pokemons again!') return true end if not getTileInfo(getThingPos(cid)).protection and nurseHealsOnlyInPZ then selfSay("Please, get inside the pokémon center to heal your pokemons!") return true end if getPlayerStorageValue(cid, 52480) >= 1 then selfSay("You can't do that while in a Duel!") --alterado v1.6.1 return true end for e, f in pairs(posis) do local pos = getThingPos(getNpcCid()) if pos.x == f.x and pos.y == f.y and pos.z == f.z then if getPlayerStorageValue(cid, e) <= -1 then --alterado v1.7 setPlayerStorageValue(cid, e, 1) end end end exhaustion.set(cid, 9211, 5) doCreatureAddHealth(cid, getCreatureMaxHealth(cid)-getCreatureHealth(cid)) doCureStatus(cid, "all", true) doSendMagicEffect(getThingPos(cid), 132) local mypb = getPlayerSlotItem(cid, 8) if #getCreatureSummons(cid) >= 1 then if not nurseHealsPokemonOut then selfSay("Please, return your pokemon to his ball!") return true end local s = getCreatureSummons(cid)[1] doCreatureAddHealth(s, getCreatureMaxHealth(s)) doSendMagicEffect(getThingPos(s), 13) doCureStatus(s, "all", false) if getPlayerStorageValue(s, 1008) < baseNurseryHappiness then setPlayerStorageValue(s, 1008, baseNurseryHappiness) end if getPlayerStorageValue(s, 1009) > baseNurseryHunger then setPlayerStorageValue(s, 1009, baseNurseryHunger) end else if mypb.itemid ~= 0 and isPokeball(mypb.itemid) then --alterado v1.3 doItemSetAttribute(mypb.uid, "hp", 1) if getItemAttribute(mypb.uid, "hunger") and getItemAttribute(mypb.uid, "hunger") > baseNurseryHunger then doItemSetAttribute(mypb.uid, "hunger", baseNurseryHunger) end for c = 1, 15 do local str = "move"..c setCD(mypb.uid, str, 0) end if getItemAttribute(mypb.uid, "happy") and getItemAttribute(mypb.uid, "happy") < baseNurseryHappiness then doItemSetAttribute(mypb.uid, "happy", baseNurseryHappiness) end if getPlayerStorageValue(cid, 17000) <= 0 and getPlayerStorageValue(cid, 17001) <= 0 and getPlayerStorageValue(cid, 63215) <= 0 then for a, b in pairs (pokeballs) do if isInArray(b.all, mypb.itemid) then doTransformItem(mypb.uid, b.on) end end end end end local bp = getPlayerSlotItem(cid, CONST_SLOT_BACKPACK) for balls = 1, 8 do --editar a qntdade de balls da tabela ali decima... for times = 1, 3 do local items = getItemsInContainerById(bp.uid, pokeballs[balls].all[times]) if #items >= 1 then for _, uid in pairs(items) do doItemSetAttribute(uid, "hp", 1) doTransformItem(uid, pokeballs[balls].on) for c = 1, 15 do local str = "move"..c setCD(uid, str, 0) --alterado v1.3 end if getItemAttribute(uid, "hunger") and getItemAttribute(uid, "hunger") > baseNurseryHunger then doItemSetAttribute(uid, "hunger", baseNurseryHunger) end if getItemAttribute(uid, "happy") and getItemAttribute(uid, "happy") < baseNurseryHappiness then doItemSetAttribute(uid, "happy", baseNurseryHappiness) end end end end endselfSay('Olá! Nós recuperamos toda a vida de seu Pokemon. Esperamos vê-lo novamente em breve!') if useKpdoDlls then --alterado v1.7 doUpdateMoves(cid) end end end -
[Encerrado] [ajuda] Por favor alguem me ajuda
um tópico no fórum postou KaboFlow29 Tópicos Sem Resposta
Ajuda Teno Bug E Heal Me Pode Ajudar ?? [15/04/2013 22:29:10] [Error - Npc interface] [15/04/2013 22:29:10] data/npc/scripts/heal.lua:onCreatureSay [15/04/2013 22:29:10] Description: [15/04/2013 22:29:10] data/lib/034-exhaustion.lua:127: bad argument #1 to 'time' (table expected, got number) [15/04/2013 22:29:10] stack traceback: [15/04/2013 22:29:10] [C]: in function 'time' [15/04/2013 22:29:10] data/lib/034-exhaustion.lua:127: in function 'get' [15/04/2013 22:29:10] data/npc/scripts/heal.lua:69: in function <data/npc/scripts/heal.lua:55> -
eu bo postear Download ________________________________________ Cliente Super Nuevo... http://www.mediafire.com/?ltw4qrey0v1e0kj ________________________________________ Client Propio.. http://www.mediafire.com/?weppr7w7kbrxwn7 ________________________________________
-
Ajuda Teno Bug E Heal Me Pode Ajudar ?? [15/04/2013 22:29:10] [Error - Npc interface] [15/04/2013 22:29:10] data/npc/scripts/heal.lua:onCreatureSay [15/04/2013 22:29:10] Description: [15/04/2013 22:29:10] data/lib/034-exhaustion.lua:127: bad argument #1 to 'time' (table expected, got number) [15/04/2013 22:29:10] stack traceback: [15/04/2013 22:29:10] [C]: in function 'time' [15/04/2013 22:29:10] data/lib/034-exhaustion.lua:127: in function 'get' [15/04/2013 22:29:10] data/npc/scripts/heal.lua:69: in function <data/npc/scripts/heal.lua:55>
-
[Encerrado] como coloco a runa do meu ot pra healar mais rapido
tópico respondeu ao fakewar de KaboFlow29 em Tópicos Sem Resposta
Ajuda Teno Bug E Heal Me Pode Ajudar ?? [15/04/2013 22:29:10] [Error - Npc interface] [15/04/2013 22:29:10] data/npc/scripts/heal.lua:onCreatureSay [15/04/2013 22:29:10] Description: [15/04/2013 22:29:10] data/lib/034-exhaustion.lua:127: bad argument #1 to 'time' (table expected, got number) [15/04/2013 22:29:10] stack traceback: [15/04/2013 22:29:10] [C]: in function 'time' [15/04/2013 22:29:10] data/lib/034-exhaustion.lua:127: in function 'get' [15/04/2013 22:29:10] data/npc/scripts/heal.lua:69: in function <data/npc/scripts/heal.lua:55> -
Ajuda Teno Bug E Heal Me Pode Ajudar ?? [15/04/2013 22:29:10] [Error - Npc interface] [15/04/2013 22:29:10] data/npc/scripts/heal.lua:onCreatureSay [15/04/2013 22:29:10] Description: [15/04/2013 22:29:10] data/lib/034-exhaustion.lua:127: bad argument #1 to 'time' (table expected, got number) [15/04/2013 22:29:10] stack traceback: [15/04/2013 22:29:10] [C]: in function 'time' [15/04/2013 22:29:10] data/lib/034-exhaustion.lua:127: in function 'get' [15/04/2013 22:29:10] data/npc/scripts/heal.lua:69: in function <data/npc/scripts/heal.lua:55>
- 5 respostas
-
- bug - poketibia
- resolvido
-
(e 1 mais)
Tags:
-
Ajuda Teno Bug E Heal Me Pode Ajudar ?? [15/04/2013 22:29:10] [Error - Npc interface] [15/04/2013 22:29:10] data/npc/scripts/heal.lua:onCreatureSay [15/04/2013 22:29:10] Description: [15/04/2013 22:29:10] data/lib/034-exhaustion.lua:127: bad argument #1 to 'time' (table expected, got number) [15/04/2013 22:29:10] stack traceback: [15/04/2013 22:29:10] [C]: in function 'time' [15/04/2013 22:29:10] data/lib/034-exhaustion.lua:127: in function 'get' [15/04/2013 22:29:10] data/npc/scripts/heal.lua:69: in function <data/npc/scripts/heal.lua:55>
-
otClient - baseado na da PxG
tópico respondeu ao StyloMaldoso de KaboFlow29 em Exposições (Show Off)
StyloMaldoso Meu Pode Ajudar Con Meu Bug ?? [15/04/2013 22:29:10] [Error - Npc interface] [15/04/2013 22:29:10] data/npc/scripts/heal.lua:onCreatureSay [15/04/2013 22:29:10] Description: [15/04/2013 22:29:10] data/lib/034-exhaustion.lua:127: bad argument #1 to 'time' (table expected, got number) [15/04/2013 22:29:10] stack traceback: [15/04/2013 22:29:10] [C]: in function 'time' [15/04/2013 22:29:10] data/lib/034-exhaustion.lua:127: in function 'get' [15/04/2013 22:29:10] data/npc/scripts/heal.lua:69: in function <data/npc/scripts/heal.lua:55> -
poketibia Ajuda Como mudar o cliente de login otclient Poketibia
pergunta respondeu ao enriquedk de KaboFlow29 em Clients
Slicer Me Ajudo Muto Gz Mano LoveYou♥ -
otClient - baseado na da PxG
tópico respondeu ao StyloMaldoso de KaboFlow29 em Exposições (Show Off)
cute cute, você coloca, baixar ..Exp... -
Gzzz Stylo melhor e meu servidor questt outland, outland mainn questt, Giovani Kill, Master Quest Ball, Muito Mais Vou colocar um novo vídeo com tudo o que eu espero que eu gostaria que se eles gostam que eu quero ajudar a enviar pm ..
-
_________________!New Update!_________________ •Outland Zone •Expecial Zone De Shinys Nuevos.. ________________________________________ •Npc Agatha Quest •Npc Chuck Norris •Npc aHunterWingeon •Npc Tracey •Npc aNpcCasino ________________________________________ •Systems Bug Removido Hitmontop Nao Mais Master Ball.. Download
-
@Slicer Mano Ajuda Eu Teno PDA 1.9V Eu Tene Error In Heal chansey nao da heal Nurse Joy nao da heal error eu Lua... podeme ajudar
-
Amigo o link não esta funcional...
-
Quem Está Navegando 0 membros estão online
- Nenhum usuário registrado visualizando esta página.