I'am building a game in XNA, and I'am very new to XNA as well, but I got to start somewhere. Almost everything in my games works perfect. It is an topview racing game. The only problem is that I want to last the bonuses, that I pickup from the map last for a given time, like 3 seconds, I know that I need to use a timer, but I don't know how I should use it.
this is a part of code, I use when the car collides with a tile of my map:
if (map[x][y] == 0)
{
if (speedBonus)
{
car.speed = 450;
}
else
{
car.speed = 200;
}
I hope one of you guys can help me with this problem, because I have spent like 2 hours fixing it, but my code didn't help me out. Thanks in advance!
