CLEO Help NRG-500 Jump like BMX

CLEO related

Rough

Active member
Joined
Mar 7, 2015
Messages
42
Reaction score
4
hello, Is there a way to create a cleo mod where when you press a KEY, let's say for example the ALT key, the nrg will do a little jump like the mountain bike does? Thanks!
 

kenpeo

Active member
Joined
May 10, 2014
Messages
28
Reaction score
3
Edit
07D5: set_car 0@ velocity_in_direction_XYZ 0.0 0.0 0.5 rotation_velocitiesXY 0.0 0.0 unk 0.0
wait 200

Code:
0000: NOP

:NONAME_2
wait 10
0AB4: 1@ = var 6
if and
   not 1@ == 1
0AB0:  18 // key active
   Actor.Driving($PLAYER_ACTOR)
else_jump @NONAME_2
03C0: 0@ = actor $PLAYER_ACTOR car
07D5: set_car 0@ velocity_in_direction_XYZ 0.0 0.0 0.5 rotation_velocitiesXY 0.0 0.0 unk 0.0 
wait 200
jump @NONAME_2
 
Top