• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

xenobot question

Marko999x

999x era
Premium User
Joined
Dec 14, 2017
Messages
2,864
Solutions
82
Reaction score
1,967
Location
Germany
if a effect appears randomly on the screen as example "42" is it possible to go there with a xenobot script?
 
I haven't used xenobot in 4 years and I'm not sure of the details of your problem so idk if it's even possible, but here's the script I used on archlight 4 years ago to bot monster essences, maybe it helps?

Lua:
messages = {
    "*item*","*gold*","*buff*","*exp*",
}

EffectMessageProxy.OnReceive("Essencealarm", function (proxy, message, x, y, z)
    if table.find(messages, message) then
          Walker.Stop()   
          Targeting.Stop()
          alert()
          Self.WalkTo(x,y,z)
      else
          wait(2000)
          Walker.Start()
          Targeting.Start()
    end
end)

Proxy (https://xenobot.fandom.com/wiki/Proxy)
 
Back
Top