Register for your free account! | Forgot your password?

You last visited: Today at 23:39

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

Advertisement



Guild Conductress

Discussion on Guild Conductress within the CO2 PServer Guides & Releases forum part of the CO2 Private Server category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Oct 2009
Posts: 9
Received Thanks: 9
Guild Conductress

im sure this has been posted before i believe but here it goes.this is for all the conductress' in gwa and ones placed outside on the maps they take you to.

go to NPCDialog.cs and do a search for

Code:
 default:
place the following code before the default:


Code:
#region GC1
                            case 104827:
                                {
                                    if (Control == 0)
                                    {
                                        GC.AddSend(Packets.NPCSay("Hello I can teleport you to Bird Island for a fee of 1000 gold!"));
                                        GC.AddSend(Packets.NPCLink("Yes Please!", 1));
                                        GC.AddSend(Packets.NPCLink("No thanks!", 255));
                                        GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                        GC.AddSend(Packets.NPCFinish());
                                    }
                                    if (Control == 1)
                                    {
                                        if (GC.MyChar.Silvers >= 1000)
                                        {
                                            GC.MyChar.Silvers -= 1000;
                                            GC.MyChar.Teleport(1015, 724, 573);
                                        }
                                        else
                                        {
                                            GC.AddSend(Packets.NPCSay("I'm sorry you do not have the required Gold."));
                                            GC.AddSend(Packets.NPCLink("Okay, I will be back when I have 1000 Gold.", 255));
                                            GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                            GC.AddSend(Packets.NPCFinish());
                                        }
                                    }
                                    break;
                                }
                            #endregion
Now go to your C:\OLDCODB and open your NPCs.txt and place this into it at the bottom
Code:
104827 1457 15 0 1038 341 339
now for her to appear on the side to get tele'd to back to NPCDialog.cs and place this code above the default:

Code:
#region GuildConductor1
                            case 101886:
                                {
                                    if (Control == 0)
                                    {
                                        GC.AddSend(Packets.NPCSay("Do you want enter the guild arena?"));
                                        GC.AddSend(Packets.NPCLink("Yes.", 1));
                                        GC.AddSend(Packets.NPCLink("Just passing by.", 255));
                                        GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                        GC.AddSend(Packets.NPCFinish());
                                    }
                                    else if (Control == 1)
                                        GC.MyChar.Teleport(1038, 349, 340);
                                    break;
                                }
                            #endregion
now go back to NPCs.txt and place this in at bottom
Code:
101886 1457 15 0 1015 714 572
if you want you can start server up and test this out now moving on to the rest of them

put in NPCDialog.cs
Code:
#region GC2
                            case 104815:
                                {
                                    if (Control == 0)
                                    {
                                        GC.AddSend(Packets.NPCSay("Hello I can teleport you to Ape Mountain for a fee of 1000 gold!"));
                                        GC.AddSend(Packets.NPCLink("Yes Please!", 1));
                                        GC.AddSend(Packets.NPCLink("No thanks!", 255));
                                        GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                        GC.AddSend(Packets.NPCFinish());
                                    }
                                    if (Control == 1)
                                    {
                                        if (GC.MyChar.Silvers >= 1000)
                                        {
                                            GC.MyChar.Silvers -= 1000;
                                            GC.MyChar.Teleport(1020, 548, 488);
                                        }
                                        else
                                        {
                                            GC.AddSend(Packets.NPCSay("I'm sorry you do not have the required Gold."));
                                            GC.AddSend(Packets.NPCLink("Okay, I will be back when I have 1000 Gold.", 255));
                                            GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                            GC.AddSend(Packets.NPCFinish());
                                        }
                                    }
                                    break;
                                }
                            #endregion
Put in NPCs.txt
Code:
104815 1467 15 0 1038 348 331
NPCDialog.cs
Code:
#region GuildConductor2
                            case 102389:
                                {
                                    if (Control == 0)
                                    {
                                        GC.AddSend(Packets.NPCSay("Do you want enter the guild arena?"));
                                        GC.AddSend(Packets.NPCLink("Yes.", 1));
                                        GC.AddSend(Packets.NPCLink("Just passing by.", 255));
                                        GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                        GC.AddSend(Packets.NPCFinish());
                                    }
                                    else if (Control == 1)
                                        GC.MyChar.Teleport(1038, 349, 340);
                                    break;
                                }
                            #endregion
NPCs.txt
Code:
102389 1467 15 0 1020 551 484
NPCDialog.cs
Code:
#region GC3
                            case 104821:
                                {
                                    if (Control == 0)
                                    {
                                        GC.AddSend(Packets.NPCSay("Hello I can teleport you to Mystic Castle for a fee of 1000 gold!"));
                                        GC.AddSend(Packets.NPCLink("Yes Please!", 1));
                                        GC.AddSend(Packets.NPCLink("No thanks!", 255));
                                        GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                        GC.AddSend(Packets.NPCFinish());
                                    }
                                    if (Control == 1)
                                    {
                                        if (GC.MyChar.Silvers >= 1000)
                                        {
                                            GC.MyChar.Silvers -= 1000;
                                            GC.MyChar.Teleport(1001, 328, 494);
                                        }
                                        else
                                        {
                                            GC.AddSend(Packets.NPCSay("I'm sorry you do not have the required Gold."));
                                            GC.AddSend(Packets.NPCLink("Okay, I will be back when I have 1000 Gold.", 255));
                                            GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                            GC.AddSend(Packets.NPCFinish());
                                        }
                                    }
                                    break;
                                }
                            #endregion
NPCs.txt
Code:
104821 1477 15 0 1038 335 337
NPCDialog.cs
Code:
                            #region GuildConductor3
                            case 101878:
                                {
                                    if (Control == 0)
                                    {
                                        GC.AddSend(Packets.NPCSay("Do you want enter the guild arena?"));
                                        GC.AddSend(Packets.NPCLink("Yes.", 1));
                                        GC.AddSend(Packets.NPCLink("Just passing by.", 255));
                                        GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                        GC.AddSend(Packets.NPCFinish());
                                    }
                                    else if (Control == 1)
                                        GC.MyChar.Teleport(1038, 349, 340);
                                    break;
                                }
                            #endregion
NPCs.txt
Code:
 101878 1477 15 0 1001 322 495
NPCDialog.cs
Code:
#region GC4
                            case 104809:
                                {
                                    if (Control == 0)
                                    {
                                        GC.AddSend(Packets.NPCSay("Hello I can teleport you to MetZone for a fee of 1000 gold!"));
                                        GC.AddSend(Packets.NPCLink("Yes Please!", 1));
                                        GC.AddSend(Packets.NPCLink("No thanks!", 255));
                                        GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                        GC.AddSend(Packets.NPCFinish());
                                    }
                                    if (Control == 1)
                                    {
                                        if (GC.MyChar.Silvers >= 1000)
                                        {
                                            GC.MyChar.Silvers -= 1000;
                                            GC.MyChar.Teleport(1210, 716, 1037);
                                        }
                                        else
                                        {
                                            GC.AddSend(Packets.NPCSay("I'm sorry you do not have the required Gold."));
                                            GC.AddSend(Packets.NPCLink("Okay, I will be back when I have 1000 Gold.", 255));
                                            GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                            GC.AddSend(Packets.NPCFinish());
                                        }
                                    }
                                    break;
                                }
                            #endregion
NPCs.txt
Code:
104809 1487 15 0 1038 349 324
NPCDialog.cs
Code:
#region GuildConductor4
                            case 103489:
                                {
                                    if (Control == 0)
                                    {
                                        GC.AddSend(Packets.NPCSay("Do you want enter the guild arena?"));
                                        GC.AddSend(Packets.NPCLink("Yes.", 1));
                                        GC.AddSend(Packets.NPCLink("Just passing by.", 255));
                                        GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                        GC.AddSend(Packets.NPCFinish());
                                    }
                                    else if (Control == 1)
                                        GC.MyChar.Teleport(1038, 349, 340);
                                    break;
                                }
                            #endregion
NPCs.txt
Code:
103489 1487 15 0 1210 715 1040
please be easy on me this is my first time doing this on here but hope it helps others outplease thank me if it is useful
JavaFreak is offline  
Thanks
6 Users
Old 04/06/2010, 22:52   #2
 
Arcо's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 8,765
Received Thanks: 5,291
+k glad to see your learning java!
Seeing this really made me smile.
Arcо is offline  
Old 04/06/2010, 23:48   #3
 
elite*gold: 0
Join Date: Feb 2010
Posts: 492
Received Thanks: 222
Released before so you didn't get my +Thanks but GOOD JOB!
Paralyzer[GM] is offline  
Old 04/06/2010, 23:50   #4
 
zTREME's Avatar
 
elite*gold: 0
Join Date: Apr 2010
Posts: 273
Received Thanks: 51
Quote:
Originally Posted by Paralyzer[GM] View Post
Released before so you didn't get my +Thanks but GOOD JOB!
give him a thanks for this.
The shop you made is also released
I released for a half year ago ^^
zTREME is offline  
Old 04/07/2010, 01:37   #5
 
elite*gold: 0
Join Date: Jan 2009
Posts: 1,922
Received Thanks: 491
I released a gay pirate from the gates of hell half a year ago. hes taken the name.. paralyzer.
PeTe Ninja is offline  
Thanks
2 Users
Old 04/07/2010, 02:17   #6
 
elite*gold: 0
Join Date: Feb 2010
Posts: 492
Received Thanks: 222
I never said you had to give me +Thanks did I ?
Paralyzer[GM] is offline  
Old 04/07/2010, 04:54   #7
 
Arcо's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 8,765
Received Thanks: 5,291
Para, this hasn't been released. I just checked.
Arcо is offline  
Thanks
1 User
Old 04/07/2010, 05:26   #8
 
Arcо's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 8,765
Received Thanks: 5,291
Quote:
Originally Posted by Ginger112 View Post
wow dude ur such a ***
#reported
Decker don't flame.
Arcо is offline  
Old 04/07/2010, 05:51   #9
 
elite*gold: 0
Join Date: Oct 2009
Posts: 9
Received Thanks: 9
Quote:
Originally Posted by Ginger112 View Post
NOOOOOOOOOO DONT REPORT ME PLZZZZZZZZZZ
lol **** face ******, ur a douche, aww poor baby lost guardian?

Please dont flame in my thread.this is a release not a flame thread so plz stop
JavaFreak is offline  
Thanks
3 Users
Reply


Similar Threads Similar Threads
[HELP] Conductress dont work
01/25/2009 - CO2 Private Server - 2 Replies
the conductress in every city dont work for me... when i click her the thing pops up n ask where do u wanna go, so i click market but when i click it i stay at the same place... If you can help me plz
conductress in botjail?
09/15/2007 - Conquer Online 2 - 5 Replies
was just wondering.. u think it's possible to "summon" conductress in botjail? same way u could summon clientsided npcs in few proxys.



All times are GMT +2. The time now is 23:39.


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.