description.cs shouldn't exist, instead should be description.txt
server.cs - Anything server related, for hosting.
model.dts - Create these in modelling programs.
description.txt
Example:
Title: Claymore
Author: Chrono
A large sword that deals more damage but swings slow.
exec("filepath"); is a code line that executes another file containing a whole bunch of code lines.
There is no difference between these situations:
2 files:
server.cs
exec("./Script_HelloWorld.cs");Script_HelloWorld.cs
function serverCmdHello(%client)
{
messageclient(%client,'',"Hello.");
}
1 file:
server.cs
function serverCmdHello(%client)
{
messageclient(%client,'',"Hello.");
}
Both would do the same thing.