Im trying to give my actor two attacks with one button. First he has a regular shooting attack. When you press z he shoots a bullet at you. So basically at the
Z button keydown event he creates the actor
(bullet) which flies across the screen when its created. Now what i want to do is make it so that after you hold down
Z For a specific time it changes the attack to a different actor .
for example (press Z once = fire one bullet) (hold Z down for 5 seconds = fire machine gun).So i tried making a variable called
(charge_count) and set its start up number to 0.Then i made it so that when
Z is pressed the number goes up by 1 and enabled repeat. Therefore when you press and hold
Z the charge_count goes up by one and then keeps on increasing until the keyup event.At the keyup event the player will check if the charge_count is above 29 and if so then it would change the type of attack.To me all of my methods seem practical and should work, but they dont. When you hold and realse the Z button it does change the attack, but it does the same thing when you simply press it and it also creates the bullet at the same time; firing two attacks instead of one.I've tried everything i can think of so i guess my coding is off, if you can please help.
heres my coding
[PLAYER]{DRAW ACTOR}- Code: Select all
chargecount=0;
[PLAYER]{KEYDOWN(Z)}- Code: Select all
chargecount+1;
(REPEAT)[PLAYER]{KEYUP(Z)}- Code: Select all
if (charge_count > 29);
{CreateActor("player_charge1", "machine_gun", "(none)", "(none)", 10, -4, false);};
WHAT AM I DOING WRONG?
