kikothepower
04-03-2014, 02:39 PM
Hello is it any soft boots changer if it is can someone send me it thanks!
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)
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.