Well, because the main.cs is the main means of execution for the entire game, I put ONE line on it:
e
xec("game/server/main.cs");
I made another main.cs, which is a blank file, and has a similar purpose to Dash's or AC's main.cs for their admin scripts. Because you are bound too execute tons of scripts, some of which might spam up your main.cs (the one you didn't make). The main.cs wasn't intended by the creators (at least I don't think) to be used to execute 20 player made scripts. So, put one execution line to another main.cs file (you can really name it whatever you want, it's the execution lines that matter) like the one above the leads to it. Yours can be in another file or place, it shouldn't matter. Now you can put all the execution lines that would go in the main
main.cs in the game>server>main.cs (or where ever you put yours). So now you have blank file that can be used to execute things just as well as the main
main.cs, minus the horrible spam and ruining your game. In short this is what I did:
1.)
Make a new blank.cs file and name it main.cs in your server folder.
2.)
execute that main.cs you just made. If you put in server (like me) you can just copy and paste this, exec("game/server/main.cs"); , at the bottom, one space from all the scripting humbo jumbo.
3.)
Now that you have properly executed your new blank main.cs, you can execute everything in this new main.cs you created. You can clear all execution lines out of the main
main.cs all except the one executing your new main.cs, and copy + paste them to the new main.cs.
Important Note
Whenever you execute something in your main.cs file, make sure it has it's own line. In the above case for executing the duplicate main.cs, it should be at the very bottom, at least on line bellow the other scripting stuff. If for some reason, you made a mistake when you executed something in main.cs, or any other heavily executed file, all other executed lines that ran properly before will not run correctly.
I AM NOT SURE IF THIS WILL HELP WITH YOUR GUISE'S PROBLEM ABOUT BOTS. I HAVE AN INTIRELY DIFFERENT HYPTHESIS ON THAT. THIS IS A GOOD WAY TO CLEAR OUT SPAM FROM YOUR MAIN.CS, WHICH SHOULDN'T BE USED FOR EXECUTION. PLEASE MAKE A DUPLICATE OF YOUR MAIN.CS OR EVEN YOUR INTIRE THINKTANKS APPLICATION, JUST INCASE YOU MESS UP BIG TIME AND NEED TO RE-TRY. THANK YOU!
Well, because the main.cs is the main means of execution for the entire game, I put ONE line on it:
e xec("game/server/main.cs");
I made another main.cs, which is a blank file, and has a similar purpose to Dash's or AC's main.cs for their admin scripts. Because you are bound too execute tons of scripts, some of which might spam up your main.cs (the one you didn't make). The main.cs wasn't intended by the creators (at least I don't think) to be used to execute 20 player made scripts. So, put one execution line to another main.cs file (you can really name it whatever you want, it's the execution lines that matter) like the one above the leads to it. Yours can be in another file or place, it shouldn't matter. Now you can put all the execution lines that would go in the main main.cs in the game>server>main.cs (or where ever you put yours). So now you have blank file that can be used to execute things just as well as the main main.cs, minus the horrible spam and ruining your game. In short this is what I did:
1.) Make a new blank.cs file and name it main.cs in your server folder.
2.) execute that main.cs you just made. If you put in server (like me) you can just copy and paste this, exec("game/server/main.cs"); , at the bottom, one space from all the scripting humbo jumbo.
3.) Now that you have properly executed your new blank main.cs, you can execute everything in this new main.cs you created. You can clear all execution lines out of the main main.cs all except the one executing your new main.cs, and copy + paste them to the new main.cs.
Important Note
Whenever you execute something in your main.cs file, make sure it has it's own line. In the above case for executing the duplicate main.cs, it should be at the very bottom, at least on line bellow the other scripting stuff. If for some reason, you made a mistake when you executed something in main.cs, or any other heavily executed file, all other executed lines that ran properly before will not run correctly.
I AM NOT SURE IF THIS WILL HELP WITH YOUR GUISE'S PROBLEM ABOUT BOTS. I HAVE AN INTIRELY DIFFERENT HYPTHESIS ON THAT. THIS IS A GOOD WAY TO CLEAR OUT SPAM FROM YOUR MAIN.CS, WHICH SHOULDN'T BE USED FOR EXECUTION. PLEASE MAKE A DUPLICATE OF YOUR MAIN.CS OR EVEN YOUR INTIRE THINKTANKS APPLICATION, JUST INCASE YOU MESS UP BIG TIME AND NEED TO RE-TRY. THANK YOU!
-CannedSplam©