Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Conquer Online 2 > CO2 Private Server
You last visited: Today at 10:40

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

Advertisement



[Info] Potency calculation in CoEmuv2

Discussion on [Info] Potency calculation in CoEmuv2 within the CO2 Private Server forum part of the Conquer Online 2 category.

Reply
 
Old   #1
 
xellios's Avatar
 
elite*gold: 0
Join Date: Aug 2007
Posts: 310
Received Thanks: 13
[Info] Potency calculation in CoEmuv2

Well as its stated,
Where is it? Because i got the mentor packets and i am creating it atm,
And i want to know where it is so i can make a calculation of the shared potency if someone know where it is kthx.

xellios
xellios is offline  
Old 08/14/2009, 22:58   #2
 
xellios's Avatar
 
elite*gold: 0
Join Date: Aug 2007
Posts: 310
Received Thanks: 13
#nvm found out its only client side >.>
xellios is offline  
Old 08/15/2009, 03:41   #3
 
elite*gold: 0
Join Date: Jul 2009
Posts: 548
Received Thanks: 52
you should gimme those mentor packets.. peanut here lol
f0am is offline  
Old 08/15/2009, 06:05   #4
 
© Haydz's Avatar
 
elite*gold: 20
Join Date: Jan 2008
Posts: 1,042
Received Thanks: 252
You have to calculate it server side, the client never indicates its current potency to the server, otherwise it would be subject to alot of expl0itz.
© Haydz is offline  
Old 08/15/2009, 10:49   #5
 
xellios's Avatar
 
elite*gold: 0
Join Date: Aug 2007
Posts: 310
Received Thanks: 13
Peanut .. go packetlog you lazy ***:P
xellios is offline  
Old 08/15/2009, 22:09   #6
 
elite*gold: 20
Join Date: Jul 2007
Posts: 613
Received Thanks: 486
Quote:
Originally Posted by xellios View Post
#nvm found out its only client side >.>
it's not a client side only f u have the r8 status ID , i tried it once but i forgot the id ,i think it was 22 with switch 1, i am not sure you can try it and if u couldn't get it tell me i'll try to get it again
samehvan is offline  
Old 08/15/2009, 22:13   #7
 
elite*gold: 0
Join Date: Jul 2009
Posts: 548
Received Thanks: 52
cant packetlog my cmop wont let me , my router wont
f0am is offline  
Old 08/15/2009, 22:30   #8
 
xellios's Avatar
 
elite*gold: 0
Join Date: Aug 2007
Posts: 310
Received Thanks: 13
Quote:
Originally Posted by samehvan View Post
it's not a client side only f u have the r8 status ID , i tried it once but i forgot the id ,i think it was 22 with switch 1, i am not sure you can try it and if u couldn't get it tell me i'll try to get it again
Nope.. didnt work.


Though i could make a calculation like this :
if(Item.Plus > Values)
Potency += Item.Plus.Values;

But i would like you to gimme it too saves me time :P


BTW What packet id is the button for Revive here.
xellios is offline  
Old 08/15/2009, 23:01   #9
 
elite*gold: 0
Join Date: Jun 2009
Posts: 787
Received Thanks: 314
The button for revive here uses the same packet as the normal revive.
Why don't you packetlog that yourself?


Ironic.
_tao4229_ is offline  
Old 08/15/2009, 23:34   #10
 
elite*gold: 0
Join Date: Feb 2008
Posts: 668
Received Thanks: 160
Quote:
Originally Posted by _tao4229_ View Post
The button for revive here uses the same packet as the normal revive.
Why don't you packetlog that yourself?


Ironic.
You may got a packetlogger for me?? Or know a good one?
YukiXian is offline  
Old 08/15/2009, 23:40   #11
 
elite*gold: 20
Join Date: Aug 2005
Posts: 1,734
Received Thanks: 1,000
It's got a switch. Normal revive = 0, Revive here = 1
tanelipe is offline  
Thanks
1 User
Old 08/15/2009, 23:53   #12
 
InfamousNoone's Avatar
 
elite*gold: 20
Join Date: Jan 2008
Posts: 2,012
Received Thanks: 2,882
Quote:
Originally Posted by tanelipe View Post
It's got a switch. Normal revive = 0, Revive here = 1

How is that a switch? That's a BOOL seeing it's 32-bit. Failed.
InfamousNoone is offline  
Old 08/16/2009, 00:00   #13
 
xellios's Avatar
 
elite*gold: 0
Join Date: Aug 2007
Posts: 310
Received Thanks: 13
Ok well tanelipe it helped. and uhh now back to the calculation >: P
xellios is offline  
Old 08/16/2009, 05:21   #14
 
elite*gold: 20
Join Date: Jul 2007
Posts: 613
Received Thanks: 486
i tried it again for u , now here it is ,
the main Potency points already calculated by the client when u send the player level,rebirth count and equipment items now all u need is the bonus points just like mentor and clans r8 ??

if yes then it's a status packet with type 36 and switch 1 ,
i think u will need to code a new packet for some other needs connected to character status but has a different structure than the one u already have just in case u wanted to add Top (WeeklyPkWar,ClassPkWar,GW and other ranks u may have)
Note:- i don't use PacketLogger so my structure may be different than Co2 but the thing i am sure of is it works fine and without any overloads may harm ur client or even leak ur PC

this is the packet i made

Code:
 public static byte[] TestPacket(ClientSocket CSocket,int Type,int Value)
        {
            PacketBuilder Packet = new PacketBuilder(1017, 20);
            Packet.Long(CSocket.Client.ID);
            Packet.Long(1);//switch
            Packet.Long(Type);
            Packet.Long(Value);
            return Packet.getFinal();
        }
samehvan is offline  
Old 08/16/2009, 06:39   #15
 
xellios's Avatar
 
elite*gold: 0
Join Date: Aug 2007
Posts: 310
Received Thanks: 13
Quote:
Originally Posted by samehvan View Post
i tried it again for u , now here it is ,
the main Potency points already calculated by the client when u send the player level,rebirth count and equipment items now all u need is the bonus points just like mentor and clans r8 ??

if yes then it's a status packet with type 36 and switch 1 ,
i think u will need to code a new packet for some other needs connected to character status but has a different structure than the one u already have just in case u wanted to add Top (WeeklyPkWar,ClassPkWar,GW and other ranks u may have)
Note:- i don't use PacketLogger so my structure may be different than Co2 but the thing i am sure of is it works fine and without any overloads may harm ur client or even leak ur PC

this is the packet i made

Code:
 public static byte[] TestPacket(ClientSocket CSocket,int Type,int Value)
        {
            PacketBuilder Packet = new PacketBuilder(1017, 20);
            Packet.Long(CSocket.Client.ID);
            Packet.Long(1);//switch
            Packet.Long(Type);
            Packet.Long(Value);
            return Packet.getFinal();
        }
actually the mentor and the clans **** already worked thank you but i was doing this so it could calculate how much potency the apprentice get of his mentor potency but i guess i will just make a calculation with :
Potency += MentorBattlePower / 5 / 2;
xellios is offline  
Reply


Similar Threads Similar Threads
Exp calculation?
01/09/2011 - CO2 Programming - 3 Replies
Hey, Does anyone has a decent exp calculation, or show me atleast how it is calculated? I really have no idea when it comes to conquer. Thanks in advance, ImmuneOne.
Damage Calculation
08/02/2010 - CO2 PServer Guides & Releases - 12 Replies
Okay. I haven't found any physical damage calculations out there that involves BP. Maybe nobody wants it or what but Ive been lurking these forums for a while looking for ideas for my server. Anyway, here's my ROUGH (+- 1.5k) damage compared to the real co. If anyone got any ideas on how to improve my equation by all means please post. I use 5165 but the gist of it should be the same as other servers. also, thanks to CoEmu v2, I used some of the damage calculation from there namely the...
Repair Calculation
06/04/2010 - CO2 Private Server - 0 Replies
Here is the correct gold calculation for repairing an item: int nRecoverDurability = Math.Max(0, Item.Stats.Durability - Item.CurDurability); if (nRecoverDurability == 0) return; byte Quality = ItemManipulation.GetQuality((int)Item.Stats.ID); double QualityMultipier = 0;
mentor potency calculation?
05/28/2010 - Conquer Online 2 - 1 Replies
anyone have it? the divide by 3 thing doesn't work :( 113 bp ninja mentors 4 bp noob. 16 gained :/
AL Damage Calculation
07/15/2007 - Archlord - 0 Replies
Does anyone know how AL computes damage? I have been playing with combinations of weapons and stones and can't find the magic equation. Here is what I have been doing: Ab = Base Attack (without weapon) Aw = Attack with Weapon Ae = Attack bonus due to Elemental Stones (e.g. 4 level 3 stones is 5+5+1+5+1+5+1 = 23) Sb = Skill bonus for Basic Attack (%) Se = Skill bonus for Elemental Attack (%) a = attenuation factor based on mob level and player level b = boolean for elemental damage...



All times are GMT +2. The time now is 10:40.


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.