-
Member
Help with "Test your Fap" Skill Game
Someone on the live stream mentioned a "test your Fap" skill game from Evo, I thought I'd give a remake a go.
I thought about some equation involving the rear wheel angular momentum and the brake on/off rate but to be honest I'm stuck.
Any help would be greatly appreciated as always
-
Senior Member
Never got the rotation speed figured out. You could try a simple setup with Contact Triggers to detect:
1. Front tire is on the ground
2. Rear tire is in the air
3. Gas is held down
4. Brake is pressed
Interval Trigger (end game after 3 minutes)
Start = 10,800 ticks (3 minutes)
Interval = 1 tick
Target > End Event
Contact Trigger 1 (Is front tire on ground?)
Target1 = Front tire
Target2 = Ground, Static
ACTIVE > Set Variable_A = 1
INACTIVE > Set Variable_A = 0
Contact Trigger 2 (Is rear tire in the air?)
Target1 = Rear tire
Target2 = Ground, Static
ACTIVE > Set Variable_B = 0
INACTIVE > Set Variable_B = 1
Button_Gas (Is gas held down?)
DOWN > Set Variable_C = 1
RELEASE > Set Variable_C = 0
N-Input (Add requirements together)
A+B+C
Button_Brake
PRESS > Generic Filter
Generic Filter (If 3 requirements are met, increase score each time brake is mashed)
Target1 = N-Input
EQUALS
Target2 = 3
TRUE > Increase Variable_Score +1
-
Member
Thanks Jolan, always appreciate your input... I can see how that might work, I''l sling it together and let you know what happens
-
Member
Thats working well Jolan, thanks again 
I will note for anyone who might want to try this that the 'disable after hit' option MUST be UNCHECKED on the hit triggers (contact triggers) took me a while to work out why it didn't work first time 
I'm gonna implement a '3 turns' system and some way to time each round then its more deco and finished.