Re: Shooting - How is it done?
Here is where I put it: (actor)ammoCount >> Draw Actor >> Set Text. However it just shows that text.. not the variable.
//Another silly picture removed
//Another silly picture removed
sprintf(text, "%i", clip);Lacotemale wrote:[show actor].textNumber = clip;
What do you mean by [show actor]? What do I have to put there?
if(weapon <1 && right==1)
{
ChangeAnimation("Player", "stab-right", FORWARD);
}
else
ChangeAnimation("Player", "stab-left", FORWARD);
else
{
PlaySound2("data/noammo.wav", 1.000000, 1, 0.000000);
ChangeAnimation("Player", "beretta-empty-left", FORWARD);
}
if(weapon ==0 && right==1 && left==0)
{
ChangeAnimation("Player", "stab-right", FORWARD);
}
if(weapon ==0 && left==1 && right==0)
{
ChangeAnimation("Player", "stab-left", FORWARD);
}