Suche Coder für "Bot"

10/29/2018 15:52 aiimsh0ckz#1
Heyho,

ich suche jemanden, der mit einen kleinen "Bot" für Nos schreiben kann.
Geht eigentlich nur um einen Bot der quasi eine spezifische Taste so lange x mal pro Sekunde drückt, bis man den Bot schließt (evtl Start/Stop Button).

Leider konnte ich das ganze zwar in VBS realisieren, aber geht halt nicht im Client selbst...


Könnte mir jemand da unter die Arme greifen o. Ä.?

Wie gesagt, Funktion eig wie folgt:
Bot wird gestartet/injected.
Man hat ein kleines Fenster mit Start/Stop.
Taste Q wird alle 100ms 1x gedrückt, bis man auf Stop drückt.

Joa..


Greez, aiimsh0ckz. :>
10/29/2018 16:35 Apourtartt#2
I don't understand a piece of german, but if I understood : you're looking for a bot that press Q every 0,1s ?

I can propose you that, in Autoit :

You need to have autoit on your computer and to launch this script as administrator.
There isn't any window, everything is done by 3 keys : a z e, as I commented on the code.
I can't test it because I don't have it, but I don't see any mistakes in the code.

Have I understood what you were looking for ?
10/29/2018 16:38 aiimsh0ckz#3
Quote:
Originally Posted by Apourtartt View Post
I don't understand a piece of german, but if I understood : you're looking for a bot that press Q every 0,1s ?

I can propose you that, in Autoit :

You need to have autoit on your computer and to launch this script as administrator.
There isn't any window, everything is done by 3 keys : a z e, as I commented on the code.
I can't test it because I don't have it, but I don't see any mistakes in the code.

Have I understood what you were looking for ?

You understood me like 90%, yes. :D

I just need it to be injectable into the Nostale Client / Launcher. :)
Otherwise it won't work.
10/29/2018 16:41 Apourtartt#4
Oh, you want it to run on multiple NT's windows ?
10/29/2018 16:46 aiimsh0ckz#5
Quote:
Originally Posted by Apourtartt View Post
Oh, you want it to run on multiple NT's windows ?
Doesn't really need to run on multiple windows. Just needs to work and, as far as I know, for that case it needs to be injected. (has a Protection)
10/29/2018 17:55 Apourtartt#6
I really think this script should work as you desired, Autoit just simulate your keyboard. It is supposed to work correctly !
10/29/2018 19:12 Singleplayer™#7
u can use ControlSend with autoit this should work how u want it
10/29/2018 20:00 aiimsh0ckz#8
Quote:
Originally Posted by Singleplayer™ View Post
u can use ControlSend with autoit this should work how u want it
Guess I'm using the ControlSend function wrong lol

Code:
HotKeySet("{r}", "start") ;press r to start botting
HotKeySet("{t}", "pause") ;press t to make the bot sleep
HotKeySet("{e}", "stop") ;press e to exit the bot

While True
   Sleep(50)
WEnd

Func start()
   MsgBox ( 0, "", "Bot started ... ")
   While True
	  ControlSend("NosTale","", 1, "q")
      ;Send("{q}") ;press q
      Sleep(100) ;wait 100ms
   WEnd ;and repeat...
EndFunc

Func pause()
   MsgBox ( 0, "", "Bot paused ... ")
   While True
   Sleep(50)
   WEnd
EndFunc

Func stop()
   MsgBox ( 0, "", "Bot closed ... ")
   Exit
EndFunc
10/29/2018 21:26 Singleplayer™#9
maybe take a look here , last time i used autoit was some years ago sry ...
[Only registered and activated users can see links. Click Here To Register...]
10/29/2018 22:05 Apourtartt#10
Do you have troubles with the Send function ?

Btw, I think you need a control ID to use ControlSend. I don't think this is possible on NosTale, you can check with WindowsInfo, provided by Autoit. Control's infos is empty.
Maybe there is a way to get the control ID, but I don't know how.
10/31/2018 02:23 IKAonPC#11

Try this code it should work, also always put #RequireAdmin on top of every autoit code
11/06/2018 21:20 Limoo#12
Can move mouse with autoIT in NosTale?
11/06/2018 21:28 zeraptor#13
Wie wäre es, wenn du es einfach mit autohotkey realisierst? Sollte eigentlich klappen wenn du dein Programm dann als Admin startest
11/07/2018 13:38 IKAonPC#14
Quote:
Originally Posted by Limoo View Post
Can move mouse with autoIT in NosTale?
Yes u can, [Only registered and activated users can see links. Click Here To Register...]
11/07/2018 21:26 Limoo#15
Quote:
Originally Posted by IKAonPC View Post
Yes u can, [Only registered and activated users can see links. Click Here To Register...]
Thanks :D Automatic TS 73 incoming :P