AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

SetKetDelay

 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help
View previous topic :: View next topic  
Author Message
eloc_jcg



Joined: 29 Aug 2007
Posts: 15
Location: Cold Lake

PostPosted: Fri Jul 18, 2008 11:24 pm    Post subject: SetKetDelay Reply with quote

I am trying out this message spammer that someone reccommend to me from here and I am having trouble getting it to work to my liking. For one, it is incredibly slow at typing the messages and often misses keys while trying to type what I want it to type. I figured that it might be where it says SetKeyDelay, but I am not quite sure what the numbers mean. Is that the speed they type or what?
Code:
;;;;;;;;;;START EDITING HERE;;;;;;;;;;

;Ctrl+Alt+A to enable/disable

;Number Of Messages To Spam
number=1

;List Of Message Spams
spam1=Spam.
spam2=
spam3=
spam4=
spam5=
spam6=
spam7=
spam8=
spam9=

;Window To Spam (local/trade)
window=local

;;;;;;;;;;STOP EDITING HERE;;;;;;;;;;;




#SingleInstance ignore
SetKeyDelay,50,100
print=0
index=1

if (window="trade")
{
   win=$
}
else
{
   win={!}
}

loop
{
   if (print=1)
   {
      ControlSend,,% "{enter}" spam%index% "{HOME}" "{!}" "{enter}",Guild Wars
      ;ControlSend,,% "{enter}" spam%index% "{HOME}" "$" "{enter}",Guild Wars
   }

   if (index=number)
   {
      index=1
   }
   else
   {
      index++
   }

   sleep 20000
}


^!a::
{   
   if (print=0)
   {
      print=1
      ControlSend,,{enter}/whisper Eloc Jcg`,Chat Enabled{enter},Guild Wars
   }
   else
   {
      print=0
      ControlSend,,{enter}/whisper Eloc Jcg`,Chat Disabled{enter},Guild Wars
   }
}
Back to top
View user's profile Send private message MSN Messenger
engunneer



Joined: 30 Aug 2005
Posts: 6772
Location: Pacific Northwest, US

PostPosted: Sat Jul 19, 2008 12:59 am    Post subject: Reply with quote

you should Read The Fine Manual for SetKeyDelay.
_________________
Unless otherwise noted, all code is untested.
Common Answers: 1.(Loops, Viruses, etc.) 2. Search 3.RTFM
Back to top
View user's profile Send private message Visit poster's website
5parxIsTooLazy4Login
Guest





PostPosted: Sat Jul 19, 2008 2:01 am    Post subject: Re Reply with quote

Hey where is that at Enguuner? Sorry probably mis-spelled that.
Back to top
[VxE]



Joined: 07 Oct 2006
Posts: 1130

PostPosted: Sat Jul 19, 2008 2:46 am    Post subject: Re: Re Reply with quote

5parxIsTooLazy4Login wrote:
Hey where is that at Enguuner?

http://www.autohotkey.com/docs/commands/SetKeyDelay.htm

Well, I answered this because the manual doesn't have a section on "where to find the manual" Rolling Eyes
_________________
My Home Thread
More Common Answers: 1. It's in the FAQ 2. Ternary ( ? : ) guide 3. Post code with [code][/code] tags
Back to top
View user's profile Send private message
5parxTooLazyForLogin
Guest





PostPosted: Sat Jul 19, 2008 11:20 am    Post subject: Re Reply with quote

Oh. Lol
I thought there was another heavenly article on ControlSend because I have problems with it too.
Back to top
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group