Just to clarify, if I were making a Bot Base, is it safe to instantiate Gaia on Startup once, and then set the Navigator to null on Shutdown? Or is that going to get me banned still? I'm guessing when you make an instance on Gaia it'll make a request to the server, and the problem is making too many requests to the server. But bot bases have to create an instance at least once no?
Use it something like this: Code: public override void Start() { Navigator.NavigationProvider = new GaiaNavigator(2f); } And don't forget to dispose it at the end or the bot won't kill the connection, you'll run into lots of problems: Code: public override void Stop() { (Navigator.NavigationProvider as GaiaNavigator).Dispose(); }