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
Don't go out of house while fire field
#1
Bug 
I'm having a problem with anoying ppl who stays many times in front of my house trowing fire fields, so when time waits goes down my character alana sio to outside of house.

I need an action that runemaker while fire field is on screen.

Can you help me?

Thanks!
Reply

#2
Hello.

I already posted this script:
|Only Registered members can see download links. | Click here to buy subscription or here to register.


local CHARACTER_LOCATION = { X = 12345, Y = 12345, Z = 6 } -- The location that your character stand making runes.
local SAFE_LOCATION = { X = 12345, Y = 12345, Z = 6 } -- Safe location to walk to. It must be in your screen!!
local FIELDS_IDS = { 2118, 2119 } -- Field ids. You must find and add fields that can damage you and add here.



local tile = gettile(CHARACTER_LOCATION.X, CHARACTER_LOCATION.Y, CHARACTER_LOCATION.Z)
local foundFields = false

for _, item in ipairs(tile.items) do
    if table.find(FIELDS_IDS, item.id) ~= nil then
        foundFields = true
        break
    end
end

if burning() or energized() or paralyzed() or foundFields then
    if iswalking() then
        stop()
    end
    setsettings('Runemaker/Enabled', false)
    if reachlocation(SAFE_LOCATION.X, SAFE_LOCATION.Y, SAFE_LOCATION.Z) then
        wait(500)
        logout()
    else
        playsound('default')
        flashclient()
    end
else
    setsettings('Runemaker/Enabled', true)
end
Reply



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016