CLEO Help Car Repair cleo HELP!

CLEO related
Status
Not open for further replies.

FixmeH

Active member
Joined
Feb 27, 2014
Messages
33
Reaction score
0
So hello everyone, I've found this CLEO here but for some reason it blocks my other cleos such as spread.cs

Code:
// This file was decompiled using SASCM.ini published by GTAG (http://gtag.gtagaming.com/opcode-database) on 14.6.2013
{$CLEO .cs}

//-------------MAIN---------------
0662: printstring "www.ugbase.eu" 

:NONAME_17
wait 0 
if 
   Player.Defined($PLAYER_CHAR)
else_jump @NONAME_17 
if and
   Actor.Driving($PLAYER_ACTOR)
0ADC:   test_cheat "R" 
else_jump @NONAME_17 
0@ = Actor.CurrentCar($PLAYER_ACTOR)
Car.Health(0@) = 5000
jump @NONAME_17

If anyone knows how to fix, it would be wonderful!
 

silentl747

Active member
Joined
Jul 7, 2014
Messages
96
Reaction score
0
because to activated the spread.cs mod you need to type 'spread'

and your cleo contains "R", when your typing "spread" it activates your cleo mod not the spread.cs

try changing to any words i recommend using key_pressed
 

FixmeH

Active member
Joined
Feb 27, 2014
Messages
33
Reaction score
0
Tried adding key_pressed 82 which is R but when I try to log into a server it crashes immediately.


Could somebody fix it for me?
 

silentl747

Active member
Joined
Jul 7, 2014
Messages
96
Reaction score
0
Try using F11, dont use "R" because "spread" haves "R".

Copy the codes below

Code:
// This file was decompiled using SASCM.ini published by GTAG (http://gtag.gtagaming.com/opcode-database) on 14.6.2013
{$CLEO .cs}

//-------------MAIN---------------
0662: printstring "www.ugbase.eu" 

:NONAME_17
wait 0 
if 
   Player.Defined($PLAYER_CHAR)
else_jump @NONAME_17 
if and
   Actor.Driving($PLAYER_ACTOR)
0AB0:   key_pressed 122 // F11  
else_jump @NONAME_17 
0@ = Actor.CurrentCar($PLAYER_ACTOR)
Car.Health(0@) = 5000
jump @NONAME_17
 
Status
Not open for further replies.
Top