Register for your free account! | Forgot your password?

You last visited: Today at 02:14

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

Advertisement



Plvl Pal

Discussion on Plvl Pal within the CO2 Exploits, Hacks & Tools forum part of the Conquer Online 2 category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Apr 2006
Posts: 23
Received Thanks: 29
Plvl Pal 1.20

With this new version I have completed almost everything i wanted to achieve with this tool. The only goal i have for it left is a auto-stig bit, which i have absolutly no idea on how to do, so if someone wants to PM me and place for a good tutorial then that would be awsum . Apart from that, future updates will be to only update memory addresses as long as it is being used by people. I hope people continue to find this tool useful, Origonal.

Instructions:
  • Fetch Accounts Button - Populates the list of all characters logged on.
  • Go/Stop Button to start and stop the level and percent updating
  • Exit - well der
  • You will require .NET Framework 2.0 or greater and it should be ran as administrator

Features:
  • Small Comact Size that fits nicely below CO while playing in Windowed mode.
  • Displays Water Level And PC every 500 milliseconds
  • Shows a mini-map that updates every 500 milliseconds to help you stay in exp range of the stack (it shows your archers position relative to the water).
  • TTM label that shows how long it is until the next server maintenance (this dosn't work for the elements group and if someone would tell me the times their maintenance happens in PST that would be great)

Source code is still attached, Enjoy
Thankyou to all the people who have helped so far with this.

Note: to those that have told me that it dosnt work with CID proxy. It does...i just tried it! It reports incorrect coords sometimes but they are still relative to each other and the mini-map works correctlly! Make sure that you are running PlvlPal as a administrator and that you have .Net 2.0 or greater.

Bugs: TTL dosnt seem to work...i wont have the time to look into fixing it any time soon, its not really a important part of the program tho.
Attached Files
File Type: rar PlvlPalSrc.rar (89.7 KB, 781 views)
File Type: rar PlvlPal.rar (8.9 KB, 640 views)
Origonal is offline  
Thanks
28 Users
Old 12/22/2008, 12:26   #2
 
Arren's Avatar
 
elite*gold: 0
Join Date: Jun 2006
Posts: 5
Received Thanks: 0
Beutifull job bro. ;-) Will help me soon,as im planning to be 126 in 10dayz xD
Arren is offline  
Old 12/22/2008, 12:40   #3
 
elite*gold: 0
Join Date: Apr 2008
Posts: 22
Received Thanks: 17
Antivir: Nothing found
ArcaVir: Nothing found
Avast: Nothing found
AVG: Nothing found
BitDefender: Nothing found
F-Prot: Nothing found
Norman: Nothing found
Rising: Nothing found
VirusBlokAda32: Nothing found
VirusBuster: Nothing found


Scanned by

seems clean, going to try it soon, thanks man
Zupall is offline  
Thanks
1 User
Old 12/22/2008, 18:12   #4
 
elite*gold: 0
Join Date: Apr 2006
Posts: 23
Received Thanks: 29
good to know itll be useful, i forgot to mention that you will need administrative rights to run it. this means, if your on vista youll have to right click and "Run as Administrator" or if your on xp youll have to "Run as user"(that user being a admin).

Id also like to stress that I dont have alot of time these days so if someone could find the the exact distance you can get team experience from that thatd be awsum
Origonal is offline  
Old 12/22/2008, 18:17   #5
 
elite*gold: 0
Join Date: Apr 2007
Posts: 18
Received Thanks: 4
Great tool.
Ankan is offline  
Old 12/23/2008, 03:48   #6
 
elite*gold: 0
Join Date: Nov 2005
Posts: 191
Received Thanks: 15
Ive been looking for something like this !
fridaykw is offline  
Old 12/23/2008, 06:36   #7
 
elite*gold: 0
Join Date: Dec 2008
Posts: 2
Received Thanks: 0
Great work really, Tyvm
ArcThéLaD is offline  
Old 12/23/2008, 11:52   #8
 
elite*gold: 0
Join Date: Apr 2008
Posts: 22
Received Thanks: 17
to bad it doesn't work with CID proxy compared with multihack good tool for the rest
Zupall is offline  
Old 12/23/2008, 14:39   #9
 
jellemichel's Avatar
 
elite*gold: 0
Join Date: Feb 2008
Posts: 21
Received Thanks: 1
idk maybe i do something wrong but when i use it it says that my ninja is lvl 0 and my exp is also 0
jellemichel is offline  
Old 12/23/2008, 14:51   #10
 
jellemichel's Avatar
 
elite*gold: 0
Join Date: Feb 2008
Posts: 21
Received Thanks: 1
Quote:
Originally Posted by jellemichel View Post
idk maybe i do something wrong but when i use it it says that my ninja is lvl 0 and my exp is also 0
oh never mind i already figured it out
srry that i asked
jellemichel is offline  
Old 12/23/2008, 16:13   #11
 
elite*gold: 0
Join Date: Nov 2005
Posts: 191
Received Thanks: 15
Quote:
Originally Posted by Zupall View Post
to bad it doesn't work with CID proxy compared with multihack good tool for the rest
anyway of sharing the source? or changing the Charc to match Cid?
fridaykw is offline  
Old 12/23/2008, 18:16   #12
 
elite*gold: 0
Join Date: Apr 2006
Posts: 23
Received Thanks: 29
ive never used CID proxy. i just read the forum, ill try it out later and see if i can make PlvlPal compatible, i have no idea of what to expect though.
Origonal is offline  
Thanks
1 User
Old 12/23/2008, 20:00   #13
 
elite*gold: 0
Join Date: Dec 2007
Posts: 3
Received Thanks: 74
hey guys
all the program do that it say ur exp !!!!
just tell me
bado is offline  
Old 12/24/2008, 00:18   #14
 
BEanErzzz's Avatar
 
elite*gold: 0
Join Date: Nov 2005
Posts: 122
Received Thanks: 186
Fixed your timer function. It won't crash when co exits now. and disables timer.
Code:
        private unsafe void timer_Tick(object sender, EventArgs e) {
            if (curProcess.HasExited == false) {
                pReader.ReadProcess = curProcess;
                pReader.OpenProcess();
                byte[] bytesLev = pReader.ReadProcessMemory((IntPtr)CHAR_LEVEL_ADDRESS, 1, out bytesReaded);
                lblLevel.Text = "Level: " + bytesLev[0];
                byte[] bytesExp = pReader.ReadProcessMemory((IntPtr)CHAR_EXPERIENCE_ADDRESS, 8, out bytesReaded);
                lblPercent.Text = "Percent: " + convert.ConvertToPc(bytesLev[0], BitConverter.ToUInt32(bytesExp, 0)) + "%";
                pReader.CloseHandle();
            } else {
                lblLevel.Text = "NULL";
                lblPercent.Text = "NULL";
                ((Timer)sender).Enabled = false;
                fetchAndDisplayAccounts();
            }
        }
BEanErzzz is offline  
Thanks
2 Users
Old 12/24/2008, 06:42   #15
 
elite*gold: 0
Join Date: Oct 2008
Posts: 36
Received Thanks: 0
Hey , what do i do with the file. Can explain what to do?
michaelcao is offline  
Reply


Similar Threads Similar Threads
WTS plvl 1-40
12/06/2009 - Trading - 0 Replies
taking AP offers or Paysafecard (on gaia all modes)
WTT>49 Hunter Trieste for PLvL.. That's Right.. PLVL!
01/16/2008 - Trading - 0 Replies
I would like to be plvled and in exchange willing to give a 49 hunter in trieste. Thank You. Contact me via PM or MsN: [email protected] - jauodx



All times are GMT +2. The time now is 02:14.


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.