I have this problem in gE when I make my own functions. it's with me almost everytime i make a game on gE. I have a workaround solution for it but I want to know if someone else is experiencing this. I want to know if there are any other solutions or if this is my fault because I'm making a mistake or is it gE.
here's the problem. I'll give an example to be easily understood.
first I have 2 actors: player and baddie. player has movements and the baddie I have a simple chase code on the draw actor/script editor.
- Code: Select all
// dist is double and is a global variable declared on the global editor and not on the user variables
dist = distance(x, y, player.x, player.y);
//get distance then chase
if(dist <= 200)
{
//rotation so baddie will face where player is
double b_angle = direction(x, y, player.x, player.y);
animpos = (b_angle/360)*nframes;
//velocity of the chase
angle = direction(x, y, player.x, player.y);
directional_velocity = 5;
}
I have this code on the draw actor of the baddie. and to optimize my code I thought that I will also be able to use this code not just on baddie's but maybe other actors so i made a function on the global code editor
- Code: Select all
void chase()
{
// dist is double and is a global variable declared on the global editor and not on the user variables
dist = distance(x, y, player.x, player.y);
//get distance then chase
if(dist <= 200)
{
//rotation so baddie will face where player is
double b_angle = direction(x, y, player.x, player.y);
animpos = (b_angle/360)*nframes;
//velocity of the chase
angle = direction(x, y, player.x, player.y);
directional_velocity = 5;
}
}
I saved it. Tried it on game mode and it works. the baddie chases the player. The problem comes after this.
After trying it on game mode I saved and closed the ged. And when I opened it again and go to game mode the rotation works (where the baddie faces where the player is) but the the chase doesn't. The baddie only rotates on its position but it doesn't chase me.
My solution for this was to copy the whole code again and paste it on the baddie draw actor / game mode and it works then I just delete the code on the draw actor and replace it with the function and go to game mode and it works. it did not happen to me just this once but 2 or 3 times on my other games too. This solution works good but then everytime I open the ged to edit the game I need to do it all over again so that it works.
any idea why this is happening? am I making a mistake somewhere? or is it gE? if so please do let me know... +1

