ronmage Posted December 2, 2017 Posted December 2, 2017 So what I am trying to do it read from the command console of a dedicated server. I have tried a handful of ways but I show the last attempt I made. I get blank or ill read "0", even with text on the window. #include <FileConstants.au3> #include <MsgBoxConstants.au3> #include <Constants.au3> Global $pid, $Message $pid = Run("C:\isr\Build\IR.exe -server", "", @SW_MINIMIZE , $STDERR_CHILD + $STDOUT_CHILD) While 1 $Message = StdoutRead($pid,True) if @error then exitloop ConsoleWrite($Message + @CRLF) Sleep(500) WEnd This is an Interstellar Rift game server.
Moderators JLogan3o13 Posted December 2, 2017 Moderators Posted December 2, 2017 @ronmage You seem, in the 6 years you've been here, to have missed reading the forum rules. I would suggest you read them now: Quote Launching, automation or script interaction with games or game servers, regardless of the game. "Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball How to get your question answered on this forum!
Recommended Posts