Ir para conteúdo

KaboFlow

Visconde
  • Total de itens

    434
  • Registro em

  • Última visita

  • Dias Ganhos

    15

Tudo que KaboFlow postou

  1. misma exp 1500 to usando base d DXP
  2. ERROR: /game_pokemon/pokemon.lua:270: attempt to index a nil value Startup done :] ERROR: invalid thing type client id 622 in category 0 ERROR: protected lua call failed: LUA ERROR: /game_outfit/outfit.lua:96: attempt to call global 'getOutfitColor' (a nil value) stack traceback: [C]: in function 'getOutfitColor' /game_outfit/outfit.lua:96: in function </game_outfit/outfit.lua:48> agora ta com ete error ERROR: /game_pokemon/pokemon.lua:270: attempt to index a nil value Startup done :] ERROR: invalid thing type client id 622 in category 0
  3. mais qero qe meu server te x5 a exp ta x0
  4. ajuda to com mismo error local function playerAddExp(cid, exp) doPlayerAddExp(cid, exp) doSendAnimatedText(getThingPos(cid), exp, 215) end function onDeath(cid, corpse, deathList) --if not isCreature(cid) then return true end if isSummon(cid) or not deathList or getCreatureName(cid) == "Evolution" then return true end --alterado v1.8 local givenexp = getWildPokemonExp(cid) ---local killer = getItemAttribute(corpse.uid, "corpseowner") if givenexp > 0 then for a = 1, #deathList do local pk = deathList[a] --- local list = getSpectators(getThingPosWithDebug(pk), 30, 30, false) if isCreature(pk) then local expTotal = math.floor(givenexp * getDamageMapPercent(pk, cid)) local party = getPartyMembers(pk) if isInParty(pk) and getPlayerStorageValue(pk, 4875498) <= -1 then expTotal = math.floor(expTotal/#party) --alterado v1.6.1 for i = 1, #party do if isInArray(list, party[i]) then if getPlayerLevel(pk) <= 50 then playerAddExp(party[i], expTotal * 2000) elseif getPlayerLevel(pk) >= 51 and getPlayerLevel(pk) <= 75 then playerAddExp(party[i], expTotal * 1300) elseif getPlayerLevel(pk) >= 76 and getPlayerLevel(pk) <= 100 then playerAddExp(party[i], expTotal * 800) elseif getPlayerLevel(pk) >= 101 and getPlayerLevel(pk) <= 150 then playerAddExp(party[i], expTotal * 400) elseif getPlayerLevel(pk) >= 151 and getPlayerLevel(pk) <= 250 then playerAddExp(party[i], expTotal * 200) elseif getPlayerLevel(pk) >= 251 and getPlayerLevel(pk) <= 350 then playerAddExp(party[i], expTotal * 100) elseif getPlayerLevel(pk) >= 351 then playerAddExp(party[i], expTotal * 50) end end end elseif not isInParty(pk) then if getPlayerLevel(pk) <= 50 then playerAddExp(pk, math.floor(200 * givenexp * getDamageMapPercent(pk, cid))) elseif getPlayerLevel(pk) >= 51 and getPlayerLevel(pk) <= 75 then playerAddExp(pk, math.floor(130 * givenexp * getDamageMapPercent(pk, cid))) elseif getPlayerLevel(pk) >= 76 and getPlayerLevel(pk) <= 100 then playerAddExp(pk, math.floor(80 * givenexp * getDamageMapPercent(pk, cid))) elseif getPlayerLevel(pk) >= 101 and getPlayerLevel(pk) <= 150 then playerAddExp(pk, math.floor(40 * givenexp * getDamageMapPercent(pk, cid))) elseif getPlayerLevel(pk) >= 151 and getPlayerLevel(pk) <= 250 then playerAddExp(pk, math.floor(20 * givenexp * getDamageMapPercent(pk, cid))) elseif getPlayerLevel(pk) >= 251 and getPlayerLevel(pk) <= 350 then playerAddExp(pk, math.floor(10 * givenexp * getDamageMapPercent(pk, cid))) elseif getPlayerLevel(pk) >= 351 then playerAddExp(pk, math.floor(5 * givenexp * getDamageMapPercent(pk, cid))) return true end end end end end if isNpcSummon(cid) then local master = getCreatureMaster(cid) doSendMagicEffect(getThingPos(cid), getPlayerStorageValue(cid, 10000)) doCreatureSay(master, getPlayerStorageValue(cid, 10001), 1) doRemoveCreature(cid) return false end if corpse.itemid ~= 0 then --alterado v1.8 doItemSetAttribute(corpse.uid, "level", getPokemonLevel(cid)) doItemSetAttribute(corpse.uid, "gender", getPokemonGender(cid)) end return true end
  5. KaboFlow

    PET SYSTEM

    [07/05/2020 13:53:19] [Error - CreatureScript Interface] [07/05/2020 13:53:20] data/creaturescripts/scripts/player/statsChange.lua:onStatsChange [07/05/2020 13:53:20] Description: [07/05/2020 13:53:20] data/lib/106-main functions.lua:276: attempt to index a number value [07/05/2020 13:53:20] stack traceback: [07/05/2020 13:53:20] data/lib/106-main functions.lua:276: in function 'getEffectvineSpell' [07/05/2020 13:53:20] data/creaturescripts/scripts/player/statsChange.lua:203: in function <data/creaturescripts/scripts/player/statsChange.lua:6> [07/05/2020 13:53:21] getPokemonType(cid): O pokemon C Scrobat nao tem um tipo efetivo. [07/05/2020 13:53:21] [Error - CreatureScript Interface] [07/05/2020 13:53:21] data/creaturescripts/scripts/player/statsChange.lua:onStatsChange [07/05/2020 13:53:21] Description: [07/05/2020 13:53:21] data/creaturescripts/scripts/player/statsChange.lua:112: attempt to index a number value [07/05/2020 13:53:21] stack traceback: [07/05/2020 13:53:21] data/creaturescripts/scripts/player/statsChange.lua:112: in function <data/creaturescripts/scripts/player/statsChange.lua:6>
  6. KaboFlow

    pokemon d low exp..

    pokeexp.. local function playerAddExp(cid, exp) doPlayerAddExp(cid, exp) doSendAnimatedText(getThingPos(cid), exp, 215) end function onDeath(cid, corpse, deathList) --if not isCreature(cid) then return true end if isSummon(cid) or not deathList or getCreatureName(cid) == "Evolution" then return true end --alterado v1.8 local givenexp = getWildPokemonExp(cid) ---local killer = getItemAttribute(corpse.uid, "corpseowner") if givenexp > 0 then for a = 1, #deathList do local pk = deathList[a] --- local list = getSpectators(getThingPosWithDebug(pk), 30, 30, false) if isCreature(pk) then local expTotal = math.floor(givenexp * getDamageMapPercent(pk, cid)) local party = getPartyMembers(pk) if isInParty(pk) and getPlayerStorageValue(pk, 4875498) <= -1 then expTotal = math.floor(expTotal/#party) --alterado v1.6.1 for i = 1, #party do if isInArray(list, party[i]) then if getPlayerLevel(pk) <= 50 then playerAddExp(party[i], expTotal * 200) elseif getPlayerLevel(pk) >= 51 and getPlayerLevel(pk) <= 75 then playerAddExp(party[i], expTotal * 130) elseif getPlayerLevel(pk) >= 76 and getPlayerLevel(pk) <= 100 then playerAddExp(party[i], expTotal * 80) elseif getPlayerLevel(pk) >= 101 and getPlayerLevel(pk) <= 150 then playerAddExp(party[i], expTotal * 40) elseif getPlayerLevel(pk) >= 151 and getPlayerLevel(pk) <= 250 then playerAddExp(party[i], expTotal * 20) elseif getPlayerLevel(pk) >= 251 and getPlayerLevel(pk) <= 350 then playerAddExp(party[i], expTotal * 10) elseif getPlayerLevel(pk) >= 351 then playerAddExp(party[i], expTotal * 5) end end end elseif not isInParty(pk) then if getPlayerLevel(pk) <= 50 then playerAddExp(pk, math.floor(200 * givenexp * getDamageMapPercent(pk, cid))) elseif getPlayerLevel(pk) >= 51 and getPlayerLevel(pk) <= 75 then playerAddExp(pk, math.floor(130 * givenexp * getDamageMapPercent(pk, cid))) elseif getPlayerLevel(pk) >= 76 and getPlayerLevel(pk) <= 100 then playerAddExp(pk, math.floor(80 * givenexp * getDamageMapPercent(pk, cid))) elseif getPlayerLevel(pk) >= 101 and getPlayerLevel(pk) <= 150 then playerAddExp(pk, math.floor(40 * givenexp * getDamageMapPercent(pk, cid))) elseif getPlayerLevel(pk) >= 151 and getPlayerLevel(pk) <= 250 then playerAddExp(pk, math.floor(20 * givenexp * getDamageMapPercent(pk, cid))) elseif getPlayerLevel(pk) >= 251 and getPlayerLevel(pk) <= 350 then playerAddExp(pk, math.floor(10 * givenexp * getDamageMapPercent(pk, cid))) elseif getPlayerLevel(pk) >= 351 then playerAddExp(pk, math.floor(5 * givenexp * getDamageMapPercent(pk, cid))) return true end end end end end if isNpcSummon(cid) then local master = getCreatureMaster(cid) doSendMagicEffect(getThingPos(cid), getPlayerStorageValue(cid, 10000)) doCreatureSay(master, getPlayerStorageValue(cid, 10001), 1) doRemoveCreature(cid) return false end if corpse.itemid ~= 0 then --alterado v1.8 doItemSetAttribute(corpse.uid, "level", getPokemonLevel(cid)) doItemSetAttribute(corpse.uid, "gender", getPokemonGender(cid)) end return true end ajuda modificar x3 a exp ta como pxg.. qero qe sea x3 a pxg um blastoise n pxg sendo level 80 ta dando 1500 d exp qero qe n meu server te dando 3500 d exp
  7. to com base DXP mato blastoise e tira 1000 do exp.. n config ta 5000 n storage ta 5000 e ta dando 1000 n lib ta 50 ja modifique e ta dando misma exp .. algem ajuda ai? ta dando 45 d exp e ja aumente mais a config e lib e storage
  8. algem? ja ajudo em iso? e map e muito grande ajuda eu tambem e tira error.. algem ajude :S
  9. vlw pro ajudar a os demias.. tamben to qerendo pegar account manager.. to modificando um update aqi novo
  10. vo tentar ajudar
  11. vlw mano mais a voca 0 none n ta funcionando..
  12. nao tira targ na versao 8.6
  13. ta sendo modificado ja vo subir update ,, dia 15/04/2020
  14. sim ja ta mais to com nova pc aqi
  15. vo post update novo
  16. bug d fly Corregido ja ta n carpeta
  17. n vai com acc m.. e com web pra criar conta
  18. Map Tutorial add n map global. npc pra principiantes com o tutorial.. to tentando ajudar com map-
  19. tenhe como para tirar tp com items e level...
  • Quem Está Navegando   0 membros estão online

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