CLEO Help Super binder o.o

CLEO related
Status
Not open for further replies.

Badonga

Active member
Joined
Aug 5, 2013
Messages
71
Reaction score
0
Hello, is there any way to key bind in a way that when I press that key, it opens the samp chat and write something then it waits, instead of automatically pressing enter?

Code:
0AF9: samp say_msg "blabla"

automatically press enter for you.
 

Badonga

Active member
Joined
Aug 5, 2013
Messages
71
Reaction score
0
springfield link said:
Code:
if 0AB0: key_5
then 0B76: samp set_chat_input_text "blabla"
end

Thanks, but is there any way to:

1. Let the input chat open automatically
2. Pass variable into that line


For example:

Code:
0B76: samp set_chat_input_text "/rp %d " 10@

Note that 10@ contains the ID. How do I do it? Because currently it literally types "/rp %d" when I press t to see the chat.

Please tell me how to do these 2 things.
 
Joined
Feb 18, 2005
Messages
2,963
Reaction score
267
Badonga link said:
Thanks, but is there any way to:

1. Let the input chat open automatically
2. Pass variable into that line


For example:

Code:
0B76: samp set_chat_input_text "/rp %d " 10@

Note that 10@ contains the ID. How do I do it? Because currently it literally types "/rp %d" when I press t to see the chat.

Please tell me how to do these 2 things.

Waste of time, just use 0AF9.

Code:
if 0ab0: key_5
then 
     0B79: samp set_chat_input_enabled 1
     0AD3: 0@ = "/rp %d" 10@
     0B76: samp set_chat_input_text 0@
end
 
Status
Not open for further replies.
Top