Log in

View Full Version : XenoBot Bug - Open [Other] Screenshoter working bad



maroxy
02-02-2015, 10:49 PM
Bug ReportOperating System:
Other Short Description:
Screenshoter working bad Behaviors: Feature error

Indepth Description:
Hi!

I don't know if someone else is getting the next bug:

local data = {level = Self.Level(), name = Self.Name()}

Module.New("screenshoter", function(module)
if (Self.Level() > data.level and Self.Name() == data.name) then
screenshot(Self.Name() . . "_level_" . . Self.Level())
data.level = Self.Level()
data.name = Self.Name()
end
end)

The script that I have made is this one and isn't working properly in the VPS maybe someone could help me.

The other problem is that XenoBot is screenshoting tibia randomly saying player death or low health when almost full hitpoints.

Maybe you know how to fix...

OS: Windows 2012 Server R2

HjugO
02-03-2015, 10:12 AM
Module.New("screenshoter", function(module)
local data = {level = Self.Level(), name = Self.Name()}
if (Self.Level() > data.level and Self.Name() == data.name) then
screenshot(Self.Name() . . "_level_" . . Self.Level())
end
module:Delay(200)
end)
??

maroxy
02-03-2015, 10:20 PM
Module.New("screenshoter", function(module)
local data = {level = Self.Level(), name = Self.Name()}
if (Self.Level() > data.level and Self.Name() == data.name) then
screenshot(Self.Name() . . "_level_" . . Self.Level())
end
module:Delay(200)
end)
??

It's actually the same code -.-" !!

And also isn't working in the VPS

HjugO
02-03-2015, 11:04 PM
It's actually the same code -.-" !!

And also isn't working in the VPS

nope not the same code.

maroxy
02-05-2015, 03:23 PM
#bump