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
FREE High Mana to Low Mana - Caster/Waste Mana
#1
This could be used for either rune making or just simple mana waste. It will start casting spell at max_mana until it reaches min_mana when no one is on screen.

local Spell_To_Cast = 'adura vita'
local Spell_Mana = 100
local Max_Mana = 700
local Min_Mana = 0

if (mp() >= Max_Mana and paround() == 0 and cancast()) then
    Cast_Times = ((Max_Mana-Min_Mana)/Spell_Mana)
    while(Cast_Times >= 1) do
        Cast_Times = Cast_Times-1
        if(paround() == 0) then
            say(Spell_To_Cast)
            wait(2500)
        end
    end
end
Reply

#2
|Only Registered members can see download links. | Click here to buy subscription or here to register.


It's good but is there a way to make it case the spell when the mana is between a certain amount? Because when identifying bots it looks for a PATTERN. So if you ever get scoped out it will see that you are casting the spell at EXACT intervals every time. It doesn't necessarily need to be a time delay different but at a different mana interval like the RUNEMAKER does.
Reply

#3
|Only Registered members can see download links. | Click here to buy subscription or here to register.

This script will sort a random number between MANA_RANGE. It will sort a different value every time that it makes the runes.

Let's say that you are using the script below... So it sorts value 773, when you have 773 mana or higher then it will make 7 runes and sort another value.
local Spell_To_Cast = 'adura vita'
local Spell_Mana = 100
local MANA_RANGE = { Min = 600, Max = 900 }

MANA_MAKE = MANA_MAKE or random(MANA_RANGE.Min, MANA_RANGE.Max)

if mp() >= MANA_MAKE and cancast() then
    local Cast_Times = math.floor(mp() / Spell_Mana)
    for i = 1, Cast_Times do
        cast(Spell_To_Cast)
        wait(2000, 3000)
    end
    MANA_MAKE = random(MANA_RANGE.Min, MANA_RANGE.Max)
end
Reply



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016