diff options
Diffstat (limited to 'ShiftOS.WinForms')
| -rw-r--r-- | ShiftOS.WinForms/Applications/Discord.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ShiftOS.WinForms/Applications/Discord.cs b/ShiftOS.WinForms/Applications/Discord.cs index cfce55f..d6b33dd 100644 --- a/ShiftOS.WinForms/Applications/Discord.cs +++ b/ShiftOS.WinForms/Applications/Discord.cs @@ -50,10 +50,14 @@ namespace ShiftOS.WinForms.Applications public void OnLoad() { + WebRequest joinRequest = WebRequest.Create("http://selfbot-areno.rhcloud.com/send/" + SaveSystem.CurrentSave.Username + " has connected!"); + joinRequest.GetResponse(); } public bool OnUnload() { + WebRequest leaveRequest = WebRequest.Create("http://selfbot-areno.rhcloud.com/send/" + SaveSystem.CurrentSave.Username + " has left!"); + leaveRequest.GetResponse(); return true; } |
