Infomon does not recognize the GS Test instance, it checks for "GSTest" rather than the actual "GST"
Fixed in my copy by changing
unless XMLData.game =~ /^(?:GSF|GSIV|GSPlat|GSTest)$/
echo "This script is meant for Gemstone Prime, Platinum, or Shattered. It will likely cause problems on whatever game you're trying to run it on..."
exit
end
to
unless XMLData.game =~ /^(?:GSF|GSIV|GSPlat|GSTest|GST)$/
echo "This script is meant for Gemstone Prime, Platinum, or Shattered. It will likely cause problems on whatever game you're trying to run it on..."
exit
end
;tlogin is a script I wrote that mirrors ;login but logs into Test, and may be used for testing if needed.
Infomon does not recognize the GS Test instance, it checks for "GSTest" rather than the actual "GST"
Fixed in my copy by changing
to
;tloginis a script I wrote that mirrors;loginbut logs into Test, and may be used for testing if needed.