Register for your free account! | Forgot your password?

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

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

Advertisement



Can you end this code?

Discussion on Can you end this code? within the CO2 Private Server forum part of the Conquer Online 2 category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Feb 2010
Posts: 480
Received Thanks: 207
Can you end this code?

Can you end this code?
I can't for some reason -.-

Code:
                            #region Escort Chief
                            case 296785:
                                {
                                    if (Control == 0)
                                    {
                                        GC.AddSend(Packets.NPCSay("Can you help me retrieve the Peace Jade?"));
                                        GC.AddSend(Packets.NPCLink("Yes", 1));
                                        GC.AddSend(Packets.NPCLink("I have the Peace Jade", 2));
                                        GC.AddSend(Packets.NPCLink("Just passing by", 255));
                                        GC.AddSend(Packets.NPCSetFace(30));
                                        GC.AddSend(Packets.NPCFinish());
                                        {
                                            if (Control == 1)
                                            {
                                                GC.AddSend(Packets.NPCSay("You need to find the Shop Boy in Desert City."));
                                                GC.AddSend(Packets.NPCLink("Ok", 255));
                                                GC.AddSend(Packets.NPCLink("Just passing by", 255));
                                                GC.AddSend(Packets.NPCSetFace(30));
                                                GC.AddSend(Packets.NPCFinish());
                                                {
                                                    if (Control == 2)
                                                    {
                                                        if (GC.MyChar.InventoryContains(721250, 1))
                                                        {
                                                            GC.MyChar.CPs += 20000000
                                                            GC.AddSend(Packets.NPCSay("Great, here is your reward."));
                                                            GC.AddSend(Packets.NPCLink("Thank you!", 255));
                                                            GC.AddSend(Packets.NPCSetFace(30));
                                                            GC.AddSend(Packets.NPCFinish());
                                                            else
                                                            {
                                                                GC.AddSend(Packets.NPCSay("You don't have the required item"));
                                                                GC.AddSend(Packets.NPCLink("Sorry", 255));
                                                                GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                                                GC.AddSend(Packets.NPCFinish());
Decker_ is offline  
Old 02/23/2010, 19:24   #2
 
elite*gold: 0
Join Date: Sep 2008
Posts: 178
Received Thanks: 62
omg again? lol You learn absolulty nothing o.o
.Kob is offline  
Old 02/23/2010, 19:28   #3
 
elite*gold: 0
Join Date: Feb 2010
Posts: 480
Received Thanks: 207
I can't seem to end it.
No codes work for me.
Can you help?
Decker_ is offline  
Old 02/23/2010, 19:31   #4
 
coreymills's Avatar
 
elite*gold: 0
Join Date: Mar 2008
Posts: 555
Received Thanks: 99
Code:
#region Escort Chief
                            case 296785:
                                {
                                    if (Control == 0)
                                    {
                                        GC.AddSend(Packets.NPCSay("Can you help me retrieve the Peace Jade?"));
                                        GC.AddSend(Packets.NPCLink("Yes", 1));
                                        GC.AddSend(Packets.NPCLink("I have the Peace Jade", 2));
                                        GC.AddSend(Packets.NPCLink("Just passing by", 255));
                                        GC.AddSend(Packets.NPCSetFace(30));
                                        GC.AddSend(Packets.NPCFinish());
                                        {
                                            if (Control == 1)
                                            {
                                                GC.AddSend(Packets.NPCSay("You need to find the Shop Boy in Desert City."));
                                                GC.AddSend(Packets.NPCLink("Ok", 255));
                                                GC.AddSend(Packets.NPCLink("Just passing by", 255));
                                                GC.AddSend(Packets.NPCSetFace(30));
                                                GC.AddSend(Packets.NPCFinish());
                                                {
                                                    if (Control == 2)
                                                    {
                                                        if (GC.MyChar.InventoryContains(721250, 1))
                                                        {
                                                            GC.MyChar.CPs += 20000000;
                                                            GC.AddSend(Packets.NPCSay("Great, here is your reward."));
                                                            GC.AddSend(Packets.NPCLink("Thank you!", 255));
                                                            GC.AddSend(Packets.NPCSetFace(30));
                                                            GC.AddSend(Packets.NPCFinish());
                                                        }
                                                        else
                                                        {
                                                            GC.AddSend(Packets.NPCSay("You don't have the required item"));
                                                            GC.AddSend(Packets.NPCLink("Sorry", 255));
                                                            GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                                            GC.AddSend(Packets.NPCFinish());
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    }
                                    break;
                                }
                          #endregion
coreymills is offline  
Old 02/23/2010, 19:31   #5
 
ImmuneOne's Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 754
Received Thanks: 544
Code:
                                                            #region Escort Chief
                            case 296785:
                                {
                                    if (Control == 0)
                                    {
                                        GC.AddSend(Packets.NPCSay("Can you help me retrieve the Peace Jade?"));
                                        GC.AddSend(Packets.NPCLink("Yes", 1));
                                        GC.AddSend(Packets.NPCLink("I have the Peace Jade", 2));
                                        GC.AddSend(Packets.NPCLink("Just passing by", 255));
                                        GC.AddSend(Packets.NPCSetFace(30));
                                        GC.AddSend(Packets.NPCFinish());
                                    }
                                    else if (Control == 1)
                                    {
                                        GC.AddSend(Packets.NPCSay("You need to find the Shop Boy in Desert City."));
                                        GC.AddSend(Packets.NPCLink("Ok", 255));
                                        GC.AddSend(Packets.NPCLink("Just passing by", 255));
                                        GC.AddSend(Packets.NPCSetFace(30));
                                        GC.AddSend(Packets.NPCFinish());
                                    }
                                    else if (Control == 2)
                                    {
                                        if (GC.MyChar.InventoryContains(721250, 1))
                                        {
                                            GC.MyChar.CPs += 20000000;
                                            GC.AddSend(Packets.NPCSay("Great, here is your reward."));
                                            GC.AddSend(Packets.NPCLink("Thank you!", 255));
                                            GC.AddSend(Packets.NPCSetFace(30));
                                            GC.AddSend(Packets.NPCFinish());
                                        }
                                        else
                                        {
                                            GC.AddSend(Packets.NPCSay("You don't have the required item"));
                                            GC.AddSend(Packets.NPCLink("Sorry", 255));
                                            GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                            GC.AddSend(Packets.NPCFinish());
                                        }
                                    }
                                    break;
                                }
                                                            #endregion
There you go.
ImmuneOne is offline  
Old 02/23/2010, 19:36   #6
 
elite*gold: 0
Join Date: Feb 2010
Posts: 480
Received Thanks: 207
This is what I got and it don't work:
Code:
                            #region Escort Chief
                            case 296785:
                                {
                                    if (Control == 0)
                                    {
                                        GC.AddSend(Packets.NPCSay("Can you help me retrieve the Peace Jade?"));
                                        GC.AddSend(Packets.NPCLink("Yes", 1));
                                        GC.AddSend(Packets.NPCLink("I have the Peace Jade", 2));
                                        GC.AddSend(Packets.NPCLink("Just passing by", 255));
                                        GC.AddSend(Packets.NPCSetFace(30));
                                        GC.AddSend(Packets.NPCFinish());
                                        {
                                            if (Control == 1)
                                            {
                                                GC.AddSend(Packets.NPCSay("Go to desert city and kills blade ghosts until you get a peace jade then bring it to me for your reward."));
                                                GC.AddSend(Packets.NPCLink("Ok", 255));
                                                GC.AddSend(Packets.NPCLink("Just passing by", 255));
                                                GC.AddSend(Packets.NPCSetFace(30));
                                                GC.AddSend(Packets.NPCFinish());
                                                {
                                                    if (Control == 2)
                                                    {
                                                        if (GC.MyChar.InventoryContains(721250, 1))
                                                        {
                                                            GC.MyChar.CPs += 20000000;
                                                            GC.AddSend(Packets.NPCSay("Great, here is your reward."));
                                                            GC.AddSend(Packets.NPCLink("Thank you!", 255));
                                                            GC.AddSend(Packets.NPCSetFace(30));
                                                            GC.AddSend(Packets.NPCFinish());
                                                            else;
                                                            {
                                                                GC.AddSend(Packets.NPCSay("You don't have the required item"));
                                                                GC.AddSend(Packets.NPCLink("Sorry", 255));
                                                                GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                                                GC.AddSend(Packets.NPCFinish());
                                                            }
                                                        }
                                                        break;
                                                    }
#endregion
Decker_ is offline  
Old 02/23/2010, 20:25   #7
 
ImmuneOne's Avatar
 
elite*gold: 0
Join Date: Nov 2009
Posts: 754
Received Thanks: 544
I told you to use mine..
ImmuneOne is offline  
Reply


Similar Threads Similar Threads
B> DriftCity CBS Code | S> War Rock Code / Bounty Bay Code etc.
10/05/2010 - Trading - 1 Replies
Hi, wie schon im Titel beschrieben. In der CBS vom November gab es Bonusodes für mehrere Spiele. Ich benötige DriftCity Codes. Kann sonst für alle anderen Spiele die Codes biten, einige auch doppelt. Hier eine Liste der Spiele und Bonusaktionen: - (2x) War Rock - (2x) War of Titans - (2x) World of Warcraft - (1x) Warhammer Online - (1x) Bounty Bay online
WTB: Japanischer/Chinesicher Guild Wars Trial-Code und EoTn Code
02/08/2010 - Guild Wars Trading - 5 Replies
Hallo, Wie schon oben in der beschreibung steht suche ich Japanischer/Chinesicher Trial-Code + EoTn oder die einzelnen Codes! Ich würde in Platin/Ektos/ZkeYs zahlen (allerdings nur mit Treuhandhändler), man weiss ja nie was einem Verkauft wird :P. Bitte so schnell wie möglich melden, wen einer es haben sollte.



All times are GMT +2. The time now is 12:26.


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.