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 House runemaker (without REFILL AND DANGER!)
#1
House runemaker (without REFILL AND DANGER!)

This script doesn't contains refill or danger, so you may use it with Runemaker -> Refill Settings.

It checks if Runemaker -> Refill Settings is currently NOT working before going to make rune place, cast spell and walk back. However, it will not stop walking if danger appears while walking back or so.

local SPELL_MANA = 100 -- Mana to go out and make rune.
local SPELL_WORDS = 'adori gran' -- Spellwords to make rune.
local LOCATION_MAKERUNE = { X = 12345, Y = 12345, Z = 6 } -- Location to go when Mana is higher than SPELL_MANA.
local LOCATION_WALKBACK = { X = 12345, Y = 12345, Z = 6 } -- Location to go after making rune or when no mana to make rune.




local CHECK_LOCATION = false

if runemaker_isondanger() == false and runemaker_isrefilling() == false then
    if mp() >= SPELL_MANA then
        if reachlocation(LOCATION_MAKERUNE.X, LOCATION_MAKERUNE.Y, LOCATION_MAKERUNE.Z, true) then
            wait(400, 800)
            cast(SPELL_WORDS)
            wait(200, 400)
            CHECK_LOCATION = true
        end
    else
        CHECK_LOCATION = true
    end
        
    if CHECK_LOCATION and (posx() ~= LOCATION_WALKBACK.X or posy() ~= LOCATION_WALKBACK.Y) then
        reachlocation(LOCATION_WALKBACK.X, LOCATION_WALKBACK.Y, LOCATION_WALKBACK.Z, true)
        wait(400, 800)
    end
end

The very same script, but using alana sio to walk back.
local SPELL_MANA = 100 -- Mana to go out and make rune.
local SPELL_WORDS = 'adori gran' -- Spellwords to make rune.
local LOCATION_MAKERUNE = { X = 12345, Y = 12345, Z = 6 } -- Location to go when Mana is higher than SPELL_MANA.


if runemaker_isondanger() == false and runemaker_isrefilling() == false then
    if mp() >= SPELL_MANA then
        if reachlocation(LOCATION_MAKERUNE.X, LOCATION_MAKERUNE.Y, LOCATION_MAKERUNE.Z, true) then
            wait(400, 800)
            cast(SPELL_WORDS)
            wait(200, 400)
            say('alana sio')
        end
    elseif posx() == LOCATION_MAKERUNE.X and posy() == LOCATION_MAKERUNE.Y then
        say('alana sio')
        wait(400, 800)
    end
end

keywords: house runemaker, house runes, home runemaker, home runes



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016