Ir para conteúdo
  • Cadastre-se

Trocar x Arrow Por Y Arrow


Posts Recomendados

Opa, Queria saber se alguem tem um script que troca Diamond Arros Por Outra Arrow Quando Acabar,

e Assim que tiver 100 Diamond Colocar elas de novo !! 

Se Alguem tiver ou me mostra Algum modo de como fazer isso eu agradeço !!! 

 

tenho esse script Porem ele e para Spear queria colocar ele para arrow 

 

 

--Weapon Switcher Settings--
local AmmoWeaponID = 7378 -- ID of weapon you are training with. (Default: Small Stones)
local LowAmmoWeaponID = 3277  -- ID of weapon you want to switch to when low on ammo. (Default: Spears)
local MainWeaponID = 3277 -- ID of weapon you want to switch to when low on ammo. (Default: Spears) 

local SwitchOnLowAmmo = true -- Set to true if you want to switch to alternate weapon on low ammo.
local SwitchAmmoCount = 1 -- Amount of ammo to switch to alternate weapon at.
local SwitchWeaponBack = 100 -- Amount of ammo to switch to main weapon at.

local WeaponSwitcher = Module.New('Weapon Switcher', function()
   if (SwitchOnLowAmmo) then
        if (Self.Ammo().id == AmmoWeaponID and Self.Ammo().count <= SwitchAmmoCount) then
            if (MoveWeapon(LowAmmoWeaponID) and AlertOnLowAmmo) then alert() end
        end
        if (Self.Ammo().id == AmmoWeaponID and Self.Ammo().count <= SwitchWeaponBack) then
            if (MoveWeapon(MainWeaponID) and AlertOnLowAmmo) then alert() end
        end
    end
    wait(1000, 2000)
end, false)

function MoveWeapon(ItemID)
    local container = Container.GetFirst()
    while (container:isOpen()) do
        for spot = 0, container:ItemCapacity() do
            if (container:GetItemData(spot).id == ItemID) then
                return (container:MoveItemToEquipment(spot, 'Weapon'))
            end
        end
        container = container:GetNext()
    end
    return false
end

if (SwitchOnLowAmmo) then WeaponSwitcher:Start() end

 

 

Editado por vinitop1
Script (veja o histórico de edições)
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.

×
×
  • Criar Novo...

Informação Importante

Confirmação de Termo