Author Topic: Script prob.  (Read 1809 times)

0 Members and 1 Guest are viewing this topic.

Offline eagle

  • Street Thug
  • *
  • Posts: 4
    • View Profile
Script prob.
« on: November 07, 2013, 05:19:28 pm »
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.

Offline stormeus

  • VC:MP Developer
  • VC:MP Veteran
  • *
  • Posts: 1122
    • View Profile
Re: Script prob.
« Reply #1 on: November 07, 2013, 05:27:00 pm »
1. We do not provide official support for Squirrel scripts. Please take Squirrel-related questions to http://vcmp.liberty-unleashed.co.uk
2. FBS is obsolete and not recommended for use anymore.
Do not PM me for support.