Hi formun i need your's help but i have a problem!!!
this script no running in amnesia. is a custom history
i have a error in amnesia (loading page") and hps no running in map!!!!!
////////////////////////////
// Run when entering map
void OnEnter()
{
{ AddUseItemCallback("", "awesomekey_1", "mansion_1", "KeyOnDoor", true);
RE: I Have A problem in Script!!! Please Help me!!
The void OnEnter() is having two '{'s
so, it should look like this:void OnEnter()
{
AddUseItemCallback("", "awesomekey_1", "mansion_1", "KeyOnDoor", true);
}
Also, your Function is named wrong, it should be "KeyOnDoor" but yours is "MyFunc", so change it