You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This code will spam Nice Shot! All of the quickchats are available here
const{ Client, Manager, Controller, quickChats }=require("EasyRLBot");classExampleBotextendsClient{constructor(...args){super(...args);// Do not change this except if you know what you are doing.}getOutput(gameTickPacket,fieldInfo,ballPrediction){this.sendQuickChat(quickChats.information.NiceShot,// The quickchatfalse// If the quickchat is team only);}}letmanager=newManager(ExampleBot,3215// This is the default port used by EasyRLBotExample);