Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[ Eternal-Scripts | Equip Soft Boots ]]--
- --[[ Configurações ]]--
- Soft_OnlyWithoutMonster = true -- Equipar apenas se não tiver monstro na tela!
- --[[ Configurações ]]--
- function clearScreen()
- local count = 0
- for n, c in Creature.iMonsters() do
- count = count + 1
- end
- if (count == 0 or
- Soft_OnlyWithoutMonster == false) then
- return true
- else
- return false
- end
- end
- Module.New("Equip new soft", function(mod)
- if (Self.Feet().id ~= 3549) then
- if (Self.ItemCount(6529) > 0 and
- clearScreen()) then
- Self.Equip(6529, "feet", 1)
- wait(Self.Ping() + 100)
- end
- end
- mod:Delay(500)
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement