Register for your free account! | Forgot your password?

You last visited: Today at 14:41

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

Advertisement



Purple KO Counter

Discussion on Purple KO Counter within the CO2 Private Server forum part of the Conquer Online 2 category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Feb 2006
Posts: 726
Received Thanks: 271
Purple KO Counter

I brought this up in another old thread but never realy had any input on it.

Does anyone have any idea or clue on how to create the purple kill counter for Dis City?

I know the red counter during cyclone or superman is part of a client effect, but that doesn't seem to be the case for the purple one.
All the client effect's are pretty well known, and it certainly came before all the Top Fire, Top Deputy etc effects.

I have had a suggestion that it may actually be a map flag, I have done a little testing on those but never managed to create it.

I highly doubt it is a string effect, since those are only temporary effects.

The only other thing I can conclude is that it may be a separate packet.

So does anyone have any suggestions apart from logging it? (I don't have a packet logger or access to a binary).
Can be for any patch, but I am currently working on 5065.
Aceking is offline  
Old 12/28/2013, 02:25   #2
 
cjN93's Avatar
 
elite*gold: 0
Join Date: Jul 2013
Posts: 72
Received Thanks: 34
I am pretty sure that around that version, you won't find any purple KO counter for the DisCity quest simply because I don't recall any purple KO counter to be used for that quest. You mean that this counter, counts the mobs required to kill in Stage 3? If that's so, I recall that a gourd was used to track the killed mobs and no KO counter was displayed.

I might be wrong, it's long time since I've bothered to look into the DisCity quest.
cjN93 is offline  
Old 12/28/2013, 02:32   #3
 
elite*gold: 0
Join Date: Feb 2006
Posts: 726
Received Thanks: 271
Quote:
Originally Posted by cjN93 View Post
I am pretty sure that around that version, you won't find any purple KO counter for the DisCity quest simply because I don't recall any purple KO counter to be used for that quest. You mean that this counter, counts the mobs required to kill in Stage 3? If that's so, I recall that a gourd was used to track the killed mobs and no KO counter was displayed.

I might be wrong, it's long time since I've bothered to look into the DisCity quest.

This seems to be an older client. Its before the legends return expansion which was in the 5200's.


This picture is even older, before mentor and shopping mall it appears....
Its a very old client actually
Aceking is offline  
Old 12/28/2013, 03:03   #4
 
elite*gold: 0
Join Date: Jun 2007
Posts: 659
Received Thanks: 31
PM me and I can maybe help you ace
angel12345 is offline  
Old 12/28/2013, 04:15   #5
 
elite*gold: 0
Join Date: Feb 2006
Posts: 726
Received Thanks: 271
Quote:
Originally Posted by angel12345 View Post
PM me and I can maybe help you ace
As you wish...
Aceking is offline  
Old 12/28/2013, 14:13   #6
 
cjN93's Avatar
 
elite*gold: 0
Join Date: Jul 2013
Posts: 72
Received Thanks: 34
Oh, that one... The effect name is "CountT". The original blue counter is "CountB" and is displayed trough client with the var "CountB%c" so I suppose it goes the same for the purple one.
cjN93 is offline  
Old 12/28/2013, 15:41   #7
 
elite*gold: 0
Join Date: Feb 2006
Posts: 726
Received Thanks: 271
Quote:
Originally Posted by cjN93 View Post
Oh, that one... The effect name is "CountT". The original blue counter is "CountB" and is displayed trough client with the var "CountB%c" so I suppose it goes the same for the purple one.
By using "CountT0" - "CountT9" I can display the purple number in the middle of the screen using the string packet.
But it won't become the active kill counter.
Aceking is offline  
Old 12/28/2013, 17:41   #8
 
cjN93's Avatar
 
elite*gold: 0
Join Date: Jul 2013
Posts: 72
Received Thanks: 34
Code:
004CBC62  /$ 83A1 140E0000 >AND DWORD PTR DS:[ECX+E14],0
004CBC69  |. 83A1 180E0000 >AND DWORD PTR DS:[ECX+E18],0
004CBC70  |. 56             PUSH ESI
004CBC71  |. 57             PUSH EDI
004CBC72  |. 8DB9 0C0E0000  LEA EDI,DWORD PTR DS:[ECX+E0C]
004CBC78  |. 8DB1 180E0000  LEA ESI,DWORD PTR DS:[ECX+E18]
004CBC7E  |. C781 100E0000 >MOV DWORD PTR DS:[ECX+E10],1
004CBC88  |. 68 A0245600    PUSH Conquer.005624A0                    ;  ASCII "CountT"
004CBC8D  |. 8B0F           MOV ECX,DWORD PTR DS:[EDI]
004CBC8F  |. E8 CF00FEFF    CALL Conquer.004ABD63
004CBC94  |. FF36           PUSH DWORD PTR DS:[ESI]                  ; /Arg1
004CBC96  |. 8B0F           MOV ECX,DWORD PTR DS:[EDI]               ; |
004CBC98  |. E8 46070100    CALL Conquer.004DC3E3                    ; \Conquer.004DC3E3
004CBC9D  |. 5F             POP EDI
004CBC9E  |. 5E             POP ESI
004CBC9F  \. C3             RETN
Code:
004CBC7E  |. C781 100E0000 >MOV DWORD PTR DS:[ECX+E10],1
This instruction above is sent for the CountT block but not in the CountB block. Might it be a flag or something idk...
cjN93 is offline  
Old 12/28/2013, 18:34   #9
 
elite*gold: 0
Join Date: Feb 2006
Posts: 726
Received Thanks: 271
Quote:
Originally Posted by cjN93 View Post
Code:
004CBC62  /$ 83A1 140E0000 >AND DWORD PTR DS:[ECX+E14],0
004CBC69  |. 83A1 180E0000 >AND DWORD PTR DS:[ECX+E18],0
004CBC70  |. 56             PUSH ESI
004CBC71  |. 57             PUSH EDI
004CBC72  |. 8DB9 0C0E0000  LEA EDI,DWORD PTR DS:[ECX+E0C]
004CBC78  |. 8DB1 180E0000  LEA ESI,DWORD PTR DS:[ECX+E18]
004CBC7E  |. C781 100E0000 >MOV DWORD PTR DS:[ECX+E10],1
004CBC88  |. 68 A0245600    PUSH Conquer.005624A0                    ;  ASCII "CountT"
004CBC8D  |. 8B0F           MOV ECX,DWORD PTR DS:[EDI]
004CBC8F  |. E8 CF00FEFF    CALL Conquer.004ABD63
004CBC94  |. FF36           PUSH DWORD PTR DS:[ESI]                  ; /Arg1
004CBC96  |. 8B0F           MOV ECX,DWORD PTR DS:[EDI]               ; |
004CBC98  |. E8 46070100    CALL Conquer.004DC3E3                    ; \Conquer.004DC3E3
004CBC9D  |. 5F             POP EDI
004CBC9E  |. 5E             POP ESI
004CBC9F  \. C3             RETN
Code:
004CBC7E  |. C781 100E0000 >MOV DWORD PTR DS:[ECX+E10],1
This instruction above is sent for the CountT block but not in the CountB block. Might it be a flag or something idk...
That doesn't tell me anything, sorry
Aceking is offline  
Old 12/28/2013, 19:40   #10
 
Spirited's Avatar
 
elite*gold: 12
Join Date: Jul 2011
Posts: 8,211
Received Thanks: 4,114
Like the other counters that I've found in Conquer Online, it might be a general action packet that does the trick. Which subtype of the packet, I'm not entirely sure. You'll have to do a bit of research. Maybe someone a bit more confident can confirm or deny my claims.
Spirited is offline  
Old 12/28/2013, 20:07   #11
 
elite*gold: 0
Join Date: Feb 2006
Posts: 726
Received Thanks: 271
Quote:
Originally Posted by Spirited Fang View Post
Like the other counters that I've found in Conquer Online, it might be a general action packet that does the trick. Which subtype of the packet, I'm not entirely sure. You'll have to do a bit of research. Maybe someone a bit more confident can confirm or deny my claims.
You were correct. I didn't realize the subtypes went that high.
Aceking is offline  
Reply


Similar Threads Similar Threads
Hey, its Purple!
09/15/2012 - Say Hello - 10 Replies
Hello Epvp its Purple here, and im just sayin hi :awesome: Here im writing about me ;) What I Play: CO2 EO SF GunZ
purple ghd iv styler
08/21/2010 - General Gaming Discussion - 2 Replies
happiness comes from looking up. A person who does not look a yoke wound by earthly desires of people,ghd hair straightener, it is difficult to find the foundation for the real. Look up to make us forget the hustle and bustle of this world and those unnecessary temptations. Looking up gives us the courage to survive, so we can have enough strength to face life, suffering and misfortune. Look up to purple ghd iv styler even make us forget him, and he is more concerned about and look to the vast...
Purple ad :)
10/30/2008 - Dekaron Exploits, Hacks, Bots, Tools & Macros - 23 Replies
Hi all! If ur sick of those ad's here is how u can make em purple ;) Simply overwrite the files pictures in your 2moon\data\ad directory with the provided here (for all u lazy ppl) They r just text files renamed as jpg's. I don't rely know if every ones files r the same name, this r the ones i got.
Purple garment
05/15/2007 - CO2 Weapon, Armor, Effects & Interface edits - 0 Replies
This one is the garment that there is blue but that I believe that purple it is mas nicely http://img154.imageshack.us/img154/662/vestidomor adold6.th.jpg http://www.zerowaitingtime.com/20910-downl...d-00 1182335.dds



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


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.