Register for your free account! | Forgot your password?

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

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

Advertisement



Looking to others stats : X

Discussion on Looking to others stats : X within the CO2 Private Server forum part of the Conquer Online 2 category.

Reply
 
Old   #1
 
12tails's Avatar
 
elite*gold: 0
Join Date: Apr 2009
Posts: 773
Received Thanks: 441
Looking to others stats : X

hi all...

here i am again... hehe xD

why is this happening... someone can help??

Look at the photo xD
Attached Images
File Type: jpg 55815461.jpg (446.9 KB, 41 views)
12tails is offline  
Old 09/06/2009, 03:59   #2
 
Zion~'s Avatar
 
elite*gold: 20
Join Date: Aug 2009
Posts: 1,344
Received Thanks: 650
The dura is 0 so the item breaks, it needs to be repaired.
Zion~ is offline  
Old 09/06/2009, 04:00   #3
 
12tails's Avatar
 
elite*gold: 0
Join Date: Apr 2009
Posts: 773
Received Thanks: 441
are you sure?? ¬¬

@
omg... i don't maked dura.... all itens have dura 2 -.-''... but take a look at the potency too
12tails is offline  
Old 09/06/2009, 04:05   #4
 
12tails's Avatar
 
elite*gold: 0
Join Date: Apr 2009
Posts: 773
Received Thanks: 441
the item is NOT broken.... just when i look at others gear appears like that... but if i look at status they are normal... so... i wnna to know why this happen... also.. i don't fixed the intes dura yet... and look at potency... 4000 + oO wtf!
12tails is offline  
Old 09/06/2009, 04:14   #5


 
CptSky's Avatar
 
elite*gold: 0
Join Date: Jan 2008
Posts: 1,434
Received Thanks: 1,147
When you send the item packet. For your equipment, you send the dura but you don't send the dura when someone check the equipment.

Check this error.
CptSky is offline  
Old 09/06/2009, 05:35   #6
 
elite*gold: 20
Join Date: Jul 2007
Posts: 613
Received Thanks: 486
at your iteminfo.cs iteminfo packet ,the packet.long just after this line

Code:
                        Packet.Long(Item.UID);
			Packet.Long(Item.ItemID);
needs to be 4 Packet.Int(value);

i ddnt do the r8 calculation yet but u can put any numbers like this for example

Code:
                Packet.Long(Item.UID);
	        Packet.Long(Item.ItemID);
          	Packet.Int(10);
          	Packet.Int(20);
          	Packet.Int(20);
          	Packet.Int(20);
same at ViewOtherEquips packet
samehvan is offline  
Thanks
1 User
Old 09/06/2009, 13:05   #7
 
12tails's Avatar
 
elite*gold: 0
Join Date: Apr 2009
Posts: 773
Received Thanks: 441
samehvan... srry but won't solved... take a look

Code:
        public static byte[] ViewOthersEquip(int Target, Structs.Struct.ItemInfo Item)
        {
            PacketBuilder Packet = new PacketBuilder(1008, 48);
            Packet.Long(Target);
            Packet.Long(Item.ItemID);
            Packet.Int(Item.Dura);//12
            Packet.Int(Item.Dura);
            Packet.Short(5000);
            Packet.Short(4);//16-17
            Packet.Int(Item.Position);
            Packet.Int(0);
            Packet.Int(0);
            Packet.Int(0);
            Packet.Int(0);
            Packet.Int(0);
            Packet.Int(Item.Soc1);
            Packet.Int(Item.Soc2);
            Packet.Short(0);
            Packet.Int(Item.Plus);
            Packet.Int(Item.Bless);
            Packet.Int(0);
            Packet.Long(Item.Enchant);
            Packet.Int(0);
            Packet.Short(0);
            Packet.Short(0);
            Packet.Long(Item.Color);
            Packet.Long(Item.Progress);
            return Packet.getFinal();
        }
and this:

Code:
        public static byte[] ItemInfo(int UID, int itemid, int Plus, int Progress, int Minus, int Enchant, int soc1, int soc2, int currentdura, int maxdura, int Location, int SocketProgress, int Free, int Locked, int Color)
      	{
			PacketBuilder Packet = new PacketBuilder(1008, 48);
			Packet.Long(UID);
			Packet.Long(itemid);
			//Packet.Int(Math.Abs(200-currentdura) & 0xff);
			//Packet.Int((byte)(currentdura / 2.56) & 0xff);
			//Packet.Int(Math.Abs(200-maxdura) & 0xff);
          	//Packet.Int((byte)(maxdura / 2.56) & 0xff);
          	//Packet.Long(0);
            Packet.Int(10);
            Packet.Int(20);
            Packet.Int(20);
            Packet.Int(20);
          	Packet.Short(1);
          	Packet.Int(Location);
            Packet.Int(0);
            Packet.Short(SocketProgress);
            Packet.Int(0);
          	Packet.Int(0);
          	Packet.Int(soc1);
          	Packet.Int(soc2);
          	Packet.Short(2);
          	Packet.Int(Plus);
          	Packet.Int(Minus);
          	Packet.Int(Free); // Free / Unfree
          	Packet.Long(Enchant);
          	Packet.Int(0);
          	Packet.Short(0); // Suspicious item??
          	Packet.Short(Locked); //Boolean 1- yes 0 - no (locked)
          	Packet.Long(Color); //Item color. 2-9(headgear is 3-9)
            Packet.Long(Progress); // Composition Progress
          	return Packet.getFinal();
      	}
12tails is offline  
Old 09/06/2009, 18:43   #8
 
elite*gold: 20
Join Date: Jul 2007
Posts: 613
Received Thanks: 486
here is my View other packet , may be it has some different bytes than yours ,if any errors make it's values as 0

Code:
public static byte[] ViewOthersEquip(int Target, Structs.Struct.ItemInfo Item)
        {
            PacketBuilder Packet = new PacketBuilder(1008, 48);
            Packet.Long(Target);
            Packet.Long(Item.ItemID);
            Packet.Int(10);//12
            Packet.Int(20);
            Packet.Int(20);
            Packet.Int(20);
            Packet.Short(4);//16-17
            Packet.Int(Item.Position);
            Packet.Int(0);
            Packet.Short(Item.SocketProgress);
            Packet.Int(0);
            Packet.Int(0);
            Packet.Int(Item.Soc1);
            Packet.Int(Item.Soc2);
            Packet.Short(0);
            Packet.Int(Item.Plus);
            Packet.Int(Item.Bless);
            Packet.Int(Item.Free);
            Packet.Long(Item.Enchant);            
            Packet.Int(0);
            Packet.Short(0);
            Packet.Short(Item.Locked);
            Packet.Long(Item.Color);
            Packet.Long(Item.Progress);
            return Packet.getFinal();
        }
samehvan is offline  
Reply


Similar Threads Similar Threads
char stats, and item stats
01/27/2010 - Lineage 2 - 6 Replies
hi all today.. on a private server. i made a verry strange exp..... some clannies called me to come to HS to help for pvp as i came there i seen mass pvp arround 30 ppl all hitted 1 person ................ a S dagger items drago set and AS i watched it.... he needed for everyone just 1 or 2 hits beamed arround like hell..
stats bug
07/15/2008 - WoW PServer Exploits, Hacks & Tools - 17 Replies
ihr zu einer instanz gehen und dort sterben dann muss euch ein befreundeter spieler wiederbeleben ihr dürft aber nichts klicken weder annehmen noch ablehnen dann rennt in die instanz rein und eure stats und spelldmg usw sollten sich erhöht haben das könnt ihr so oft wiederholen wie ihr wollt nach einem relogg ist alles wieder normal ihr könnt ja mal posten auf welchen servern das funktioniert und wo es gefixxt ist bitte ein thanks wenns funzt und euch was gebracht hat^^ klappt auf...
Stats
04/14/2008 - Archlord - 33 Replies
Hey.. im new to archlord and i have some questions :S the list of stats: Physical Strenght - Increase your MAX hp + MAX hep per lvl Power - Increase damge dealt by you in close combat Wisdom - Increase max MANA(not usefull really) Inteligence- Increases damage dealt by your char from Spell attacks(magic casters usefull only) Agility- Increase your long range damage and hit accuracy Accuracy- Additional chance to preven missing an opponent
Stats help --------------> stats calculator!
02/02/2008 - Kal Online - 3 Replies
Hi. Can anyone post here any site or program for calculating the stats so if u put points u see how much hp otp and all u have and where u can put what kind stuff u wear. THX
stats generator or stats calculator
08/12/2006 - Conquer Online 2 - 7 Replies
For reborn classes is there calculator or stat generator, which will show what effect would happen if u put #s of attrubites in str,hp,mana, dex. Thx for help



All times are GMT +2. The time now is 16:20.


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.