Log in

View Full Version : How to make bot type?



erm
11-18-2012, 09:11 PM
how do you make the bot type something as a response to text in the game chat window?

Roflme
11-18-2012, 09:19 PM
if FindChatBoxText(Text: string; Line: Integer; TextCol: Integer) then
TypeSend(); // put whatever message you want it to say here


Ex:


if FindChatBoxText('Hello', 8, clChat) then
TypeSend('Hello!');


Check out the includes for more text/chat functions.

erm
11-18-2012, 09:45 PM
thank you