Ah, now it is in Starters.
Like I said in your "General Discussions" question:
Look in the UDF forum for PING(), OSPING(), REVPING() or WMIPING()
I think one of these can help you
p.e. (I did not test this)
Code:
If NOT @LOGONMODE
	Break On
Else
	Break Off
EndIf
Dim $RC
$RC=SetOption("Explicit", "On")
$RC=SetOption("NoMacrosInStrings", "On")
$RC=SetOption("NoVarsInStrings", "On")
$RC=SetOption("WrapAtEOL", "On")

If OSPing("192.168.1.1") AND OSPing("192.168.1.2")
	;Do stuff
EndIf

Do not forget p.e. to copy the OSPing code at the end of your script.