Hi, this my code:
It works fine but only on bikes. It doesn't effect the handling of cars.
Any solution?
Code:
{$CLEO .cs}
0000: NOP
:New
wait 0
if
0ADC: test_cheat "Handon"
jf [member=25950]new[/member]
if
ACTOR.Driving($PLAYER_ACTOR)
jf @Not_Driving
25@ = ACTOR.CurrentCar($PLAYER_ACTOR)
0423: set_car 25@ improved_handling_to 5.0
0AF8: samp add_message_to_chat "Handling.cs Activated!" color -1
goto @next
:next
wait 0
if
0ADC: test_cheat "Handoff"
jf @Next
0423: set_car 25@ improved_handling_to 1.0
0AF8: samp add_message_to_chat "Handling.cs Deactivated!!" color -1
goto [member=25950]new[/member]
:Not_Driving
wait 0
0AF8: samp add_message_to_chat "You're not driving" color -1
goto [member=25950]new[/member]
It works fine but only on bikes. It doesn't effect the handling of cars.
Any solution?