21.01.2014, 14:14
(
Последний раз редактировалось DuelZ; 21.01.2014 в 16:51.
)
1) I don't think this is the right forum to ask.
2) You can use AutoHotKey to get the job done.
3) Here is a small script which you can use with AHK.
Sends the command every 3mins
F10 to Start
F11 to Stop
F12 to Close
2) You can use AutoHotKey to get the job done.
3) Here is a small script which you can use with AHK.
Код:
#NoEnv
SendMode, Input
#IfWinActive GTA:SA:MP
houseid := 0 ; Starts at this ID
loops := 5001 ; Ends at this ID [Added extra 1 to complete till 5000]
; Starts script
F10::
Send, {Enter}
Loop, %loops%
{
if(houseid < loops)
{
Send, t/housename %houseid% Contact admin for this house{Enter}
Sleep, 180000 ; Milliseconds before the next message is send
houseid ++ 1
}
else
{
break
}
}
return
; Stops script
F11::
Reload
Send, ^a{BS}{Esc}
return
; Closes script
F12::
ExitApp
F10 to Start
F11 to Stop
F12 to Close

