i have the 'fbs script' by [Ka]Force.
when i open the VC:MPServer.Exe, it just loads the one script.
FBS.Nut.
while i have many scripts like FBS-accounts,fbs-functions,e.t.c
and i also wrote that on the fbs.nut
/*
Force's Beginner Scripts v1
Squirrel Version (VCMP/VU)
*/
const ScriptName = "Force's Beginner Scripts";
const Creator = "Force";
function onScriptLoad()
{
// Give some information about the script
print( "[Loaded] " + ScriptName );
print( "Created By: " + Creator );
// We are also going to load the script file which holds most of the custom script functions
dofile( "FBS-Functions.nut" );
dofile("FBS-Accounts.nut");
dofile("FBS-Commands.nut");
dofile("FBS-SysCmds.nut");
dofile("FBS-GoToLoc.nut");
LoadScripts();
it does not load fbs-accounts.nut,fbs-commands.nut,fbs-syscmds.nut and fbs-functions.nut.
but it just loads the FBS.Nut.
it is giving me this error.
so wat to do?
any idea please.