Register for your free account! | Forgot your password?

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

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

Advertisement



P Server "NPC base code/shops/drop items" for who asked me 2 do it

Discussion on P Server "NPC base code/shops/drop items" for who asked me 2 do it within the CO2 Private Server forum part of the Conquer Online 2 category.

Reply
 
Old 05/05/2009, 14:23   #2221
 
elite*gold: 0
Join Date: Feb 2008
Posts: 20
Received Thanks: 0
yah samehvan. But i descovered some bugs idk how to solve em out
You can rb as many times as you want and you will have a great attack. If you dc all will be back to normal
HP increase while attked. Sometimes it happens when a person hittes for my hp dont go down... actually grow up xD.

And thank you for all ur hard work!
0civ is offline  
Old 05/05/2009, 14:23   #2222
 
elite*gold: 0
Join Date: May 2009
Posts: 68
Received Thanks: 16
5017 Done ill update it whenever u add me on msn or send me the soure :P To the Wh.... we would have to look on Hybrids one or LOTF shouldnt be too hard :P
ShockSoft is offline  
Old 05/05/2009, 23:28   #2223
 
elite*gold: 0
Join Date: Mar 2009
Posts: 2
Received Thanks: 0
Ihave a problem ... when i start TheCoServer , PowerSourceCo or any source gives me an error .. what should i do ? Screen here:
mataecheala is offline  
Old 05/06/2009, 01:38   #2224
 
elite*gold: 20
Join Date: Jul 2007
Posts: 613
Received Thanks: 486
Quote:
Originally Posted by 0civ View Post
yah samehvan. But i descovered some bugs idk how to solve em out
You can rb as many times as you want and you will have a great attack. If you dc all will be back to normal
HP increase while attked. Sometimes it happens when a person hittes for my hp dont go down... actually grow up xD.

And thank you for all ur hard work!
yea it's an old bug i fixed the first reborn ,when reborn at Market u have to be lvl 120 and non reborn or else it wont allow u to reborn again , the second reborn should be very easy i'll try to fix it soon

Quote:
Originally Posted by ShockSoft View Post
5017 Done ill update it whenever u add me on msn or send me the soure :P To the Wh.... we would have to look on Hybrids one or LOTF shouldnt be too hard :P
oh, i dd uploaded it with my last post , check the first post

and about the WH i think it might be my client or somthing , couse the very strange thing is that u have to click the WH man 2ice to view your WareHouse items and u can c also that the first click on him he looks to a wrong direction then when u click it again he looks to u and ur items show up , i tried to send the function 2ice to solve that but also the same i even sent the packet 4 times but still have to click the WH man 2wice i dunno why this problem drove me crazy :P

Quote:
Originally Posted by mataecheala View Post
Ihave a problem ... when i start TheCoServer , PowerSourceCo or any source gives me an error .. what should i do ? Screen here:
i think u need net framework new version then try to rebuild the solution
samehvan is offline  
Old 05/06/2009, 03:51   #2225
 
elite*gold: 20
Join Date: Jul 2007
Posts: 613
Received Thanks: 486
the Rebitems fixed download and replace the character.cs or download the source again or just edit your character.cs ---> RebItems void to the following

Code:
string[] Head = RepChar.Eq_HeadGear.Split('-');
            if (Head.Length > 1)
            {
                char[] HeadId = Head[0].ToCharArray();
                HeadId[4] = char.Parse("0");
                string newid = "";
                for (int x = 0; x < HeadId.Length; x++)
                {
                    newid = newid + HeadId[x];
                }
                string newHead = newid;
                for (int x = 1; x < Head.Length; x++)
                {
                    newHead = newHead + "-" + Head[x];
                }
                RepChar.Eq_HeadGear = newHead;

            }
            string[] Nick = RepChar.Eq_Necklace.Split('-');
            if (Nick.Length > 1)
            {
                char[] Id = Nick[0].ToCharArray();
                Id[4] = char.Parse("2");[U][B] Id[3] = char.Parse("0");[/B][/U]
                string newid = "";
                for (int x = 0; x < Id.Length; x++)
                {
                    newid = newid + Id[x];
                }
                string new_ = newid;
                for (int x = 1; x < Nick.Length; x++)
                {
                    new_ = new_ + "-" + Nick[x];
                }
                RepChar.Eq_Necklace = new_;
            }
            string[] Ring = RepChar.Eq_Ring.Split('-');
            if (Ring.Length > 1)
            {
                char[] Id = Ring[0].ToCharArray();
                Id[4] = char.Parse("1");[U][B] Id[3] = char.Parse("0");[/B][/U]
                string newid = "";
                for (int x = 0; x < Id.Length; x++)
                {
                    newid = newid + Id[x];
                }
                string new_ = newid;
                for (int x = 1; x < Ring.Length; x++)
                {
                    new_ = new_ + "-" + Ring[x];
                }
                RepChar.Eq_Ring = new_;
            }
            string[] R8Hand = RepChar.Eq_RightHand.Split('-');
            if (R8Hand.Length > 1)
            {
                char[] Id = R8Hand[0].ToCharArray();
                Id[4] = char.Parse("2");[U][B] Id[3] = char.Parse("0");[/B][/U]
                string newid = "";
                for (int x = 0; x < Id.Length; x++)
                {
                    newid = newid + Id[x];
                }
                string new_ = newid;
                for (int x = 1; x < R8Hand.Length; x++)
                {
                    new_ = new_ + "-" + R8Hand[x];
                }
                RepChar.Eq_RightHand = new_;
            }
            string[] Left = RepChar.Eq_LeftHand.Split('-');
            if (Left.Length > 1)
            {
                char[] Id = Left[0].ToCharArray();
                Id[4] = char.Parse("2"); [U][B]Id[3] = char.Parse("0");[/B][/U]
                string newid = "";
                for (int x = 0; x < Id.Length; x++)
                {
                    newid = newid + Id[x];
                }
                string new_ = newid;
                for (int x = 1; x < Left.Length; x++)
                {
                    new_ = new_ + "-" + Left[x];
                }
                RepChar.Eq_LeftHand = new_;
            }
            string[] Armor = RepChar.Eq_Armor.Split('-');
            if (Armor.Length > 1)
            {
                char[] Id = Armor[0].ToCharArray();
                [U][B]int check = (int)(Id[2]);
                if (check >= 5) Id[2] = (char)(check - 5);[/B][/U]
                Id[4] = char.Parse("0");
                string newid = "";
                for (int x = 0; x < Id.Length; x++)
                {
                    newid = newid + Id[x];
                }
                string new_ = newid;
                for (int x = 1; x < Armor.Length; x++)
                {
                    new_ = new_ + "-" + Armor[x];
                }
                RepChar.Eq_Armor = new_;
            }
            string[] Boots = RepChar.Eq_Boots.Split('-');
            if (Boots.Length > 1)
            {
                char[] Id = Boots[0].ToCharArray();
                Id[4] = char.Parse("1"); [B][U]Id[3] = char.Parse("0");[/U][/B]
                string newid = "";
                for (int x = 0; x < Id.Length; x++)
                {
                    newid = newid + Id[x];
                }
                string new_ = newid;
                for (int x = 1; x < Boots.Length; x++)
                {
                    new_ = new_ + "-" + Boots[x];
                }
                RepChar.Eq_Boots = new_;
            }
            RepChar.SendEquips2();
            RepChar.SaveChar();
        }
the bold underlined parts are what u need to add
samehvan is offline  
Old 05/06/2009, 05:42   #2226
 
elite*gold: 0
Join Date: May 2009
Posts: 68
Received Thanks: 16
Ok ill look on it and upgrade it now then u can work on it again

Here it is : 5017 with new RepItem
Attached Files
File Type: rar Source.rar (145.7 KB, 14 views)
ShockSoft is offline  
Thanks
2 Users
Old 05/06/2009, 07:29   #2227
 
elite*gold: 20
Join Date: Jul 2007
Posts: 613
Received Thanks: 486
Quote:
Originally Posted by ShockSoft View Post
Ok ill look on it and upgrade it now then u can work on it again

Here it is : 5017 with new RepItem
thanks , very good and fast work

oops , ddnt work , dd u remove the threadpoollib.* from the debug folder?

if it has some edits so u forgot to return them back to the folder or what i am missing ?
samehvan is offline  
Old 05/06/2009, 15:45   #2228
 
elite*gold: 0
Join Date: May 2009
Posts: 68
Received Thanks: 16
yep woops

Im sry ill upload them all again sry again
ShockSoft is offline  
Old 05/06/2009, 15:56   #2229
 
elite*gold: 0
Join Date: May 2009
Posts: 68
Received Thanks: 16
.
Attached Files
File Type: rar 5017 all DLLs and ready to use samehvan project source.rar (528.8 KB, 19 views)
ShockSoft is offline  
Thanks
2 Users
Old 05/06/2009, 15:58   #2230
 
elite*gold: 0
Join Date: Apr 2009
Posts: 69
Received Thanks: 10
ty
Bochumboy is offline  
Old 05/07/2009, 05:34   #2231
 
elite*gold: 0
Join Date: May 2009
Posts: 68
Received Thanks: 16
hehe hit the thx button please :P

Well Samehvan could u PM me ur msn?? plspls :P
ShockSoft is offline  
Old 05/07/2009, 09:15   #2232
 
elite*gold: 20
Join Date: Jul 2007
Posts: 613
Received Thanks: 486
still not working ShockSoft ,, always gives me an error (unknown one)

edit:- lol ur PM option is disabled , anyway i already posted it on the prev page
samehvan is offline  
Old 05/07/2009, 13:53   #2233
 
elite*gold: 0
Join Date: May 2009
Posts: 68
Received Thanks: 16
Ok i got it thx :P and ill enable my pm function :P

Btw the error appears on login right?
ShockSoft is offline  
Old 05/07/2009, 15:21   #2234
 
elite*gold: 20
Join Date: Jul 2007
Posts: 613
Received Thanks: 486
Quote:
Originally Posted by ShockSoft View Post
Ok i got it thx :P and ill enable my pm function :P

Btw the error appears on login right?
yes,and i used the cidLoader , still the same
samehvan is offline  
Old 05/13/2009, 17:28   #2235
 
elite*gold: 0
Join Date: Feb 2009
Posts: 62
Received Thanks: 0
**** u Shawan or what ever is your name. Im sure nobody know ur name. Your source is **** and its just sux with 900 bugs .. lmao !!! stop your stupid projekt and get a life this is just stupid this time waste and the end is only **** and noob things,,. WWWWW
MegaCheater is offline  
Reply


Similar Threads Similar Threads
Verkaufe: Guild Wars "Platin", "Ectos, "Items" mehr...
09/12/2008 - Guild Wars Trading - 0 Replies
Hallo, ich biete gegen Euro viele schöne dinge für das Spiel Guild Wars an. Bitte meldet euch dann bei mir per PM was genau ihr haben möchtet und wieviel von den jeweiligen Virtuellen Gegenständen. Die Übergabe kann wie folgt ab laufen. Ich erstelle extra für euch die Ebay Auktion mit der gewünschten menge der jeweiligen Virtuellen Guild Wars gegenstände. Wenn ihr kein Ebay habt und euch auch kein Account anlegen möchtet kann die Übergabe auch ausserhalb Ebays statt finden hierzu erhaltet...



All times are GMT +1. The time now is 23:31.


Powered by vBulletin®
Copyright ©2000 - 2026, 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 ©2026 elitepvpers All Rights Reserved.