Author Topic: Error Is something wrong with the world map?  (Read 2988 times)

Error Is something wrong with the world map?
« on: January 23, 2013, 06:43:23 am »
[30:333] FOServer::SScriptFunc::Global_SetSendParameterFunc : Script error: Index already enabled. : main : bool start() : 146, 2 : FOServer::InitReal : Game

Offline Mr Feltzer

  • FOnline: Australia
    • The Core Gaming Australia's Website
Re: Error Is something wrong with the world map?
« Reply #1 on: January 23, 2013, 07:25:47 am »
Inside main.fos have you called the "start()" function twice?
or inside of start() is "Global_SetSendParameterFunc" called twice?
Founder of Fallout Online Australia

Re: Error Is something wrong with the world map?
« Reply #2 on: January 23, 2013, 12:38:42 pm »
No that wasn't the problem damn.. thanks for the help though
still trying to figure it out

Offline Wipe

  • Rotator
  • Random is god
Re: Error Is something wrong with the world map?
« Reply #3 on: January 23, 2013, 01:43:01 pm »
If you're not quite sure why error message shows up, just read it carefuly. What is interesting for you, is this part.
Quote
Index already enabled : main : bool start() : 146, 2

Now what that mess means.

Quote
Index already enabled
You've used SetSendParameter() function twice on same parameter, and engine doesn't allow that; you should recheck the place where error takes place...

Quote
main : bool start() : 146, 2
...and you can find it using this part. First is module (main), then function(bool start()), and finally position in preprocessed file. Open main.fosp file, which is the one and jump to line 146 - that's where you made something wrong. File is bit harder to read, as all defines/macros are already translated, but when you compare .fos and .fosp files, mistakes causing engine to cry are easier to find, and maybe even fix.
Games are meant to be created, not played...

Re: Error Is something wrong with the world map?
« Reply #4 on: January 23, 2013, 03:15:50 pm »
hmm on main.fosb
Line 146 XŽ@ÿ@g0=
i dont get how i made something wrong when i never even touched it..
also its weird encoding
« Last Edit: January 23, 2013, 03:20:06 pm by Bevolard »

Offline Wipe

  • Rotator
  • Random is god
Games are meant to be created, not played...

Re: Error Is something wrong with the world map?
« Reply #6 on: January 23, 2013, 03:39:28 pm »
*Face Palm*

Re: Error Is something wrong with the world map?
« Reply #7 on: January 23, 2013, 03:42:32 pm »
i cant find where i made this problem
« Last Edit: February 04, 2013, 06:53:09 am by Bevolard »