Register for your free account! | Forgot your password?

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

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

Advertisement



Sigh..request

Discussion on Sigh..request within the Conquer Online 2 forum part of the MMORPGs category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Aug 2005
Posts: 615
Received Thanks: 52
guys i was wondering if sum1 cud make a program that reads exp and uses it...that works..and not really pixel based so u can use it wile u hav auto trainer going..cus its really good..cept doesnt use superman :? i understand the concept of how to..but not how to itself so help wud b appreciated
Saxasolt is offline  
Old 10/05/2005, 23:18   #2
 
elite*gold: 0
Join Date: Aug 2005
Posts: 615
Received Thanks: 52
bump :/ this is the first idea thats do-able..guess its too realistic :?
Saxasolt is offline  
Old 10/05/2005, 23:28   #3
 
elite*gold: 0
Join Date: Aug 2005
Posts: 101
Received Thanks: 5
Quote:
Originally posted by Saxasolt@Oct 5 2005, 03:13
guys i was wondering if sum1 cud make a program that reads exp and uses it...that works..and not really pixel based so u can use it wile u hav auto trainer going..cus its really good..cept doesnt use superman :? i understand the concept of how to..but not how to itself so help wud b appreciated
You can read the XP Skill counter from this memory location:
XP Skill - Integer 4 bytes - Memory Location: 0x0053ACA8

Of course, reading the memory is the hard way. In most of my scripts, I just put the XP skill I want to use in a F-key slot and have my script trigger it every 4-5 seconds. Simple.
BitVector is offline  
Old 10/05/2005, 23:31   #4
 
elite*gold: 0
Join Date: Aug 2005
Posts: 615
Received Thanks: 52
Quote:
Originally posted by BitVector+Oct 5 2005, 23:28--></span><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td>QUOTE (BitVector @ Oct 5 2005, 23:28)</td></tr><tr><td id='QUOTE'> <!--QuoteBegin--Saxasolt@Oct 5 2005, 03:13
guys i was wondering if sum1 cud make a program that reads exp and uses it...that works..and not really pixel based so u can use it wile u hav auto trainer going..cus its really good..cept doesnt use superman* :? i understand the concept of how to..but not how to itself so help wud b appreciated
You can read the XP Skill counter from this memory location:
XP Skill - Integer 4 bytes - Memory Location: 0x0053ACA8

Of course, reading the memory is the hard way. In most of my scripts, I just put the XP skill I want to use in a F-key slot and have my script trigger it every 4-5 seconds. Simple. [/b][/quote]
good idea but need it memory based if im gonna run it with auto training bot
Saxasolt is offline  
Old 10/05/2005, 23:35   #5
 
elite*gold: 0
Join Date: Aug 2005
Posts: 101
Received Thanks: 5
Quote:
Originally posted by Saxasolt@Oct 5 2005, 14:31
good idea but need it memory based if im gonna run it with auto training bot
Not really. I can leave my trojan running in the lab with Auto-Training Bot, and I have my Cyclone macro'ing script running at the same time.

Here is my script:
(Make sure you put Cyclone or Superman on the F1 key)

Code:
; ----------------------------------------------------------------------------
;
; AutoIt Version&#58; 3.1.0
; Author&#58;     BitVector
;           ElitePvPers Edition
;
; Script Function&#58;
;     Cyclone/Superman Macro'er
;
; ----------------------------------------------------------------------------

Global &#036;Paused
Global &#036;MousePos
HotKeySet&#40;&#34;{PAUSE}&#34;, &#34;TogglePause&#34;&#41;
HotKeySet&#40;&#34;{ESC}&#34;, &#34;Terminate&#34;&#41;

Call&#40;&#34;TogglePause&#34;&#41;

While 1=1
  If WinActive&#40;&#34;&#91;Conquer&#93;&#34;&#41; then
    Send&#40;&#34;{F1}&#34;&#41;
    Sleep&#40;Random&#40;1000,4000,1&#41;&#41;
  Else
    Sleep&#40;100&#41;
  EndIf
WEnd


Func TogglePause&#40;&#41;
  &#036;Paused = NOT &#036;Paused
  While &#036;Paused
    sleep&#40;100&#41;
    ToolTip&#40;'Script is Paused. Press Pause to Start/Continue.',0,0&#41;
  WEnd
  ToolTip&#40;&#34;&#34;&#41;
EndFunc

Func Terminate&#40;&#41;
  Exit 0
EndFunc
BitVector is offline  
Old 10/05/2005, 23:39   #6
 
elite*gold: 0
Join Date: Aug 2005
Posts: 615
Received Thanks: 52
nice..karma for u..dont spose u cud post a finished version tho..cus i use auto hotkey not autoit..im testing mine now..but im sure itd b useful for others..o and 4 seconds is a lill too much isnt it? cus the exp skill bar thing lasts 10 seconds
Saxasolt is offline  
Old 10/05/2005, 23:43   #7
 
elite*gold: 0
Join Date: Aug 2005
Posts: 101
Received Thanks: 5
Quote:
Originally posted by Saxasolt@Oct 5 2005, 14:39
nice..karma for u..dont spose u cud post a finished version tho..cus i use auto hotkey not autoit..im testing mine now..but im sure itd b useful for others..o and 4 seconds is a lill too much isnt it? cus the exp skill bar thing lasts 10 seconds
It has a random timer between 1 and 4 seconds. I haven't seen a problem with it, and it should activate every time. You can always just change the timer if you want. Sorry, I don't really use AutoHotKey.

If you want, I can compile an .exe version for you which does not require AutoIt installed on your system.
BitVector is offline  
Old 10/05/2005, 23:45   #8
 
elite*gold: 0
Join Date: Aug 2005
Posts: 615
Received Thanks: 52
Quote:
Originally posted by BitVector@Oct 5 2005, 23:43
If you want, I can compile an .exe version for you which does not require AutoIt installed on your system.
mines working..kinda laggs a bit tho so...yes plz ^^
Saxasolt is offline  
Old 10/05/2005, 23:46   #9
 
elite*gold: 0
Join Date: Jul 2005
Posts: 313
Received Thanks: 37
ty bit vector ^^ and good idea saxa ^^
stupoty is offline  
Old 10/05/2005, 23:48   #10
 
elite*gold: 0
Join Date: Aug 2005
Posts: 101
Received Thanks: 5
Quote:
Originally posted by Saxasolt+Oct 5 2005, 14:45--></span><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td>QUOTE (Saxasolt @ Oct 5 2005, 14:45)</td></tr><tr><td id='QUOTE'> <!--QuoteBegin--BitVector@Oct 5 2005, 23:43
If you want, I can compile an .exe version for you which does not require AutoIt installed on your system.
mines working..kinda laggs a bit tho so...yes plz ^^ [/b][/quote]
Oh, I forgot something:

Make sure you press the Pause key after you set up your Conquer client. The Pause Key will enable the script. Afterwards, you can press the Pause key again to disable it, if you need it.
BitVector is offline  
Old 10/05/2005, 23:50   #11
 
elite*gold: 0
Join Date: Aug 2005
Posts: 615
Received Thanks: 52
Quote:
Originally posted by BitVector@Oct 5 2005, 23:48
Oh, I forgot something:

Make sure you press the Pause key after you set up your Conquer client. The Pause Key will enable the script. Afterwards, you can press the Pause key again to disable it, if you need it.
no i meant the one i quickly made in auto hotkey

EDIT: nvm ill get autoit..looks powerful enough of a macro maker
Saxasolt is offline  
Old 10/05/2005, 23:53   #12
 
elite*gold: 0
Join Date: Aug 2005
Posts: 101
Received Thanks: 5
Here is the compiled version of the XPSkillMacro script:
Attached Files
File Type: ibf post-53-1128549203.ibf (114.7 KB, 22 views)
BitVector is offline  
Old 10/06/2005, 00:15   #13
 
elite*gold: 0
Join Date: Aug 2005
Posts: 615
Received Thanks: 52
hehe thx..works great (downloaded autoit and used the script :P) more karma once im allowd
Saxasolt is offline  
Reply


Similar Threads Similar Threads
*sigh*
07/22/2009 - Say Hello - 0 Replies
heyllo
Sigh...
02/29/2008 - Planetside - 13 Replies
I fully expect that you guys will slander this message, that you will call me a whiner and that you will come up with all of you reasons why what you are doing is legitimate, or that this is the internet and morals have no rule here, etc. But none the less I feel compelled to at least try to reach out to you guys, hope that maybe some of you will wake up to the havoc you are wreaking on an already unstable game. You can claim that you are "forcing the Dev's to address hacking," and you...
*sigh* UCE
01/29/2008 - Dekaron - 0 Replies
so i stopped playing for a while and when i come back revo 8.3 is detected! anyone know a working uce
sigh
04/19/2006 - Conquer Online 2 - 4 Replies
someone taught a br how to use QOProxy which was unfortunately released for few hours, enough to get on the hands of stupid people who are now giving it around, these br are using it always now, its annoying, easy to detect them since its always sitting and they warp, the way i see it theres not much more so a lot of lil noobs have this aimbot, this is extremely gay =/ i hope it wasnt ever released, i hope(yeah right) gms fix it someday, its turned gw and pk torny a pointless event.



All times are GMT +1. The time now is 03:01.


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.