Everyone who has never used our Bots before, can test each one for 2 days without any limitation.
The trial is given automatically when you login on the Bot, but in some cases it wouldn't work (security reasons).
If this happens, send me a private message and i will be checking the failed trials manually and adding it for those who didn't get it.
We are looking for resellers who may accept payment methods different from ours, including classictibia's cash, realesta's cash, mastercores' cash, etc. Interested? Click here at anytime.



Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Script for using runes if no mana and also script for exevo con mort
#1
i  need script for using runes when my char doesnt have enough mana< targetting runes for choose> and monsters for choose 

Example : Use Explo if Doesnt have mana for exori hur on dragon etc

2nd is to use exevo con mort if bolts below 50 to 200 or smth that like, i can pay smth if sb offer me full working scripts
Reply

#2
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.
Reply



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016