Preciso que essa macro envie numeros ORDINAIS do 0 ao 100 {exemplo 1 depois 2 depois 3 depois 4 ate o 100 na ordem numeral}
Se alguem tiver ideia ajudaria muito obrigado!
Code: Select all
F6::txt() ;
txt(){
loop
IfWinActive, ahk_class POEWindowClass
if WinActive("Path of Exile"){
Send, {Enter}
Sleep 100
Random, r, 1, 100 <= ao invez do ramdom queria que fosse ordinal do numero 1 ao 100
Send, % "/Global " r
Sleep 100
Send, {Enter}
Sleep 100
Send, {Enter}
Sleep 1000
Send, #whatup
Sleep 100
Send, {Enter}
Sleep 1000
}
return
}