The following warnings occurred:
Warning [2] count(): Parameter must be an array or an object that implements Countable - Line: 906 - File: showthread.php PHP 7.2.24-0ubuntu0.18.04.17 (Linux)
File Line Function
/showthread.php 906 errorHandler->error



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
{SOLVED} Script Error: Item not Declared
Silent Darkness Offline
Junior Member

Posts: 37
Threads: 9
Joined: Jul 2012
Reputation: 0
#1
Exclamation  {SOLVED} Script Error: Item not Declared

I've been trying to make a custom map, test my skills a bit, learn a few new things, and maybe make a cool map. I followed a tutorial to create the actual map, and that went fine. However, after setting up the script files, when I try to start the map, I get a script error pointing to lines 12 and 14, saying that the key name is undeclared.

Here is what the script file text reads:


////////////////////////////
//Run when entering map
void OnEnter()
{
AddUseItemCallback("", "Closet_Key", "Closet_door","UsedKeyOnDoor",true);
}

void UsedKeyOnDoor(string &in asItem, string &in asEntity)
{
SetSwingDoorLocked("Closet_door", false, true);
PlaySoundAtEntity("", "unlock_door", "Closet_door", 0, false);
RemoveItem (Closet_Key);
}


////////////////////////////
// Run when leaving map

void OnLeave()
{

}

Also, the Extra english Language file reads the following:


<LANGUAGE>
<RESOURCES>
</RESOURCES>
<CATEGORY Name="CustomStoryMain">
<Entry Name="Description">Just a test.</Entry>
</CATEGORY>
<CATEGORY Name="Inventory">
<Entry Name="ItemDesc_Closet_Key">"This should open the closet door......what could possibly be making that noise?"</Entry>
<Entry Name="ItemName_Closet_Key">"Closet Door Key"</Entry>
</CATEGORY>
</LANGUAGE>

I've worked with Javascript before, however, I am unsure how to resolve this, and declare the method. Any suggestions would be helpful.
(This post was last modified: 07-20-2012, 10:33 PM by Silent Darkness.)
07-19-2012, 11:01 PM
Find


Messages In This Thread
{SOLVED} Script Error: Item not Declared - by Silent Darkness - 07-19-2012, 11:01 PM



Users browsing this thread: 1 Guest(s)