Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Nostale
You last visited: Today at 07:52

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Suche Coder für "Bot"

Discussion on Suche Coder für "Bot" within the Nostale forum part of the MMORPGs category.

Reply
 
Old   #1


 
aiimsh0ckz's Avatar
 
elite*gold: 158
Join Date: Apr 2012
Posts: 606
Received Thanks: 76
Suche Coder für "Bot"

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. :>
aiimsh0ckz is offline  
Old 10/29/2018, 16:35   #2
 
elite*gold: 0
Join Date: Oct 2018
Posts: 253
Received Thanks: 203
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 ?
Apourtartt is offline  
Old 10/29/2018, 16:38   #3


 
aiimsh0ckz's Avatar
 
elite*gold: 158
Join Date: Apr 2012
Posts: 606
Received Thanks: 76
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.

I just need it to be injectable into the Nostale Client / Launcher.
Otherwise it won't work.
aiimsh0ckz is offline  
Old 10/29/2018, 16:41   #4
 
elite*gold: 0
Join Date: Oct 2018
Posts: 253
Received Thanks: 203
Oh, you want it to run on multiple NT's windows ?
Apourtartt is offline  
Old 10/29/2018, 16:46   #5


 
aiimsh0ckz's Avatar
 
elite*gold: 158
Join Date: Apr 2012
Posts: 606
Received Thanks: 76
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)
aiimsh0ckz is offline  
Old 10/29/2018, 17:55   #6
 
elite*gold: 0
Join Date: Oct 2018
Posts: 253
Received Thanks: 203
I really think this script should work as you desired, Autoit just simulate your keyboard. It is supposed to work correctly !
Apourtartt is offline  
Old 10/29/2018, 19:12   #7

 
Singleplayer™'s Avatar
 
elite*gold: 173
Join Date: Feb 2016
Posts: 1,244
Received Thanks: 314
u can use ControlSend with autoit this should work how u want it
Singleplayer™ is offline  
Old 10/29/2018, 20:00   #8


 
aiimsh0ckz's Avatar
 
elite*gold: 158
Join Date: Apr 2012
Posts: 606
Received Thanks: 76
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
aiimsh0ckz is offline  
Old 10/29/2018, 21:26   #9

 
Singleplayer™'s Avatar
 
elite*gold: 173
Join Date: Feb 2016
Posts: 1,244
Received Thanks: 314
maybe take a look here , last time i used autoit was some years ago sry ...
Singleplayer™ is offline  
Old 10/29/2018, 22:05   #10
 
elite*gold: 0
Join Date: Oct 2018
Posts: 253
Received Thanks: 203
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.
Apourtartt is offline  
Old 10/31/2018, 02:23   #11
 
elite*gold: 0
Join Date: Apr 2014
Posts: 4
Received Thanks: 0

Try this code it should work, also always put #RequireAdmin on top of every autoit code
IKAonPC is offline  
Old 11/06/2018, 21:20   #12
 
Limoo's Avatar
 
elite*gold: 0
Join Date: Jan 2017
Posts: 465
Received Thanks: 185
Can move mouse with autoIT in NosTale?
Limoo is offline  
Old 11/06/2018, 21:28   #13
 
elite*gold: 0
Join Date: Sep 2013
Posts: 1,527
Received Thanks: 233
Wie wäre es, wenn du es einfach mit autohotkey realisierst? Sollte eigentlich klappen wenn du dein Programm dann als Admin startest
zeraptor is offline  
Old 11/07/2018, 13:38   #14
 
elite*gold: 0
Join Date: Apr 2014
Posts: 4
Received Thanks: 0
Quote:
Originally Posted by Limoo View Post
Can move mouse with autoIT in NosTale?
Yes u can,
IKAonPC is offline  
Old 11/07/2018, 21:26   #15
 
Limoo's Avatar
 
elite*gold: 0
Join Date: Jan 2017
Posts: 465
Received Thanks: 185
Quote:
Originally Posted by IKAonPC View Post
Yes u can,
Thanks Automatic TS 73 incoming :P
Limoo is offline  
Reply


Similar Threads Similar Threads
[Buying] """""PUBG Key""""""""
09/28/2017 - PlayerUnknown's Battlegrounds Trading - 5 Replies
Moin, ich suche noch einen Key von PUBG. Bezahle per PP.(kein Family& Friends) Nur mit RAT! mfg :mofo:
WEAPONSCRIPT!!!!!!!!!!!!!!!!!!!!!!!!!HOT"""""""""" """""""""""""""""""""
08/06/2011 - WarRock Hacks, Bots, Cheats & Exploits - 7 Replies
detetected



All times are GMT +2. The time now is 07:52.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.