Facebook Twitter YouTube Frictional Games | Forum | Privacy Policy | Dev Blog | Dev Wiki | Support | Gametee


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
FATAL ERROR: Could not load script file
WalkingTerror Offline
Junior Member

Posts: 2
Threads: 1
Joined: Jun 2017
Reputation: 0
#1
FATAL ERROR: Could not load script file

I had all done and set up and then this error showed up what am i doing wrong ? Sad And the .HPS and .Map file is in the maps folder and have both exact same names Sad

This is my Code:

void OnStart()
{
AddUseItemCallback("", Key, Door, "UseKeyOnDoor", true);
}

void UseKeyOnDoor(string &in asItem, string &in asEntity)
{
SetSwingDoorLocked("Door", false, true);
}

void OnEnter()
{
SetPlayerLampOil(100);
PreloadSound("amb_idle.snt");
}

void OnLeave()
{
}


Attached Files
.png   Screenshot (1).png (Size: 30.75 KB / Downloads: 143)
06-11-2017, 10:48 PM
Find
Romulator Offline
Not Tech Support ;-)

Posts: 3,628
Threads: 63
Joined: Jan 2013
Reputation: 195
#2
RE: FATAL ERROR: Could not load script file

The error code tells you your issue and apparently they are on your third line. Key and Door are not declared.

Look at your script's 3rd line: the AddUseItemCallback.

The script telling you that they are not declared means that the script thinks you're referencing something else in the .hps file. Really, all that you have done is forget to put them in quotation marks ( "" ) because they are string references. Provided you have an entity named "Key" and "Door" in your Level Editor, this should work.

PHP Code: (Select All)
AddUseItemCallback("""Key""Door""UseKeyOnDoor"true); 

Discord: Romulator#0001
[Image: 3f6f01a904.png]
06-12-2017, 09:32 AM
Find
WalkingTerror Offline
Junior Member

Posts: 2
Threads: 1
Joined: Jun 2017
Reputation: 0
#3
RE: FATAL ERROR: Could not load script file

(06-12-2017, 09:32 AM)Romulator Wrote: The error code tells you your issue and apparently they are on your third line. Key and Door are not declared.

Look at your script's 3rd line: the AddUseItemCallback.

The script telling you that they are not declared means that the script thinks you're referencing something else in the .hps file. Really, all that you have done is forget to put them in quotation marks ( "" ) because they are string references. Provided you have an entity named "Key" and "Door" in your Level Editor, this should work.

PHP Code: (Select All)
AddUseItemCallback("""Key""Door""UseKeyOnDoor"true); 


Thank you it works! Smile
06-14-2017, 12:21 PM
Find
Romulator Offline
Not Tech Support ;-)

Posts: 3,628
Threads: 63
Joined: Jan 2013
Reputation: 195
#4
RE: FATAL ERROR: Could not load script file

No problem! Good luck on your project Smile If you have any more questions, feel free to post them here Smile

Discord: Romulator#0001
[Image: 3f6f01a904.png]
(This post was last modified: 06-15-2017, 08:53 AM by Romulator.)
06-15-2017, 08:52 AM
Find




Users browsing this thread: 1 Guest(s)