Ir para conteúdo
  • Cadastre-se

Posts Recomendados

Os pokemons de vez enquando não da pra usar a poke bola em cima do pokemon e ai ele fica bugado no chão e não da pra capturar alguem sabe oq tenho que arrumar coloquei o action - catch.lua

local description = "Contains a %pokename."

local genderFixo = {

	["Nidoran Male"] = {gender = 4},
	
	["Nidoran Female"] = {gender = 3},
	
	["Dragonite"] = {gender = 0},
	
	["Magneton"] = {gender = 0},

}

function onUse(cid, item, frompos, item2, topos)

	if not getTopCorpse(topos) then
	
		return true
	end
	
local name = getItemNameById(item2.itemid)
local pokeball = pokeballCatch[item.itemid]
local rate = pokeball.rate
local catch = pokeball.catch
local fail = pokeball.fail
local newid = pokeball.ball

local corpse = getTopCorpse(topos).uid
local statusgender = getItemAttribute(corpse, "gender")
local statuslevel = getItemAttribute(corpse, "level")

    for i,x in pairs(pokesCatch) do
        if getItemNameById(item2.itemid):find(i:lower()) then
            if getItemIdByName(name) == pokesCatch[i].corpse then
                if cid ~= getItemAttribute(item2.uid, "corpseowner") and isInArray({1,8}, getPlayerGroupId(cid)) then
                    doPlayerSendCancel(cid, "You are not allowed to catch this pokemon.")
                return true
                end
				
				if getPlayerStorageValue(cid, SAFFARI_CONFIG.Storages) >= 1 and item.itemid ~= SAFFARI_CONFIG.AddPokeballs[1]then
		
					return true
				end
        
                
                doRemoveItem(item2.uid, 1)
				
                local pegar = math.random(1, x.chance)
                if pegar <= 1*(rate) then
                    doSendMagicEffect(topos, catch)

                    local nas = {
                    ["%%pokename"] = i
                    }
					
                    for i,x in pairs(nas) do
                        if description:find(i) then
                            description = description:gsub(i, x)
                        end
                    end

                    local function capturou(params)
                        if not isCreature(params.cid) then
                        return true
                        end
						
                        if not string.find(getPlayerStorageValue(cid, 54842), ""..i..",") then
                            doPlayerAddSoul(cid, 1)
                            setPlayerStorageValue(cid, 54842, getPlayerStorageValue(cid, 54842)..""..i..", ")
                        end
						
						local ballName = getItemNameById(item.itemid)
						
						if genderFixo[doCorrectPokemonName(params.nome)] == doCorrectPokemonName(params.nome) then
				
							statusgender = genderFixo[doCorrectPokemonName(params.nome)].gender
				
						end
						
						icon_on  = false
						if icons[doCorrectPokemonName(i)] then
							newid = icons[doCorrectPokemonName(i)].on
							icon_on  = true
						else
							newid = newid
							icon_on  = false
						end
						
						if #getPlayerPokeballs(cid) >= 6 or not hasSpaceInContainer(getPlayerSlotItem(cid, 3).uid) then
							item = doCreateItemEx(newid-1)
						else
							item = addItemInFreeBag(getPlayerSlotItem(cid, 3).uid, newid, 1)
						end
						
						setPokeballInfo(item, i)
						doItemSetAttribute(item, "gender", statusgender)
						doItemSetAttribute(item, "level", statuslevel)
						doItemSetAttribute(item, "happy", 250)
						doItemSetAttribute(item, "php", 1)
						doItemSetAttribute(item, "ball", ballName)
						print(ballName)
						
						if (icon_on == true) then
							doItemSetAttribute(item, "iconsystem", "on")
						else
							doItemSetAttribute(item, "iconsystem", "off")
						end
						
                        if #getPlayerPokeballs(cid) >= 6 or not hasSpaceInContainer(getPlayerSlotItem(cid, 3).uid) then
                            doPlayerSendMailByName(getCreatureName(params.cid), item, 1)
                            doPlayerSendTextMessage(cid, 27, "Congratulations, you won a "..i.." ("..GenderTable[statusgender]..") !")
                            doPlayerSendTextMessage(cid, 27, "Since you are already holding six pokemons, this pokeball has been sent to your depot.")
                        else
                            doPlayerSendTextMessage(cid, 27, "Congratulations, you won a "..i.." ("..GenderTable[statusgender]..") !")
                        end
						
						doUpdatePokemons(cid)
						
                        if #getCreatureSummons(cid) >= 1 then
                            doSendMagicEffect(getThingPos(getCreatureSummons(cid)[1]), 178)
                        else
                            doSendMagicEffect(getThingPos(cid), 178)
                        end
                    end

                    local description = "Contains a "..i.."."
                    addEvent(capturou, 4000, {cid = cid, poke = i, nome = i, description = description, ball = newid, letter = 2597})
                else
				
                    function ruim(params)
                        if not isCreature(params.cid) then
                        return true
                        end
						
                        doPlayerSendTextMessage(params.cid, 27, "Sorry, you didn\'t catch that pokemon.")
						
                        if #getCreatureSummons(params.cid) >= 1 then
                            doSendMagicEffect(getThingPos(getCreatureSummons(params.cid)[1]), 166)
                        else
                            doSendMagicEffect(getThingPos(params.cid), 166)
                        end
                    end
					
                    addEvent(ruim, 4000, {cid = cid})
                    doSendMagicEffect(topos, fail)
                end
				
				if getPlayerStorageValue(cid, SAFFARI_CONFIG.Storages) >= 1 and getPlayerItemCount(cid, SAFFARI_CONFIG.AddPokeballs[1]) == 1 then
		
					if #getCreatureSummons(cid) >= 1 then
			
						local feet = getPlayerSlotItem(cid, CONST_SLOT_FEET)
			
						doTransformItem(feet.uid, pokeballs[doCorrectPokemonName(i)].on)
			
					end
		
					addEvent(saffariBallsEnd, 4007, cid, SAFFARI_CONFIG.Storages, SAFFARI_CONFIG.Saffari_Pos.Exit)
			
				end
				
				doRemoveItem(item.uid, 1)
				
            end
        end
    end
return TRUE
end

 

Link para o post
Compartilhar em outros sites

Participe da conversa

Você pode postar agora e se cadastrar mais tarde. Se você tem uma conta, faça o login para postar com sua conta.

Visitante
Responder

×   Você colou conteúdo com formatação.   Remover formatação

  Apenas 75 emojis são permitidos.

×   Seu link foi automaticamente incorporado.   Mostrar como link

×   Seu conteúdo anterior foi restaurado.   Limpar o editor

×   Não é possível colar imagens diretamente. Carregar ou inserir imagens do URL.

  • Quem Está Navegando   0 membros estão online

    Nenhum usuário registrado visualizando esta página.

  • Conteúdo Similar

    • Por LeoTK
      Salve galera neste tópico irei postar algumas prints do mapa do servidor para quem queira acompanhar e quem sabe até utilizar de inspiração para mapear o seu NTO.
       
      #Att 11/08/2022

       
       
       
       
      Konoha (Em Desenvolvimento)
       
       
       
       
    • Por DiigooMix
      Como o título já diz, será que alguém possui sprite do hitto e se possível as transformações dele?
    • Por OmegaZero
      Olá gostaria que alguém me ajudasse com uma "scripting" não sei se é pela mesma, seria o seguinte uma determinada arma teria a chance de dar double hit e não sei oque fazer alguem poderia ajudar?

      OBS:não sei se é o local correto se não for mova, desculpe
    • Por Madarasenju
      Olá galera do Tibia King, queria por uns npc's no meu server que não tem função de trade nem nada do tipo, queria que eles só andassem como enfeite, Rep+ Pra quem me ajudar... grato desde já.
    • Por SilenceRoot
      A magia é assim o você usa a a magia e ela ficará ativado por 10 segundos, até que o inimigo lance a primeira magia ou todos de uma vez, quando ele lançar a primeira magia, ele não lhe acertará ou seja esquivando dela, e logo em seguida será teletransportado aleatoriamente ao redor do inimigo que usou.
×
×
  • Criar Novo...

Informação Importante

Confirmação de Termo