TTMod Server Install

1
So the minute I upload the TTMod Server files to my server and make the 1 change in the main.cs file, the server will not start up properly. Any ideas?

If anyone would like to join my discord and walk me thru it, I'd be eternally grateful. If I am not online, I will PM you when I see that you are on.

https://discord.gg/YspjkW4

Thanks in advance,
Dark

Re: TTMod Server Install

2
Would need more info to help you out. Stated you edited the Main.cs as it says to do in the read me file? make sure when editing the file you copy and paste the line after exec("scripts/root.cs");

So the correct way would look like the following

echo(" --- Compiling all files ---");
compileFiles("*.cs");
compileFiles("*.gui");
compileFiles("*.ts");
echo(" --- Exiting after compile ---");
quit();
}
else
{
exec("scripts/root.cs");
}

Re: TTMod Server Install

3
Sorry think i left the line of config out on the first one i submitted just in case..




if($compileAll)
{
echo(" --- Compiling all files ---");
compileFiles("*.cs");
compileFiles("*.gui");
compileFiles("*.ts");
echo(" --- Exiting after compile ---");
quit();
}
else
{
exec("scripts/root.cs");
exec("TTmod/init.cs");
}