im doing this at the moment
if (dbMouseClick() == 2)
{
dbSetCameraFOV (0,20.0f);
dbShowSprite (970);
dbHideObject (10);
}
else
{
dbSetCameraFOV (0,62.0f);
dbHideSprite (970);
dbShowObject (10);
}
if ( dbMouseClick()== 3)
{
dbSetCameraFOV (0,20.0f);
dbShowSprite (970);
dbHideObject (10);
dbPlaySound(690);//Play gun sound
dbLoopSound(690,0,10000,0);//Loop it again and again
}
else
{
dbSetCameraFOV (0,62.0f);
dbHideSprite (970);
dbShowObject (10);
dbPauseSound(690);
}
if ( dbMouseClick() == 1)//If left mouse button is pressed
{
dbShowObject(11);//show muzzleflash
dbRollObjectLeft ( 11 , (float)(rand() % 360) );
dbPlaySound(690);//Play gun sound
dbLoopSound(690,0,10000,0);//Loop it again and again
}
else//otherwise
{
dbHideObject(11);//hide muzzleflash
dbPauseSound (690);
}
}
This stops me from even opening up the scope have you got any ideas how to fix this ? Please post
"Lifes like a box of chocolates, you never know which one you get" Forest Gump
Unless you read the leaflet, thats why hes so "different"