Skua Documentation


Project maintained by BrenoHenrike Hosted on GitHub Pages — Theme by mattgraham

Packets

Sending to Server

Packets can be sent from the client to the server easily through ScriptInterface#SendPacket. For example, to send the rest packet, you can use:

bot.SendPacket("%xt%zm%restRequest%1%%");

Simulating Server Packets

You can also simulate packets being sent from the server to the client. You can simulate the 3 types of packets used by the game:

These can be sent to the client as follows:

bot.SendClientPacket("packet", "type");

◄ PreviousIndexNext ►