Here is a script that was working and all I did was change the server the sock connects to and no longer works..... Let me know if you see anything out of place that I might have accidentally altered and just don't see:
alias updatescript { sockopen sancupdate server.changed.for.security 80 }
on *:SOCKOPEN:sancupdate:{
if ($sockerr) {
echo -a 1!WARNING! 1Update Error, try again later 4!WARNING!
}
sockwrite -n $sockname GET /patduck10/scripts/sanc.txt HTTP/1.1
sockwrite -n $sockname Host: server.changed.for.security
sockwrite -n $sockname Accept: text/plain
sockwrite -n $sockname Pragma: no-cache
sockwrite $sockname $crlf
set -u300 %sancupdate.Body $false
}
on *:SOCKREAD:sancupdate:{
if ($sockerr) {
echo -a 1!WARNING! 1Update Error, try again later 4!WARNING!
}
var %text
while (1) {
sockread %text
if (!$sockbr) { return | echo -a No info was read }
if (!%text) set -u300 %sancupdate.Body $true
if (%sancupdate.Body) && (%text) {
set %Script.Current.Version $gettok(%text, 2, 32)
if (%Script.Current.Version > %version ) {
downloadscript
goto next
}
elseif (%Script.Current.Version == %version ) {
echo -a 12script is up to date already. Thanks for staying current.
goto next
}
:next
sockclose $sockname
unset %sancupdate.Body
unset %Script.Current.Version
halt
}
}
}