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.
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:
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