CLEO Help send chat message without sampfuncs opcodes

CLEO related
Status
Not open for further replies.

clau666

Member
Joined
Dec 7, 2018
Messages
8
Reaction score
0
here's my little script. i want to make a cleo script for 0.3.dl without using sampfuncs opcodes.
is there any way to send chat messages without 0AF9: samp say_msg ?
Code:
{$CLEO .cs}
0000:

while true
wait 5000  
      
if
key_down 45
then
0AF9: samp say_msg "/engine"
wait 500
end
             
end
 
Top