Hi guys… i made my first game like a month ago, it was a 2 player game but i will like to implement some AI to it to make it a one player game. What kind of AI should i use??? and where should I start??? Any info would be greatlky aprecciated… btw here is the game.
This should be too hard to create simple ai, for the computer puck i would put
onClipEvent(enterFrame){
dist = this._y-puck_mc._y;
// i'd put 1 instead of 0, just so it moves smoother
if(dist>1){
//speed is anything eg 5
this._y -= speed;
}
if(dist<-1){
this._y += speed;
}
}
that should work, and if u want to make the game harder or easier, it’s pretty simple just increase/decrease speed
thanks a lot man… that would do, now i have to polish the game a bit!!
Its actually not that bad
i tweeked a few things but still it needs some polishing… i’ll do it when i have some time… college is taking a lot of time!!! but thanks a lot man!!!