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
Help with grunt maze pathfinding?
zergling50 Offline
Member

Posts: 74
Threads: 9
Joined: Jul 2012
Reputation: 1
#5
RE: Help with grunt maze pathfinding?

(04-08-2013, 02:05 AM)JustAnotherPlayer Wrote:
(04-07-2013, 08:39 PM)zergling50 Wrote:
(04-07-2013, 06:42 AM)JustAnotherPlayer Wrote: Here. This was a script made by Kyle S.
void OnStart()
{
AddEntityCollideCallback("Player", "PlayerCollide", "MonsterFunction", true, 1);
AddEntityCollideCallback("servant_grunt_1", "PNScriptArea", "MonsterFunction2", false, 1);
}
void MonsterFunction2()
{
for (int i = 1; i <6; i++)
{
AddEnemyPatrolNode("servant_grunt_1", "PathNodeArea_"+i, 0, "");
}
}
void MonsterFunction(string &in asParent, string &in asChild, int alState)
{
SetEntityActive("servant_grunt_1",true);
for (int i = 1; i <11; i++)
{
int x;
switch( i )
{
case 0:
x = 2;
break;
case 10:
x = 4;
break;
default
x = 0;
}
AddEnemyPatrolNode("servant_grunt_1", "PathNodeArea_"+i, x, "");
}
}

Please note that the monster will NOT stop unless you deactivate it.

This seems really cool, is there anything I need to set up for it to work or just add it to my code and run it?
Just try to add it to your code and run it.

When I try running the game it says ERR : Expected ':'
and seems to be pointing around this area in the code

break;
default
x = 0;

also one concern i have is the code references a "PNScriptArea" in one of the addentitycollidecallback's and I have not made any area called this. Do I have to, and what is it's intended purpose so I know where to place it.
04-11-2013, 12:04 AM
Find


Messages In This Thread
Help with grunt maze pathfinding? - by zergling50 - 04-06-2013, 09:08 PM
RE: Help with grunt maze pathfinding? - by zergling50 - 04-11-2013, 12:04 AM
RE: Help with grunt maze pathfinding? - by NaxEla - 04-11-2013, 07:55 AM
RE: Help with grunt maze pathfinding? - by GrAVit - 06-12-2013, 07:59 AM
RE: Help with grunt maze pathfinding? - by GrAVit - 06-13-2013, 10:02 PM



Users browsing this thread: 1 Guest(s)