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
[SCRIPT]Variable not declared
Yare Offline
Junior Member

Posts: 22
Threads: 2
Joined: Mar 2013
Reputation: 0
#1
[SCRIPT]Variable not declared

Really weird issue... I hope it's not my derp moment again. In the second map of my Custom Story, I got an error informing, that a certain variable is not declared. I had no clue what's wrong, so I opened hps file of another level I made a few days ago, as it contains a function similar to the one I was just going to make. I was comparing these two functions with eachother for minutes... and couldn't see a difference. I decided to change starting map to see if that previous script still works. And here the weird part begins. It doesn't work! And displays the same error! How in the hell is that possible? It used to work properly just a few days ago! I didn't change anything in that file during this time.
Maybe someone has a clue what the heck is going on. Here are necessary parts of the script (that one from the first map):

Callback:

AddEntityCollideCallback("Player", "ScriptArea_11", "VaseEvent", false, 1);

Function:

void VaseEvent(string &in asParent, string &in asChild, int alState)
{
    SetLocalVarInt("EventChance", RandInt(1,4));
    if (GetLocalVarInt("EventChance")==1)
    {
        SetLocalVarInt("TimeRandomize", RandInt(0,3));
        AddTimer("", TimeRandomize, "VaseEventDelay");
    }
}
void VaseEventDelay(string &in asTimer)
{
    AddPropImpulse("vase01_1", 0, 0, 20, "");
    GiveSanityDamage(10, true);
    SetEntityActive("ScriptArea_11", false);
    SetEntityActive("ScriptArea_12", false);
}

The variable is firstly declared just after OnStart() and OnEnter() (I am not sure if it's necessary after all).
04-08-2013, 10:57 PM
Find


Messages In This Thread
[SCRIPT]Variable not declared - by Yare - 04-08-2013, 10:57 PM
RE: [SCRIPT]Variable not declared - by Yare - 04-08-2013, 11:14 PM
RE: [SCRIPT]Variable not declared - by NaxEla - 04-08-2013, 11:29 PM
RE: [SCRIPT]Variable not declared - by Yare - 04-08-2013, 11:40 PM
RE: [SCRIPT]Variable not declared - by NaxEla - 04-09-2013, 01:53 AM



Users browsing this thread: 1 Guest(s)