Register for your free account! | Forgot your password?

You last visited: Today at 21:08

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

Advertisement



[Release] Valentine Quest

Discussion on [Release] Valentine Quest within the CO2 PServer Guides & Releases forum part of the CO2 Private Server category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Dec 2007
Posts: 1,326
Received Thanks: 539
Lightbulb [Release] Valentine Quest

here is my 3rd release

u can make it only 1 time untill server restart

first search in character.cs for

Code:
public Companion MyCompanion;
move a lil under and add

Code:
   public byte ValentineUsed = 0;
        public byte ValentineGirlUsed = 0;
and here are the NPCs

1st NPC





Code:
                            #region Valentine Man
                            case 100011:
                                {
                                    if (Control == 0)
                                    {
                                        GC.AddSend(Packets.NPCSay(" Happy Valentine. I love my girlfriend very much and i want her to be happy"));
                                        GC.AddSend(Packets.NPCSay(" I only need a RedRose for her to make her happy in the Valentine,so i need to teleport u to a special map to get the rose , can u help me?"));
                                        GC.AddSend(Packets.NPCLink("Yes,Teleport me there", 2));
                                        GC.AddSend(Packets.NPCLink("Not Now", 255));
                                        GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                        GC.AddSend(Packets.NPCFinish());
                                    }
                                    if (Control == 2)
                                    {
                                        if (GC.MyChar.ValentineUsed == 0)
                                        {
                                            GC.MyChar.ValentineUsed++;

                                            GC.MyChar.Teleport(1050, 155, 151);
                                            GC.AddSend(Packets.NPCSay("Here you are."));
                                            GC.AddSend(Packets.NPCLink("Thanks.", 255));
                                            GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                            GC.AddSend(Packets.NPCFinish());
                                        }
                                        else
                                        {
                                            GC.AddSend(Packets.NPCSay("ty for helping me today plz come towmorrow."));
                                            GC.AddSend(Packets.NPCLink("ok.", 255));
                                            GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                            GC.AddSend(Packets.NPCFinish());
                                        }
                                    }
                                }
                                break;
                            #endregion
he will teleport u to a map with no mobs,so u need to add this for the mobs

first open MobInfos.txt and add this
Code:
11170 ValentineDemon 1 254 127 900000 0 0 0 5000 5000 1 85 2 True 2 1 50 1000 12 True
then open MobSpawns.txt and add this

Code:
11170 60 1050 153 149 148 141
and to make the mobs drop the rose open mob.cs and search for


Code:
               else if (MyMath.ChanceSuccess(DropRates.Meteor))
                    {
                        DI2.Info.ID = 1088001;
                        DI2.Info.MaxDur = DI2.Info.DBInfo.Durability;
                        DI2.Info.CurDur = DI2.Info.MaxDur;
                    }

and add this below

Code:
#region Map Drops
                                       if (Name == "ValentineDemon" && MyMath.ChanceSuccess(100))
                    {
                        DI2.Info.ID = 422020;
                        DI2.Info.MaxDur = DI2.Info.DBInfo.Durability;
                        DI2.Info.CurDur = DI2.Info.MaxDur;
                        DI2.Info.Bless = 7;
                        DI2.Info.Plus = 12;
                        DI2.Info.Soc1 = Item.Gem.SuperDragonGem;
                        DI2.Info.Soc2 = Item.Gem.SuperDragonGem;
                        DI2.Info.MaxDur = DI2.Info.DBInfo.Durability;
                    }
                       #endregion
now that should work like this









here is the 2nd NPC







Code:
                             #region Valentine Girl
                            case 1000121:
                                {
                                    if (Control == 0)
                                    {
                                        GC.AddSend(Packets.NPCSay("I miss my boyfriend like crazy"));
                                        GC.AddSend(Packets.NPCLink("He sent u a rose", 1));
                                        GC.AddSend(Packets.NPCLink("i got to go", 255));
                                        GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                        GC.AddSend(Packets.NPCFinish());
                                    }
                                    if (Control == 1)
                                    {
                                        if (GC.MyChar.ValentineGirlUsed == 0)
                                        {
                                            GC.MyChar.ValentineGirlUsed++;

                                            GC.AddSend(Packets.NPCSay("u have helped me todat plz come towmorrow"));
                                            GC.AddSend(Packets.NPCLink("ok", 255));
                                            GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                            GC.AddSend(Packets.NPCFinish());
                                            if (GC.MyChar.InventoryContains(422020, 1))
                                            {
                                                GC.MyChar.RemoveItem(GC.MyChar.NextItem(422020));
                                                GC.MyChar.CPs += 100000;
                                                GC.AddSend(Packets.NPCSay("ty very much i should reward u with 100k CPs."));
                                                GC.AddSend(Packets.NPCLink("Great", 255));
                                                GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                                GC.AddSend(Packets.NPCFinish());
                                            }
                                            else
                                            {
                                                GC.AddSend(Packets.NPCSay("u don't have a rose don't fool me"));
                                                GC.AddSend(Packets.NPCLink("cya", 255));
                                                GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                                GC.AddSend(Packets.NPCFinish());
                                            }

                                        }
                                        else
                                        {
                                            GC.AddSend(Packets.NPCSay("ty for helping me today plz come towmorrow"));
                                            GC.AddSend(Packets.NPCLink("ok bb", 255));
                                            GC.AddSend(Packets.NPCSetFace(N.Avatar));
                                            GC.AddSend(Packets.NPCFinish());
                                        }
                                    }
                                }
                                break;
                            #endregion


and put this in NPCs.txt

Code:
100011 2780 2 32 1002 377 323
1000121 8752 2 0 1002 385 375
Enjoy
[GM] is offline  
Thanks
6 Users
Old 02/21/2010, 14:48   #2
 
elite*gold: 0
Join Date: Jan 2009
Posts: 1,922
Received Thanks: 491
good but short..increase the length... make the person go hunt for the rose from the ValentineDemons...
PeTe Ninja is offline  
Old 02/21/2010, 15:07   #3
 
elite*gold: 0
Join Date: Dec 2007
Posts: 1,326
Received Thanks: 539
Quote:
Originally Posted by PeTe Ninja View Post
good but short..increase the length... make the person go hunt for the rose from the ValentineDemons...
i will try to make it now and i will release it when i finish
[GM] is offline  
Old 02/21/2010, 15:41   #4
 
elite*gold: 0
Join Date: Nov 2009
Posts: 342
Received Thanks: 17
thx
|xabi| is offline  
Old 02/21/2010, 18:00   #5
 
elite*gold: 0
Join Date: Aug 2005
Posts: 96
Received Thanks: 25
thanks for releasing this, but maybe should have done it last week..lol<---not a flame
HardNotTo is offline  
Old 02/21/2010, 19:13   #6
 
elite*gold: 0
Join Date: Dec 2007
Posts: 1,326
Received Thanks: 539
sure i was late for it iam busy studying
#updated first post
[GM] is offline  
Old 02/22/2010, 11:20   #7
 
elite*gold: 0
Join Date: Feb 2010
Posts: 50
Received Thanks: 5
+k
gahanabobo is offline  
Old 02/22/2010, 11:36   #8
 
elite*gold: 0
Join Date: Jan 2009
Posts: 1,922
Received Thanks: 491
hhaha u actually did do valentine demons! good job!
PeTe Ninja is offline  
Thanks
1 User
Old 02/22/2010, 11:44   #9
 
elite*gold: 0
Join Date: Dec 2007
Posts: 1,326
Received Thanks: 539
Quote:
Originally Posted by PeTe Ninja View Post
hhaha u actually did do valentine demons! good job!
ya i hope u like it
[GM] is offline  
Old 02/22/2010, 15:47   #10
 
elite*gold: 0
Join Date: Feb 2010
Posts: 480
Received Thanks: 207
Nice job bro!
Decker_ is offline  
Thanks
1 User
Old 02/22/2010, 23:23   #11
 
elite*gold: 0
Join Date: Dec 2007
Posts: 1,326
Received Thanks: 539
iam taking requests too
[GM] is offline  
Old 04/28/2010, 21:19   #12
 
masternek's Avatar
 
elite*gold: 0
Join Date: Dec 2006
Posts: 94
Received Thanks: 29
o.o xD awesome release
masternek is offline  
Old 04/29/2010, 16:01   #13
 
sawickas's Avatar
 
elite*gold: 0
Join Date: Sep 2008
Posts: 617
Received Thanks: 38
Cool! Thanks man i will take it xD
sawickas is offline  
Reply


Similar Threads Similar Threads
[Release]Upp-Stuff Quest + Neue Bio Quest ->Testlauf
06/08/2010 - Metin2 PServer Guides & Strategies - 13 Replies
Hey und guten Morgen, Ich hatte grade bissl langeweile und hab mir gedacht man könnte doch seine Waffen auch mit 100% Uppchance gg bessere Waffen tauschen oder? Das heißt: Die Quest sieht so aus: Ihr geht zu Baek-Go. Wenn ihr jetzt zum Beispiel einen Krähenstahlbogen+9 und 2x Gegenangriffstrategien habt könnt ihr Ihn gg einen Geisterbogen+0 eintauschen! Die Quest funktioniert wunderbar und wurde auch schon getestet.
Valentine Quest
02/13/2008 - Conquer Online 2 - 2 Replies
was wondering if the same thing cud work with the val quest as when the mystic merchant use to be in market and it didnt recognize that we had used him once cud that make out tht we hadnt done the quest 5 time mayb??
valentine's day quest
02/13/2007 - Conquer Online 2 - 16 Replies
I got it before it started http://www.conqueronline.com/guide/quests/...lent ine2007.htm



All times are GMT +2. The time now is 21:08.


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.