![]() |
|
Afk Bot? For a Game. (Combat-Arms) - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Coding (https://sinister.li/Forum-Coding) +--- Forum: Visual Basic & .NET Framework (https://sinister.li/Forum-Visual-Basic-NET-Framework) +--- Thread: Afk Bot? For a Game. (Combat-Arms) (/Thread-Afk-Bot-For-a-Game-Combat-Arms) Pages:
1
2
|
Afk Bot? For a Game. (Combat-Arms) - LostSoul - 03-23-2011 Could someone help me make one? msn : Mpghls@Live.com : CC_Soul@live.com Afk Bot? For a Game. (Combat-Arms) - LostSoul - 03-23-2011 Could someone help me make one? msn : Mpghls@Live.com : CC_Soul@live.com RE: Afk Bot? For a Game. (Combat-Arms) - 1234hotmaster - 03-23-2011 hi well im not bad at making bots but i need some help from Coder-San also i need to see how the game is like.
RE: Afk Bot? For a Game. (Combat-Arms) - 1234hotmaster - 03-23-2011 hi well im not bad at making bots but i need some help from Coder-San also i need to see how the game is like.
RE: Afk Bot? For a Game. (Combat-Arms) - LostSoul - 03-23-2011 Ok after school is over" i can get on at school" I will Pm u back? Oks? You want a video or what? RE: Afk Bot? For a Game. (Combat-Arms) - 1llusion - 03-23-2011 Well, if all you need is sending keys, its quite easy, the basic idea is: Code: SendKeys.SendWait("your key here")example: Code: SendKeys.SendWait("{ENTER}")there are many more combinations, look for them on google put: "VB.NET SendKeys" and you should get some result ![]() RE: Afk Bot? For a Game. (Combat-Arms) - LostSoul - 03-24-2011 So make a simple gui like start and stop and sat sendkeys.Sendwait("Space Bar") for start or something i want it to be Start- hit space bar every 5seconds and stop to stop to stop hit space aka Jump? Anyone? RE: Afk Bot? For a Game. (Combat-Arms) - 1llusion - 03-24-2011 (03-24-2011, 03:23 PM)LostSoul Wrote: So make a simple gui like start and stop and sat sendkeys.Sendwait("Space Bar") for start or something i want it to be yeh, 2 buttonds: Start and Stop and 1 timer, set inrerval to 5000 for 5 seconds. Double click the "Start" button and put: Code: Timer1.Start()Double click the "Stop" button and put: Code: Timer1.Stop()now find the code for the key you want here: http://msdn.microsoft.com/en-us/library/system.windows.forms.sendkeys.aspx and double click the timer, and put: Code: SendKeys.Send("Selected key")for normal letters or so, you can just do: Code: SendKeys.Send("Hello World")just read the microsoft guide =) here: http://msdn.microsoft.com/en-us/library/system.windows.forms.sendkeys.aspx RE: Afk Bot? For a Game. (Combat-Arms) - LostSoul - 03-24-2011 Wow thanks ill try this. RE: Afk Bot? For a Game. (Combat-Arms) - 1llusion - 03-25-2011 (03-24-2011, 11:08 PM)LostSoul Wrote: Wow thanks ill try this. Np ![]() I have made a afk/spam bot once, if I find the source, Ill share it with you ![]() |