Resource icon

CLEO Release Auto KeyBind

CLEO related
Status
Not open for further replies.

DC_BZz

Active member
Joined
Jul 9, 2015
Messages
40
Reaction score
0
ed74cfdcd8c41c262c73c28100b63fcc.png

That error every time.
 

Assassin_

New member
Joined
Jul 2, 2015
Messages
4
Reaction score
0
Hello there, Can you tell us exactly how we can edit this I mean Time and Command? I mean which code lines should we change for time and cmd, for example, I want to use /Find 1 for every 2 minutes
 

DedeRaditya

Active member
Joined
Apr 12, 2015
Messages
45
Reaction score
1
Thanks a lot man! It is on milisecond right? :D I think it works well on my RP server.
 

Zlatan

New member
Joined
Apr 19, 2019
Messages
1
Reaction score
0
I always take Crash when I want to edit it. Can you tell me why? :(
 

Parazitas

God
Joined
Jan 2, 2017
Messages
3,113
Solutions
5
Reaction score
878
Location
Lithuania
Can you make it? , PLS
Put in cleo folder , run samp with administrator permisions , close samp and now you have ini file in your cleo folder.
Press keyboard keys to activate bind.
KB1 , KB2 , KB3 , KB2 , KB4 , KB5 , KB6 , KB7 , KB8 , KB9.
Possible send text or command.
Possible set text or command time interval.
Good luck..
 

Attachments

  • KeyBinder.cs
    30.3 KB · Views: 52

ThewarII

Member
Joined
Mar 28, 2016
Messages
18
Reaction score
0
Hello world.

This is Auto KeyBind cleo.
Activate / Deactivate: In server say /akb

KeyBind sends text based on your down time. Now, every 3 minutes
You can change the text for what you want.​

- Most helpful -
Administrators / VIP`s when they publish assistance, etc. in server.

For Edit:
Code:
{$CLEO .cs}
0000:
thread "KeyBind"
0B34: samp register_client_command "akb" to_label @cmd
0@ = 0

/// wait 1000 - 1 seconds
/// wait 30000 - 3 minutes

//////

:MAIN       
wait 0
if
0@ == 1
then
wait 5000  /// You can change time        
0AF9: samp say_msg "TEXT 1"
end

if
0@ == 1
then
wait 5000  /// Pause before moving on to the next ad - 5seconds
end

//////
if
0@ == 1
then
wait 30000  /// You can change time        
0AF9: samp say_msg "TEXT 2"
end

if
0@ == 1
then
wait 5000  /// Pause before moving on to the next ad - 5seconds
end

//////
if
0@ == 1
then
wait 30000  /// You can change time        
0AF9: samp say_msg "TEXT 3"
end

if
0@ == 1
then
wait 5000  /// Pause before moving on to the next ad - 5seconds
end

//////
if
0@ == 1
then
wait 30000  /// You can change time        
0AF9: samp say_msg "TEXT 4"
end

if
0@ == 1
then
wait 5000  /// Pause before moving on to the next ad - 5seconds
end

///////
if
0@ == 1
then
wait 30000  /// You can change time     
0AF9: samp say_msg "TEXT 5"
end

if
0@ == 1
then
wait 5000  /// Pause before moving on to the next ad - 5seconds
end

SAMP.CmdRet()
jump @MAIN       

:CMD
wait 0
if
056D:   actor $PLAYER_ACTOR defined
then
0B12: 0@ = 0@ XOR 1
if
0@ == 1
then
0ACD: show_text_highpriority "Auto Key Bind: ~g~ON~w~" time 1500
else
0ACD: show_text_highpriority "Auto Key Bind: ~r~OFF~w~" time 1500
end
end
SAMP.CmdRet()
jump @MAIN

If i am him, i use autohotkey for that.
much cleo same mean less fps on game when play long time.
 
Status
Not open for further replies.
Top