Skip to content

Instantly share code, notes, and snippets.

@RoyCurtis
Created December 13, 2012 06:26
Show Gist options
  • Save RoyCurtis/4274511 to your computer and use it in GitHub Desktop.
Save RoyCurtis/4274511 to your computer and use it in GitHub Desktop.
var bot = new Instance
{
Name = "TomBot",
UserName = "Tom",
Password = "???"
}
.Login()
.World.Enter("Blizzard");
var bot2 = new Instance();
bot.World.AvatarClicked += (o, from, to) =>
{
bot.Comms.Say("User session {0} clicked session {1}!", from, to);
};
while (true) bot.Wait(100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment