Jokerloker
-
Posts
2 -
Joined
-
Last visited
Reputation Activity
-
-
Jokerloker reacted to Droidz in Autorun plugin
Hi,
I just added the possibility to execute code when starting the bot (code executed after connecting to the authentication server).
The file must be named 'autorun.cs' and be in the 'Plugins' folder. The static method 'Main.Autorun()' is called after compilation.
using System.Windows.Forms; public class Main { public static void Autorun() { MessageBox.Show("Hello World!"); } }
autorun.cs