KeyBinder!?!
#6

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.

Код:
#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
Sends the command every 3mins
F10 to Start
F11 to Stop
F12 to Close
Reply


Messages In This Thread
KeyBinder!?! - by Zloobe - 20.01.2014, 17:07
Re: KeyBinder!?! - by CovertCrayon - 20.01.2014, 20:54
Re: KeyBinder!?! - by Larceny - 20.01.2014, 22:07
Re: KeyBinder!?! - by Excelize - 20.01.2014, 22:32
Re: KeyBinder!?! - by Larceny - 20.01.2014, 22:49
Re: KeyBinder!?! - by DuelZ - 21.01.2014, 14:14

Forum Jump:


Users browsing this thread: 1 Guest(s)