Resource icon

CLEO Release Auto Radio OFF

CLEO related
Status
Not open for further replies.

A$AP.cs

Well-known member
Joined
Apr 17, 2014
Messages
289
Reaction score
1
Location
Spain
Yo guys, i release a cleo that i found on my folder, it may be useful for some players.
X to make it off
Code:
{$CLEO}
0662: NOP "Regrads from A$AP"

:Start
wait 0
if and
Actor.Driving($PLAYER_ACTOR)
0AB0:  key_pressed 88
jf @Start
wait 100
051E: 1@ = get_current_radio_station
041E: set_radio_station 12
jump @Start
 

Attachments

  • radio_off_key_x.cs
    17.4 KB · Views: 164

Aegis

Active member
Joined
Dec 8, 2013
Messages
57
Reaction score
0
Aren't this cleo already posted by David?  :ppffh:
 

Junellz

Member
Joined
Apr 3, 2014
Messages
17
Reaction score
0
A$AP.cs link said:
[quote author=Junellz link=topic=6866.msg39069#msg39069 date=1398429993]
Can U Change it to B For Me?? Pweeese  :somuchwin:
Here you are
[/quote]


Thx  :forever_opcode_alone:
 

A$AP.cs

Well-known member
Joined
Apr 17, 2014
Messages
289
Reaction score
1
Location
Spain
Junellz link said:
[quote author=A$AP.cs link=topic=6866.msg39071#msg39071 date=1398430356]
[quote author=Junellz link=topic=6866.msg39069#msg39069 date=1398429993]
Can U Change it to B For Me?? Pweeese  :somuchwin:
Here you are
[/quote]


Thx  :forever_opcode_alone:
[/quote]
No problem
 

zaki19

Well-known member
Joined
Feb 27, 2013
Messages
393
Reaction score
0
it not automated you have to hit x  :no:
if you remove the if and and change it to onyl if not sure what will happend
so to make it full automated her you go

Code:
{$CLEO}
0662: NOP "WwW.UgBaSe.eU / A$AP"

:start
0001: wait 0 ms 

09DE:   actor $PLAYER_ACTOR entering_car 


// so i change if player driving car to entering car  like that it will not keep changine the radio 



004D: jump_if_false @start


0001: wait 4000 ms


//to wait untill he is in the car , it works you can change it with if player in car or somethink

//i removed this  1@ = get_current_radio_station because it useless i dont know why you add it


041E: set_radio_station 12

0002: jump @start


complie this and add it to your topic
 

zaki19

Well-known member
Joined
Feb 27, 2013
Messages
393
Reaction score
0
reyfz link said:
Can you make this automatic?

Code:
{$CLEO}
0662: NOP "WwW.UgBaSe.eU / A$AP"

:start
0001: wait 0 ms 

09DE:   actor $PLAYER_ACTOR entering_car 


// so i change if player driving car to entering car  like that it will not keep changine the radio 



004D: jump_if_false @start


0001: wait 4000 ms


//to wait untill he is in the car , it works you can change it with if player in car or somethink

//i removed this  1@ = get_current_radio_station because it useless i dont know why you add it


041E: set_radio_station 12

0002: jump @start
 

Aegis

Active member
Joined
Dec 8, 2013
Messages
57
Reaction score
0
Actually got it from another forum, deal with it
:watchout: He snapped. xD I bet David have a big smile at his face right now.
 

zaki19

Well-known member
Joined
Feb 27, 2013
Messages
393
Reaction score
0
A$AP.cs link said:
[quote author=Aegis link=topic=6866.msg39343#msg39343 date=1398684166]
Actually got it from another forum, deal with it
:watchout: He snapped. xD I bet David have a big smile at his face right now.
:fuck_you:
[/quote]

haha that not big deal , it only simple cleo change it to this and complier it to make it full auto



Code:
{$CLEO}
0662: NOP "WwW.UgBaSe.eU / A$AP"

:start
0001: wait 0 ms 

09DE:   actor $PLAYER_ACTOR entering_car 


// so i change if player driving car to entering car  like that it will not keep changine the radio 



004D: jump_if_false @start


0001: wait 4000 ms


//to wait untill he is in the car , it works you can change it with if player in car or somethink

//i removed this  1@ = get_current_radio_station because it useless i dont know why you add it


041E: set_radio_station 12

0002: jump @start
 

Aegis

Active member
Joined
Dec 8, 2013
Messages
57
Reaction score
0
Or you could just do this. While you drivin the radio's off.
Code:
{$CLEO}
0000:
:Start
wait 0
if 
00DF:   actor $PLAYER_ACTOR driving
else_jump @Start 
041E: set_radio_station 12
0002: jump @Start
Or you could use yours. If you enter the car the radio's off.
Code:
{$CLEO}
0000:
:Start
wait 0 
if
09DE:   actor $PLAYER_ACTOR entering_car
else_jump @Start
wait 4000 
041E: set_radio_station 12
0002: jump @Start
 

zaki19

Well-known member
Joined
Feb 27, 2013
Messages
393
Reaction score
0
Aegis link said:
Or you could just do this. While you drivin the radio's off.
Code:
{$CLEO}
0000:
:Start
wait 0
if 
00DF:   actor $PLAYER_ACTOR driving
else_jump @Start 
041E: set_radio_station 12
0002: jump @Start
Or you could use yours. If you enter the car the radio's off.
Code:
{$CLEO}
0000:
:Start
wait 0 
if
09DE:   actor $PLAYER_ACTOR entering_car
else_jump @Start
wait 4000 
041E: set_radio_station 12
0002: jump @Start


i guess the first one will keep changing your radio freq ??
 

bit_a_bit

New member
Joined
Jul 10, 2014
Messages
2
Reaction score
0
My version is much better:

Code:
{$CLEO}
0000:
:start
wait 0
051E: 0@ = get_current_radio_station
if 
not 0@ == 12
then
041E: set_radio_station 12
end
jump @start

Aways radio off, passenger and driver without any delays/timers.
 

ClausBear

Expert
Joined
Aug 19, 2013
Messages
647
Reaction score
0
bit_a_bit link said:
My version is much better:

Code:
{$CLEO}
0000:
:start
wait 0
051E: 0@ = get_current_radio_station
if 
not 0@ == 12
then
041E: set_radio_station 12
end
jump @start

Aways radio off, passenger and driver without any delays/timers.

can u please compile it for me? i get errors thank you
 
Status
Not open for further replies.
Top