Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Conquer Online 2 > CO2 Private Server > CO2 PServer Guides & Releases
You last visited: Today at 01:54

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

Advertisement



[Minor Release] Halloween Quest - LOTF

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

Reply
 
Old   #1
 
~*NewDuuDe*~'s Avatar
 
elite*gold: 111
Join Date: Feb 2008
Posts: 2,161
Received Thanks: 646
[Minor Release] Halloween Quest - LOTF

Edit: If your using this release, click the thanks button :P
Well, as everyone now are getting a bunch of thanks for nothing I'm going to join in.
This uses same variables as the MonsterHunter quest, so if you don't have that you will have to assign the variables and add the SQL line. But as you are running your own private server I expect you to be able to do so.

I never actually bothered to test this, but it should work. (Doing this as zbest asked me to.)

Place one of the first NPC in every city.
Code:
if (CurrentNPC == 999999)
                            {
                                SendPacket(General.MyPackets.NPCSay("Boo! Halloween is here! Join in on the quest and talk to MysticMan in TwinCity!"));
                                SendPacket(General.MyPackets.NPCLink("Great! Could you send me there?", 1));
                                SendPacket(General.MyPackets.NPCLink("Not interested, get out of my way!", 255));
                                SendPacket(General.MyPackets.NPCSetFace(30));
                                SendPacket(General.MyPackets.NPCFinish());
                            }




if (CurrentNPC == 999999)
{
  if(Control == 1)
  {
    MyChar.teleport(1002, 345, 234);
  }
}
This other you will place in Twin City.

Code:
  if (CurrentNPC == 343542)
                            {
                                SendPacket(General.MyPackets.NPCSay("Hello! I am MysticMan. If you are over level fifty, do you mind doing me a favour? You might ve up for a treat in return."));
                                SendPacket(General.MyPackets.NPCLink("Yes, I would love to! What would you have me do?", 1));
                                SendPacket(General.MyPackets.NPCLink("I am finished and wish to claim my reward.", 3));
                                SendPacket(General.MyPackets.NPCLink("No thanks, I would rater just chill.", 255));
                                SendPacket(General.MyPackets.NPCSetFace(30));
                                SendPacket(General.MyPackets.NPCFinish());

                            }


                            if (CurrentNPC == 343542)
                            {
                                if (Control == 1)
                                {
                                    if (MyChar.Level < 50)
                                    {
                                        SendPacket(General.MyPackets.NPCSay("Would you so kindly go and kill 300 Birdmen for me?"));
                                        SendPacket(General.MyPackets.NPCLink("I don't know... Allright, I will do it.", 2));
                                        SendPacket(General.MyPackets.NPCLink("You would have ME do your dirty work?! Shame on you!", 255));
                                        SendPacket(General.MyPackets.NPCSetFace(30));
                                        SendPacket(General.MyPackets.NPCFinish());
                                    }
                                }
                                else
                                {
                                    SendPacket(General.MyPackets.NPCSay("Sorry, you have not reached level 50, please train harder."));
                                    SendPacket(General.MyPackets.NPCLink("Okay, I'll try.", 255));
                                    SendPacket(General.MyPackets.NPCSetFace(30));
                                    SendPacket(General.MyPackets.NPCFinish());
                                }

                                if (Control == 2)
                                    MyChar.QuestMob = "BirdMan";


                                if (Control == 3)
                                {
                                    MyChar.QuestMob = "";
                                    MyChar.QuestKO = 0;
                                    SendPacket(General.MyPackets.SendMsg(MessageId, "SYSTEM", MyChar.Name, "You have finished your quest and you will recieve 100 CPS.", 2005)); //Reward is up to you, just change to an i tem id and so on
                                    MyChar.CPs += 100;
                                    SendPacket(General.MyPackets.Vital(MyChar.UID, 30, MyChar.CPs));
                                }
                            }
                            }
I suggest using the pumpkin NPC UID for this NPC.
Note: Did this in notepad as there is currently no compiler on this computer, might throw some spelling errors.
Also, do not say that it is completely useless, as it would be of no point, as I totally agree. But, as earlier stated, zbest asked me to.
Cheers.
~*NewDuuDe*~ is offline  
Thanks
3 Users
Old 10/19/2009, 10:22   #2
 
elite*gold: 0
Join Date: Aug 2008
Posts: 889
Received Thanks: 199
Nice release Berghuis1
zbest is offline  
Thanks
1 User
Old 10/19/2009, 10:34   #3
 
~*NewDuuDe*~'s Avatar
 
elite*gold: 111
Join Date: Feb 2008
Posts: 2,161
Received Thanks: 646
Thanks button is there for a reason :P
~*NewDuuDe*~ is offline  
Thanks
1 User
Old 10/19/2009, 11:09   #4
 
elite*gold: 0
Join Date: Feb 2006
Posts: 550
Received Thanks: 81
learn to indent & your CPs won't show until you send the packet to update CPs too.
ChingChong23 is offline  
Old 10/19/2009, 11:18   #5
 
~*NewDuuDe*~'s Avatar
 
elite*gold: 111
Join Date: Feb 2008
Posts: 2,161
Received Thanks: 646
Sorry about that, added it.
And as I said, I didnt use a compiler, so didnt get any errors. + did'nt use more then like 3 mins on this, so forgot about the CP packet. =P
~*NewDuuDe*~ is offline  
Old 10/19/2009, 12:29   #6
 
xXxTwiztedKidxXx's Avatar
 
elite*gold: 0
Join Date: Jul 2009
Posts: 178
Received Thanks: 9
Was my idea....to have that created
xXxTwiztedKidxXx is offline  
Old 10/19/2009, 12:31   #7
 
~*NewDuuDe*~'s Avatar
 
elite*gold: 111
Join Date: Feb 2008
Posts: 2,161
Received Thanks: 646
Did I say it was my idea? If so I'm sorry.
Anyways, I'll make a new and better one for our server.
~*NewDuuDe*~ is offline  
Old 10/19/2009, 12:36   #8
 
xXxTwiztedKidxXx's Avatar
 
elite*gold: 0
Join Date: Jul 2009
Posts: 178
Received Thanks: 9
iight i need you on msn asap for a quick code
xXxTwiztedKidxXx is offline  
Old 10/19/2009, 13:02   #9
 
-Shunsui-'s Avatar
 
elite*gold: 0
Join Date: Apr 2008
Posts: 1,152
Received Thanks: 321
nice, looks good :P i made one also.
-Shunsui- is offline  
Old 10/19/2009, 13:22   #10
 
~*NewDuuDe*~'s Avatar
 
elite*gold: 111
Join Date: Feb 2008
Posts: 2,161
Received Thanks: 646
Thanks I suppose, lol.
~*NewDuuDe*~ is offline  
Old 10/19/2009, 13:46   #11
 
elite*gold: 0
Join Date: Sep 2008
Posts: 1,683
Received Thanks: 505
Quote:
Originally Posted by xXxTwiztedKidxXx View Post
Was my idea....to have that created
It was my idea actually.
Basser is offline  
Old 10/19/2009, 14:07   #12
 
~*NewDuuDe*~'s Avatar
 
elite*gold: 111
Join Date: Feb 2008
Posts: 2,161
Received Thanks: 646
Uh? I allready finished the halloween quest when you talked about it.
~*NewDuuDe*~ is offline  
Old 10/19/2009, 15:52   #13
 
elite*gold: 0
Join Date: Sep 2008
Posts: 1,683
Received Thanks: 505
@Berghuis, maybe. But twizted said it was his idea, but I told him to do that when U asked me for an idea. >_>.
Basser is offline  
Old 10/19/2009, 15:55   #14
 
elite*gold: 20
Join Date: Jan 2008
Posts: 2,338
Received Thanks: 490
Bas remove that gay emo from your sig. i hate it ant i hate PeteNinja/F0am/Emtyproject/../..
~Yuki~ is offline  
Old 10/19/2009, 15:56   #15
 
~*NewDuuDe*~'s Avatar
 
elite*gold: 111
Join Date: Feb 2008
Posts: 2,161
Received Thanks: 646
He asked me to do it last friday :P
Just didnt bother to do it till sunday.
~*NewDuuDe*~ is offline  
Reply


Similar Threads Similar Threads
Halloween quest answer to first riddle
10/31/2007 - CO2 Guides & Templates - 12 Replies
Well I don't know if the first question will be the same every time but for me the answer was "blade" The colors for the runes are as follows A = yellow (yellow sunset) B = blue (blue waters) D = purple (Violet) E = red (red fire) L = green (green forest)
halloween/horror beta release
10/28/2007 - CO2 Weapon, Armor, Effects & Interface edits - 7 Replies
http://i228.photobucket.com/albums/ee85/modderpics /wip1_2.jpg Zerowaitingtime Download *Edit by a1blaster File attachment added*
Run SV with halloween quest
10/26/2007 - CO2 Guides & Templates - 4 Replies
1. Update to new patch 2. Change your computers date to lets say sometime in September 3. Move the file "Version" onto your desktop 4. Open the file with notepad and edit the number back 1 patch 5. Save the file back to the CO2 folder 6. Change your computers date back to today This allows you to run SV/CE Now use cotobo to run the client and avoid autopatch. Job done
HALLOWEEN QUEST PROBLEM
10/23/2007 - Conquer Online 2 - 2 Replies
when i put up one of thise coin i can't see it in my inventory and when i try to stock up with arrows it says my bag is full so i was like wtf i look and i don't see nothing in my inventory. is any1 else having the same problem??:confused:
Halloween Quest
10/27/2006 - Conquer Online 2 - 86 Replies
Ok, well halloween quest is coming up and i thought maybe a topic should be made that people can post tips and guides to it on or bugs they find once it starts (24 hours to go)..and if a mod could sticky it during the time its on :rolleyes: ...I'll add some stuff later too.. :D



All times are GMT +2. The time now is 01:54.


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.