• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

any actionscripters for flash wanna help?

PHiuR

Diamond Member
right now i have a small car game thing.

i have it so that when the car hits this "ice patch"
it speeds up. but i can't get it to go regular speed when it comes off the "ice patch"


if (this.hitTest(_root.currentCar._x,_root.currentCar._y, true) == true)
{
_root.currentCar.maxSpeed = _root.currentCar.maxSpeed + 20;
}
else
{
_root.currentCar.maxSpeed = _root.currentCar.maxSpeed;
}


i can't figure it out...it just stays going super fast. =\
 
Back
Top