- lç
-
-
-
-
-
Alguém tem o servidor dessa base
Então galera, preciso do servidor dessa base: http://prntscr.com/ab92r3 já tenho o cliente mais não a base. Por gentileza alguém disponibiliza? +5rep
-
Sprite Shiny/Crystal Steelix
Alguém poderia disponibilizar a sprite do Shiny/Crystal steelix. Obs: Não pode ser mega. 2 Rep.
-
[Error] Assertion Failed
Então tava tentando abrir um servidor e deu um erro lá assertion failed, fui tentar outro mais também aconteceu isso... Fiquei horas tentando arrumar mais não consegui. Olha ai a print do erro.
- Estatua ou porta de Teleport.
-
SISTEMA DE ADDON COMPLETO
-
-
-
-
-
-
(Resolvido)Base Poke Lute 1.0 by: Carlos Barbosa
Eu tenho a base PokeLute atualizada antes do reset... esta upada Mediafire por mim mesmom
-
-
(Resolvido)[Duvida] Addon System
Bom estou com uma script de addon aqui, porém não sei como edita-la, preciso de ajuda. Meu skype é luan.1020 se preferir e for mais fácil posto o system aqui que é esse aqui, porém não sei mecher em nada !. Aguardo !. \/ function onUse(cid, item, fromPosition, itemEx, toPosition) local addons = { [751] = {pokemon= "Electabuzz" , looktype = 1911, count = 1}, [748] = {pokemon= "Charizard" , looktype = 1910, count = 1}, [755] = {pokemon= "Blastoise" , looktype = 1909, count = 1}, [754] = {pokemon= "Shiny Nidoking" , looktype = 1914, count = 1}, [753] = {pokemon= "Arcanine" , looktype = 1908, count = 1}, [752] = {pokemon= "Shiny Golem" , looktype = 1913, count = 1}, } if #getCreatureSummons(cid) > 0 then doPlayerSendCancel(cid, "Porfavor volte seu pokemon.") return false end local numero = addons[item.itemid].looktype local count = addons[item.itemid].count local pb = getPlayerSlotItem(cid, 8).uid local pk = addons[item.itemid].pokemon if pb <= 0 then doPlayerSendCancel(cid, "Desculpe, você não tem um "..pk.." no slot") return false end if getItemAttribute(pb,"poke") ~= pk then doPlayerSendCancel(cid, "Desculpe, você não pode usar esse addon nesse pokemon.") return false end local addon = tonumber(getItemAttribute(pb,"addon")) if not addon or addon < 1 then if doRemoveItem(item.uid, count) then doPlayerSendTextMessage(cid, 27, "Parabéns, você executou isso com sucesso. Para remover seu addon diga !addons remove") doSetItemAttribute(pb,"addon", numero) else doPlayerSendCancel(cid, "Você não tem o necessário para adicionar no seu "..pk..".") end return true end return true end
-
-
Error Na Distro
Bom dia, tarde ou noite tibianos. Bom estou com um sério problema com meu jogo (Poketibia) que é um erro chato na distro que me impede de ligar o servidor, anotei o erro, são muitos porém esse é o único que interfere na inicialização !. o erro é: [Error - CreatureScript Interface] data/creaturescript/scripts/spawn.lua:onSpawn description data/creaturescripts/scripts/spawn.lua:77: attempt to call global 'isSummon' (a nil value) stack traceback data/creaturescript/scripts/spawn.lua:77: in function <data/creaturescripts/scripts/spawn.lua:70> Meu Spawn.lua: local shinys = { "Venusaur", "Charizard", "Blastoise", "Butterfree", "Beedrill", "Pidgeot", "Rattata", "Raticate", "Raichu", "Zubat", "Golbat", "Paras", "Parasect", "Venonat", "Venomoth", "Growlithe", "Arcanine", "Abra", "Alakazam", "Tentacool", "Tentacruel", "Farfetch'd", "Grimer", "Muk", "Gengar", "Onix", "Krabby", "Kingler", "Voltorb", "Electrode", "Cubone", "Marowak", "Hitmonlee", "Hitmonchan", "Tangela", "Horsea", "Seadra", "Scyther", "Jynx", "Electabuzz", "Pinsir", "Magikarp", "Gyarados", "Snorlax", "Dragonair", "Dratini"} local raros = {"Dragonite"} local function ShinyName(cid) if isCreature(cid) then if string.find(tostring(getCreatureName(cid)), "Shiny") then local newName = tostring(getCreatureName(cid)):match("Shiny (.*)") doCreatureSetNick(cid, newName) if isMonster(cid) then doSetCreatureDropLoot(cid, false) end end end end local function doSetRandomGender(cid) if not isCreature(cid) then return true end if isSummon(cid) then return true end local gender = 0 local name = getCreatureName(cid) if not newpokedex[name] then return true end local rate = newpokedex[name].gender if rate == 0 then gender = 3 elseif rate == 1000 then gender = 4 elseif rate == -1 then gender = 0 elseif math.random(1, 1000) <= rate then gender = 4 else gender = 3 end doCreatureSetSkullType(cid, gender) end local function doShiny(cid) if isCreature(cid) then if isSummon(cid) then return true end if getPlayerStorageValue(cid, 74469) >= 1 then return true end if getPlayerStorageValue(cid, 22546) >= 1 then return true end if isNpcSummon(cid) then return true end if getPlayerStorageValue(cid, 637500) >= 1 then return true end --alterado v1.9 if isInArray(shinys, getCreatureName(cid)) then --alterado v1.9 \/ chance = 2.0 elseif isInArray(raros, getCreatureName(cid)) then --n coloquem valores menores que 0.1 !! chance = 2.0 else return true end if math.random(1, 1000) <= chance*10 then doSendMagicEffect(getThingPos(cid), 18) local name, pos = "Shiny ".. getCreatureName(cid), getThingPos(cid) doRemoveCreature(cid) local shi = doCreateMonster(name, pos, false) setPlayerStorageValue(shi, 74469, 1) else setPlayerStorageValue(cid, 74469, 1) end --/\ else return true end end function onSpawn(cid) registerCreatureEvent(cid, "Experience") registerCreatureEvent(cid, "GeneralConfiguration") registerCreatureEvent(cid, "DirectionSystem") registerCreatureEvent(cid, "CastSystem") if isSummon(cid) then registerCreatureEvent(cid, "SummonDeath") return true end addEvent(doSetRandomGender, 5, cid) addEvent(doShiny, 10, cid) addEvent(ShinyName, 15, cid) addEvent(adjustWildPoke, 5, cid) return true end Então gente por favor imploro que me ajude, preciso muito Obrigado !.
-
Formando uma Nova equipe
Então galera é o seguinte preciso de alguém que ajude a com uma base de poketibia que a vps eu compro junto com um amigo, precisando também de script, mapper etc. Vai ser bem longo e demorador e nesse decorrer do tempo agente pode construir uma amizade. Qualquer coisa agente pode conversar sobre planos futuros ! Informações: Facebook: Luan Silva (Sem foto prefil) Skype: luan.1020 Nome: Luan Lucas Idade: 15 Anos. Agradeço a compreensão e vamos tentar algo mais !.
-
[8.54] Pokémon Imperium [V1]
• Edições: • Erros: • ScreenShots: • Download: • Créditos: Previsão para a [V2] ?
-
- (Resolvido)Object Builder Sprite - Como trocar ?
-
NPC QUE LEVE ATÉ A AREA VIP
<talkaction words="/addvip" access="4" event="script" value="addvip.lua"/>
-
NPC QUE LEVE ATÉ A AREA VIP
tem isso aqui function onStepIn(cid, item, position, fromPosition) if not isPlayer(cid) then return true end if not isPremium(cid) then doTeleportThing(cid, fromPosition, true) doPlayerSendTextMessage(cid, 27, "Você não é VIP.") doSendMagicEffect(getThingPos(cid), CONST_ME_MAGIC_BLUE) return true end doPlayerSendTextMessage(cid, 27, "Você é VIP xD") return true end se poder passar face ou skype seria melhor. mais aqui também pode ser
-
NPC QUE LEVE ATÉ A AREA VIP
Eai gente, queria pedir ajuda pra criar um npc que leve tal player para a area vip só que "player vip" assim como no otpokemon entende? então. Era só falar hi e depois deseja ir para tal local da área vip ? e sim ou yes. vlw rep+