I seem to be on a roll today with my questions. Alright so Im working on making it when the character is out of mags he can no longer shoot. I think I am just writing it funny or something small.
private bool outofmags = false;
This is in my void update V V V
if (VariableScript.pistolclip <= 0)
{
outofmags = true;
}
if (VariableScript.pistolclip >= 1)
{
outofmags = false;
}
Later on ....
if ( Input.GetMouseButtonDown(0) )
{
if outofmags == false;
{
HandleBullets();
}
if outofmags == true;
{
// ignore this here, Ill just make it play a sound or something instead of calling another function that doesn't shoot
}
}
I get the error Assets/Scripts/AIscript.cs(129,44): error CS1525: Unexpected symbol `outofmags', expecting`('
I know it tells me what It is expecting I am just unsure on how to fix it.
Hopefully you get what I want it to do.
Im learning a lot from my questions cheers guys.