Hello, Ive made a map with a door and a key, when i use the key on the door it says "Cannot Use Item This Way". heres my .hps file. (ALSO the key's (one key) name is "monsterdoorkey" and the door "monsterdoor")
void OnStart()
{
AddUseItemCallback("", "monsterdoorkey", "monsterdoor", "LockFunction", true);
}
void LockFunction(string &in asItem, string &in asEntity)
{
SetSwingDoorLocked("monsterdoor", false, true);
PlaySoundAtEntity("", "unlock_door", "door1", 0, false);
RemoveItem("monsterdoorkey1");
}
And heres my lang file
<LANGUAGE>
<CATEGORY Name="CustomStoryMain">
<Entry Name="Description">This is an story and a little remake of Martin's AKA "Marwin" House. Have FUN!.[br]Thank You For Playing And Downloading This Map![br]support me at youtube Z3bProductions[br]Also bring an extra pairofpants! HEHEH</Entry>
</CATEGORY>
<CATEGORY Name="Inventory">
<Entry Name="ItemDesc_monsterdoorkey">Key To Hallway</Entry>
<Entry Name="ItemName_monsterdoorkey">Hallway Key</Entry>
</CATEGORY>
</LANGUAGE>
also anyone who knows how to make a note/text appear on pickup?