Silent Darkness
Junior Member
Posts: 37
Threads: 9
Joined: Jul 2012
Reputation:
0
|
{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.
|
|
07-19-2012, 11:01 PM |
|
JenniferOrange
Senior Member
Posts: 424
Threads: 43
Joined: Jun 2011
Reputation:
33
|
RE: Script Error: Item not Declared
void OnStart()
{
}
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()
{
}
The .lang is fine, though you've forgotten void OnStart() and putting quotes around the key name. Should work now!
Ba-da bing, ba-da boom.
|
|
07-20-2012, 12:54 AM |
|
Silent Darkness
Junior Member
Posts: 37
Threads: 9
Joined: Jul 2012
Reputation:
0
|
RE: Script Error: Item not Declared
(07-20-2012, 12:54 AM)JenniferOrange Wrote: void OnStart()
{
}
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()
{
}
The .lang is fine, though you've forgotten void OnStart() and putting quotes around the key name. Should work now! .... I AM AN IDIOT.
Works now.
|
|
07-20-2012, 03:12 PM |
|
|