Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Conquer Online 2
You last visited: Today at 03:29

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

Advertisement



AutoIt Question

Discussion on AutoIt Question within the Conquer Online 2 forum part of the MMORPGs category.

Reply
 
Old   #1
 
hok30's Avatar
 
elite*gold: 0
Join Date: Feb 2007
Posts: 1,366
Received Thanks: 256
AutoIt Question

Hey All,
Some of you might know about the AutoTalker I released last week or so... I am now trying to make it work while minimized, and I stumbled on the ControlSend function. Now here is what I wrote
$text being the text that we are trying to send...
Code:
ControlSend("[Conquer 2.0]", "", "Edit1", "" &Hey All,
Some of you might know about the AutoTalker I released last week or so... I am now trying to make it work while minimized, and I stumbled on the ControlSend function. Now here is what I wrote
$text being the text that we are trying to send...
[code]ControlSend("[Conquer 2.0]", "", "Edit1", "" &$text)
Ok and the Edit1 is the ControlID... This is what I didn't get. Would it be TextBox1 in the case of conquer?

EDIT: Wouldn't it be TextBox2 accually because I don't want it going in the name to talk to box... Or would it just be Text2?)[/code]

Ok and the Edit1 is the ControlID... This is what I didn't get. Would it be TextBox1 in the case of conquer?

EDIT: Wouldn't it be TextBox2 accually because I don't want it going in the name to talk to box... Or would it just be Text2?
hok30 is offline  
Old 05/08/2008, 22:05   #2
 
elite*gold: 0
Join Date: Mar 2006
Posts: 583
Received Thanks: 182
open up autoit window info and under the control tab find out what control the text bar is
UPSman2 is offline  
Old 05/08/2008, 23:04   #3
 
evanxxxm's Avatar
 
elite*gold: 20
Join Date: Oct 2006
Posts: 2,707
Received Thanks: 2,525
hok30@
cant be done
and also, send F keys cant be done too, thats why all my bots are sending controlclicks instead of simply send a F key
(by experience)
evanxxxm is offline  
Old 05/08/2008, 23:52   #4
 
Hiyoal's Avatar
 
elite*gold: 20
Join Date: Mar 2007
Posts: 2,444
Received Thanks: 1,066
Yea, I found the same thing aswell. I tried using this for Ellipse, but it didnt work. Thats why Ellipse is a Control Click bot, even when it selects the "F" Keys...It Clicks them.

Hiyoal
Hiyoal is offline  
Old 05/09/2008, 00:09   #5
 
elite*gold: 0
Join Date: Mar 2006
Posts: 583
Received Thanks: 182
i 3rd that... i just use controlclick instead of F1-F10 keys
UPSman2 is offline  
Old 05/09/2008, 03:09   #6
 
hok30's Avatar
 
elite*gold: 0
Join Date: Feb 2007
Posts: 1,366
Received Thanks: 256
OK, and this would help an AutoTALKER how? Clicking? I just don't get how ControlClicking could send F keys.
hok30 is offline  
Old 05/09/2008, 03:12   #7
 
evanxxxm's Avatar
 
elite*gold: 20
Join Date: Oct 2006
Posts: 2,707
Received Thanks: 2,525
hok30@
so, that means u cant do a minimized spam...
unless u figure out some way to spam with a controlclick
evanxxxm is offline  
Thanks
1 User
Old 05/09/2008, 03:17   #8
 
hok30's Avatar
 
elite*gold: 0
Join Date: Feb 2007
Posts: 1,366
Received Thanks: 256
Aww... well OK.

But how did you get it to send F keys? Click on em?
hok30 is offline  
Old 05/09/2008, 03:21   #9
 
evanxxxm's Avatar
 
elite*gold: 20
Join Date: Oct 2006
Posts: 2,707
Received Thanks: 2,525
hok30@
right click F-slots
thats how all my bot does
for example, x110 y760 is F1
evanxxxm is offline  
Old 05/09/2008, 03:56   #10
 
elite*gold: 0
Join Date: Mar 2006
Posts: 583
Received Thanks: 182
for me i click on the actual controlclass
Example:
Code:
If $comboRead1 = "F1" Then
	ControlClick("[Conquer2.0]","","Button158","right", 1, 24, 23)
EndIf
UPSman2 is offline  
Old 05/09/2008, 06:49   #11
 
warriorchamp's Avatar
 
elite*gold: 0
Join Date: May 2007
Posts: 171
Received Thanks: 41
Quote:
Originally Posted by evanxxxm View Post
hok30@
cant be done
and also, send F keys cant be done too, thats why all my bots are sending controlclicks instead of simply send a F key
(by experience)
Lol. It can be done I made an autotalker with ControlSend method Just you need to know the CO's n00b solutions for making his controls visible...)

AutoItWindowInfo, returns false values

After school I will post the minimized Spammer...
warriorchamp is offline  
Old 05/09/2008, 09:29   #12
 
Hiyoal's Avatar
 
elite*gold: 20
Join Date: Mar 2007
Posts: 2,444
Received Thanks: 1,066
@warriorchamp

What false values?! Its impossible to send an input with ControlSend to the Conquer window, thats all we are saying, and that is why it wont work.

Also, these are the coordinates for FKeys for Conqueronline. I have used these in Ellipse
Quote:
Originally Posted by hiyoal

800,600:
F1=20,20
F2=60,20
F3=100,20
F4=140,20
F5=180,20
F6=220,20
F7=260,20
F8=300,20
F9=240,20
F10=280,20

400,248 are Player Coordinate

1024,768:
F1=20,20
F2=60,20
F3=100,20
F4=140,20
F5=180,20
F6=220,20
F7=260,20
F8=300,20
F9=240,20
F10=280,20

512,334 Are Player Coordinate
Hiyoal is offline  
Thanks
1 User
Old 05/09/2008, 13:14   #13
 
warriorchamp's Avatar
 
elite*gold: 0
Join Date: May 2007
Posts: 171
Received Thanks: 41
@hiyoal

It is possible. Just you have to know the control's ID (Not that "Button: 1" or "[INSTANCE: 1]". You need an ID number) If you find it, then you can send there keys
warriorchamp is offline  
Old 05/09/2008, 13:22   #14
 
hok30's Avatar
 
elite*gold: 0
Join Date: Feb 2007
Posts: 1,366
Received Thanks: 256
... How are you supposed to find them?
hok30 is offline  
Old 05/09/2008, 13:26   #15
 
warriorchamp's Avatar
 
elite*gold: 0
Join Date: May 2007
Posts: 171
Received Thanks: 41
Quote:
Originally Posted by hok30 View Post
... How are you supposed to find them?
If I publish the method the TQ will hide the IDs. I really dont want that... I publish the autotalker. Use that please
warriorchamp is offline  
Reply


Similar Threads Similar Threads
[Question]How to use AutoIt?
07/24/2013 - Silkroad Online - 3 Replies
Hey guys I wanna learn on how to work with AutoIt if somebody wanna reply here a tuturial i would really appereciate:)
autoit question
06/24/2010 - Mabinogi - 1 Replies
hey i am slowly trying to learn scripting (tougher than i thought) ...... anyways i'm making an auto login bot .... anyone got suggestions on how to write a code to make the mouse click start game on the mabinogi pre login window so far i can get the game to open with the start game screen >.> task one complete
AutoIt Question.
11/02/2009 - S4 League - 3 Replies
I asked this in someone else's thread when they inquired about a bot program, but it seems that thread was deleted, because I can't find it even with the search function. Well I wanted to know if AutoIt would work with Games that only accept direct input, without having to use a bypass. There are many games I'm sure you all know of that don't allow input from Auto macro programs to go through. Anyone know off of the top of their heads?
[Question] AutoIt
10/24/2009 - 12Sky2 - 3 Replies
I was thinking about it and i saw a post made by Tri that AutoIt is blocked because XTrap / GG detects certain signatures and debugging signatures, is it possible to modify AutoIt scripts so that it isn't detected by Xtrap or GG so the scripts will run?
[Question] need AutoIt help
06/10/2009 - CO2 Programming - 2 Replies
alright what i'm trying to do is basically this... when you open a program, it'll say "Working" or "Not Working" i want to somehow code it so that AutoIt checks... idk i guess a website (w/o actually opening a browser)? and that website will give it a value of "Working" or "Not Working" and it'll display that... i can't think of a way to approach this, if someone can lead me in the right direction . . . meanwhile, i'll keep searching on how to do this, thx guys :) Edit: i'm guessing...



All times are GMT +2. The time now is 03:29.


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.