[In Progress] SHELL - RAT non-responsive

ayzie

New Member
Attempting to use SHELL RAT command results in RAT becoming non-responsive.

I'm attempting to pass the player_id to a batch file to remove the player profile upon death. This causes RAT to become non-responsive.

.SHELL:hardcore.bat {player_id}
 

Trekkan

JFF Administrator
Staff member
Attempting to use SHELL RAT command results in RAT becoming non-responsive.

I'm attempting to pass the player_id to a batch file to remove the player profile upon death. This causes RAT to become non-responsive.

.SHELL:hardcore.bat {player_id}
Ok, did some digging in to this. This is more than likely due to that RAT is waiting for the thread to finish before returning control. So when you close the process that RAT starts, RAT will resume again.

The reason I hold the thread that way is because RAT will respond with the output of your call, in the variable "shell_response". Basically, I need to put an Async switch on this command so you can decide if you want that to happen or not.
 
Top