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
GFB/EXori con
#1
i got problem with this scirpt. I wanna if >=4 monster and safe shoot gfb if 1-3 monster shoot exori con if 4 >=monster and player around too cast exori con


local Monsters = { 'xxxx', 'xxx', 'xxx', 'xxxx' }
local Rune = 'great fireball rune'
local MinMonsters = 4 -- Min. count to shoot rune.
local SafeHealth = 55 -- Shoot runes only if your HP % is higher or equal to this valaue.
local PlayerSafe = true -- Check if there's another player on screen. If so, don't shoot rune.
local SafeList = { 'xxx', 'yyyy' }

if hppc() >= SafeHealth and cancast() and maround(7, unpack(Monsters)) >= MinMonsters and (PlayerSafe == false or (PlayerSafe and paroundignore(table.unpack(SafeList)) == 0)) then
    if shootarearune(Rune, MinMonsters, unpack(Monsters)) then
        wait(120)
elseif (maround(7, unpack(Monsters)) < MinMonsters and attacked().id > 0) or (paround() > 0) then
        cast('exori con')
        wait(100, 120)

    end
end
Reply

#2
local Monsters = { 'xxxx', 'xxx', 'xxx', 'xxxx' }
local Rune = 'great fireball rune'
local MinMonsters_ExoriCon = 3 -- Min. count to cast exori con.
local MinMonsters_GFB = 4 -- Min. count to shoot rune.
local SafeHealth = 55 -- Shoot runes only if your HP % is higher or equal to this valaue.
local SafeList = { 'xxx', 'yyyy' }

if hppc() >= SafeHealth and cancast() then
    local MONSTERS_COUNT = maround(7, unpack(Monsters))
    local PLAYERS_COUNT = paroundignore(table.unpack(SafeList))

    if MONSTERS_COUNT >= MinMonsters_GFB and PLAYERS_COUNT == 0 then
        if shootarearune(Rune, MinMonsters_GFB, unpack(Monsters)) then
            wait(1000, 1200)
        end
    elseif MONSTERS_COUNT >= MinMonsters_ExoriCon and attacked().id > 0 then
        cast('exori con')
        wait(100, 120)
    end
end
Reply



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016