I got peeved with not being able to start client RC back up after closing it so I made this.
Installation Instructions:
NOTE: This only works on GScript2-enabled servers.
1. Open the client RC's script.
2. Put this function directly below onCreated() (You don't have to, but it makes things simpler so people don't stick it inside a function or anything.)
3. Hit r to start the RC back up again. Yay!
NPC Code:
function onKeyPressed() {
if(params[1] == "r") {
rcoptions.loadvars("rcoptions.txt");
createVars();
createBackround();
}
}