If Ping("home.website.com", 200) Then
If Ping("login.website.com", 200) Then
_GUICtrlStatusBar_SetText($GUIStatus, " Website = Online Login Server: Online")
Else
_GUICtrlStatusBar_SetText($GUIStatus, " Website = Online Login Server: Offline")
EndIf
Else
If Ping("login.website.com", 200) Then
_GUICtrlStatusBar_SetText($GUIStatus, " Website = Offline Login Server: Online")
Else
_GUICtrlStatusBar_SetText($GUIStatus, " Website = Offline Login Server: Offline")
EndIf
EndIf
That is the only thing I have semi-working and that can't go in the while loop as they keep switching between online and offline... + It doesn't give me any colors (I want to be able to set online as green and offline as red