T-T executes before RTB; and it doesn't exec the hooks file
if(isFile("Add-Ons/System_ReturnToBlockland/server.cs"))
{
if(!$RTB::RTBR_ServerControl_Hook)
exec("Add-Ons/System_ReturnToBlockland/RTBR_ServerControl_Hook.cs");
RTB_registerPref("Ammo System","Tier+Tactical Ammo","$Pref::Server::TTAmmo","int 0 2","Script_GamePreferences",0,0,1);
Blah
}
would be accurate, but instead it does
RTB_registerPref("Ammo System","Tier+Tactical Ammo","$Pref::Server::TTAmmo","int 0 2","Script_GamePreferences",0,0,1);
To fix it, just make a folder called zBlah_Blah or something, and give it a description.txt and make the server.cs
if(!$RTB::RTBR_ServerControl_Hook)
exec("Add-Ons/System_ReturnToBlockland/RTBR_ServerControl_Hook.cs");
and the hooks will be setup first so everything works fine.