Hello.
1st script
If you have 100+ mana then it will setup 'Whirlwind Throw' on spell path, which belongs to Dragon's setting1 spell. Otherwise, it would setup Explosion Rune.
If you have 150+ mana then it will setup 'Whirlwind Throw' on spell path, which belongs to Dragon Lord's setting1 spell. Otherwise, it would setup Explosion Rune.
To find a tools path you should right click on the option that you wanna find out and click on copy path. Example: Select Dragon on Targeting list, select Setting1 on Settings, right-click on Spell option then "Copy Path".
local SETTINGS = {
{ MinMana = 100, SpellPath = 'Targeting/Dragon/Setting1/Spell', EnoughMana = 'Whirlwind Throw', NotEnoughMana = 'Explosion Rune'},
{ MinMana = 150, SpellPath = 'Targeting/Dragon Lord/Setting1/Spell', EnoughMana = 'Whirlwind Throw', NotEnoughMana = 'Explosion Rune'},
}
if connected() then
local mana = mp()
for _, setting in ipairs(SETTINGS) do
local value = getsettings(setting.SpellPath)
if mana >= setting.MinMana and value ~= setting.EnoughMana then
setsettings(SpellPath, setting.EnoughMana)
elseif mana < setting.MinMana and value ~= setting.NotEnoughMana then
setsettings(SpellPath, setting.NotEnoughMana)
end
end
end
2nd script
You can find it here, always search before placing a request:
|Only Registered members can see download links. | Click here to buy subscription or here to register.