Register for your free account! | Forgot your password?

You last visited: Today at 02:38

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

Advertisement



+1/+2 Stone Problem

Discussion on +1/+2 Stone Problem within the CO2 Private Server forum part of the Conquer Online 2 category.

Closed Thread
 
Old   #1
 
elite*gold: 0
Join Date: Dec 2007
Posts: 18
Received Thanks: 0
+1/+2 Stone Problem

Ok so i have created myself a new private server of CO. The only problem is, the +1 and +2 stone will not work.. It gives me the complaint that "minor item has to have 1 additional point" or something like that. However +1 items work. I custom made my own stone seller, but my question is, since +1 stones and +2 stones dont work, how can i make the seller sell +1 items and +2 items? or how can i fix the +1/+2 stones, whichever is easier.

Edit: Any1 help?? =/
Danielplanto is offline  
Old 04/11/2010, 18:22   #2
 
Arcо's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 8,764
Received Thanks: 5,291
Did you made the stone have 1 plus point when being sold?
Is it +1Stone or +1Stone(+1)
Arcо is offline  
Thanks
1 User
Old 04/12/2010, 00:31   #3
 
elite*gold: 0
Join Date: Dec 2007
Posts: 18
Received Thanks: 0
Quote:
Originally Posted by .Arco View Post
Did you made the stone have 1 plus point when being sold?
Is it +1Stone or +1Stone(+1)
Ok, so i figured out the problem, the stones the shop are selling are 730002-0-0-0-0-0 yet it needs to sell them 730002-1-0-0-0-0 so how can i change the shop to be that specific when the ID is the same?(Using PowerSource CO Source)

Edit: +8 stones wont work either, those are the only 3 that dont, but for same prob.

EDIT: They sell them in shop lookin way its spost to, but when i recieve the item its not a real +1stone

since idk how to add images into this i just posted as attachment. the images are the prob, check them to see whats going on and maybe help =/
Attached Images
File Type: jpg 606215841.jpg (255.1 KB, 11 views)
File Type: jpg 606219411.jpg (260.3 KB, 4 views)
File Type: jpg 606224503.jpg (260.6 KB, 6 views)
Danielplanto is offline  
Old 04/12/2010, 02:33   #4
 
Arcо's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 8,764
Received Thanks: 5,291
Oh you did it via shop.dat?
You go to I think Other.cs or just ctrl+f for 730003 and ifnd those +stones and learn from them.
Arcо is offline  
Thanks
1 User
Old 04/12/2010, 02:57   #5
 
elite*gold: 0
Join Date: Dec 2007
Posts: 18
Received Thanks: 0
Quote:
Originally Posted by .Arco View Post
Oh you did it via shop.dat?
You go to I think Other.cs or just ctrl+f for 730003 and ifnd those +stones and learn from them.
OK im there... but not sure how to edit it to fix it help pls?

EDIT: Plus i dnt see 730003 in there at all, just 730001, 2, 6, 7, 8, 9 -- odd

EDIT: I just need shop to sell differently. It sells like this: - 730001 (+1 stone) 730002 (+2stone) etc

730001-0-0-0-0-0
730002-0-0-0-0-0
730003-3-0-0-0-0
730004-4-0-0-0-0
730005-5-0-0-0-0
730006-6-0-0-0-0
730007-7-0-0-0-0
730008-0-0-0-0-0

I need to make it sell like:

730001-1-0-0-0-0
730002-2-0-0-0-0
730003-3-0-0-0-0
730004-4-0-0-0-0
730005-5-0-0-0-0
730006-6-0-0-0-0
730007-7-0-0-0-0
730008-8-0-0-0-0
Danielplanto is offline  
Old 04/12/2010, 03:15   #6
 
Arcо's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 8,764
Received Thanks: 5,291
Wait you did this via shop.dat or custom npc seller?
Arcо is offline  
Thanks
1 User
Old 04/12/2010, 03:23   #7
 
elite*gold: 0
Join Date: Dec 2007
Posts: 18
Received Thanks: 0
Quote:
Originally Posted by .Arco View Post
Wait you did this via shop.dat or custom npc seller?
Shop.dat i figured thats way i shud, i made my OWN Custom NPC tho, and it works, it sells, its a Storekeeper model named Storekeeper. In market, i just cant get it to sell the +1,2,8 stones right.


And yes, i did change both Shop.dat's for client AND server, or else i cudnt even buy from it. Just wanna make sure you knew that.
Danielplanto is offline  
Old 04/12/2010, 05:09   #8
 
elite*gold: 0
Join Date: Jan 2009
Posts: 1,922
Received Thanks: 491
Problem Fixed

It's in the source code...

In case 1: of client.cs you must go and edit this part...

Code:
byte WithPlus = 0;
                                                        if (ItemID == 730003)
                                                            WithPlus = 3;
                                                        if (ItemID == 730004)
                                                            WithPlus = 4;
                                                        if (ItemID == 730005)
                                                            WithPlus = 5;
                                                        if (ItemID == 730006)
                                                            WithPlus = 6;
                                                        if (ItemID == 730007)
                                                            WithPlus = 7;
to look like

Code:
byte WithPlus = 0;
                                                        if (ItemID == 730001)
                                                            WithPlus = 1;
                                                        if (ItemID == 730002)
                                                            WithPlus = 2;
                                                        if (ItemID == 730003)
                                                            WithPlus = 3;
                                                        if (ItemID == 730004)
                                                            WithPlus = 4;
                                                        if (ItemID == 730005)
                                                            WithPlus = 5;
                                                        if (ItemID == 730006)
                                                            WithPlus = 6;
                                                        if (ItemID == 730007)
                                                            WithPlus = 7;
                                                        if (ItemID == 730008)
                                                            WithPlus = 8;
                                                        if (ItemID == 730009)
                                                            WithPlus = 9;
creds to arco
PeTe Ninja is offline  
Old 04/12/2010, 06:40   #9
 
Huseby's Avatar
 
elite*gold: 106
Join Date: Oct 2006
Posts: 6,047
Received Thanks: 1,164
#Closed
Huseby is offline  
Closed Thread


Similar Threads Similar Threads
RED STONE
10/31/2009 - RFO Hacks, Bots, Cheats, Exploits & Guides - 12 Replies
Hi all, someone know a metod to obtain th red ston? i know that will be obain only from mining and processing but, in 45 lvl i obtain onli 4 red stone...i nedd to mining a specific color of ore? or exist another metod to obtain it? thanks all.
WtS 45 meteor stone lvl 5 + 7 Terra stone lvl 5
02/24/2009 - Archlord Trading - 0 Replies
Wanna to sell 45 meteor stone lvl 5 + 7 Terra stone lvl 5 Cyripus server /w me Christian21 oR MSN [email protected] offer me please thankou
br stone¿?
11/17/2008 - Silkroad Online - 3 Replies
is there a br stone to change the br if there is what is the name? :confused:
+1 Stone
05/16/2007 - CO2 Exploits, Hacks & Tools - 18 Replies
well its not the perfect scam and im not favored in scamming but i fell for it so i did it to get my money bak. im not sure if its been posted but if u take StarDiamonds or MoonDiamonds(anything that looks like +1 or +2 stone) and put it in with a bunch of other +1 stones and sell them for normal price. they go for like 1.5kk on my server and i mixed 5 stardiamonds in with 7 +1 stones and by the morning they were all sold. you need to find people who just look for prices and not check the...



All times are GMT +1. The time now is 02:38.


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.