motxu wrote:
sorry man, ive been tring but dont understand xD.
Imagine that if I press "1" i want it to say hello.
If i press "2" i want it to say Good bye.
Could u make this example for me plz?

thanks
Code:
sub main
while true
repeat
wait(100)
until uo.getglobal('qwerty1') or uo.getglobal('qwerty2')
if uo.getglobal('qwerty1') then
uo.say('Hello')
if uo.getglobal('qwerty2') then
uo.say('Good bye')
wend
end sub
sub m1
uo.setglobal('qwerty1','true')
wait(250)
uo.setglobal('qwerty1','false')
end sub
sub m2
uo.setglobal('qwerty2','true')
wait(250)
uo.setglobal('qwerty2','false')
end sub
1) Bind 1 with "m1" sub and 2 with "m2" sub
(exec m1) and (exec m2)
2) Launch "main"
3) press 1 or 2 on your keyboard.