PDA

View Full Version : Soft boots changer?



kikothepower
04-03-2014, 02:39 PM
Hello is it any soft boots changer if it is can someone send me it thanks!

Eion
04-03-2014, 03:08 PM
Just change the mana amount and the other boot ID. It will also always wear normal boots in PZ.


Module.New("SoftSwitcher", function(Softs)
local OtherBootID = 16112 -- Item ID of other boots
local Mana = 2000 -- Mana to equip or remove softs
if (Self.Feet().id ~= 3549) and (Self.ItemCount(6529) >= 1) and (Self.Mana() <= Mana) and (Self.isInPz() == false) then
Self.Equip(6529, "feet")
elseif (Self.Feet().id ~= OtherBootID) and (Self.ItemCount(OtherBootID) >= 1) and (Self.Mana() > Mana) or (Self.isInPz() and Self.Feet().id ~= OtherBootID) then
Self.Equip(OtherBootID, "feet")
end
Softs:Delay(200 * math.random(3,15)) -- 600ms to 3000ms delay
end)

Falksalt
01-03-2015, 09:36 AM
Thank you Eion!