Register for your free account! | Forgot your password?

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

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

Advertisement



Hell Bosses timing problem !!!need some help

Discussion on Hell Bosses timing problem !!!need some help within the CO2 Private Server forum part of the Conquer Online 2 category.

Reply
 
Old 09/02/2010, 09:01   #16
 
elite*gold: 0
Join Date: Aug 2010
Posts: 452
Received Thanks: 75
You said this:
Code:
{
if Name == "Satan"
}
never works
dosnt work.
I wonder why? (""brackets"")
should have been
Code:
if Name == "Satan"
{
//methode here
}
never works
and why you keep use Name.Contains?

use the one i posted.
Here is it:
Code:
                if (Name == "Satan")
                {
                    Char.CPs += 250;
                    Game.World.SendMsgToAll("Server", " Satan is Dead " + Char.Name + "'s Got 250 CPs For Killing Satan " + Char.Name + " is the hero of exampleCO ", 2011, 0);
                    Loc = StartLoc;
                    World.Action(this, Packets.GeneralData(EntityID, 0, 0, 0, 135).Get);
                    Dissappeared = true;
                    RandomTime = (uint)(Rnd.Next(12000, 14400));
                }
                    if (Name == "BeastSatan")
                {
                    Char.CPs += 250;
                    Game.World.SendMsgToAll("Server", " Satan is Dead " + Char.Name + "'s Got 250 CPs For Killing the Divel and Being A Hero", 2011, 0);
                    Loc = StartLoc;
                    World.Action(this, Packets.GeneralData(EntityID, 0, 0, 0, 135).Get);
                    Dissappeared = true;
                    RandomTime = (uint)(Rnd.Next(12000, 14400));
                }
                if (Name == "FurySatan")
                {
                    Char.CPs += 250;
                    Game.World.SendMsgToAll("Server", " Satan is Dead " + Char.Name + "'s Got 250 CPs For Killing the Divel and Being A Hero", 2011, 0);
                    Loc = StartLoc;
                    World.Action(this, Packets.GeneralData(EntityID, 0, 0, 0, 135).Get);
                    Dissappeared = true;
                    RandomTime = (uint)(Rnd.Next(12000, 14400));
                }
                if (Name == "Andrew")
                {
                    Char.CPs += 150;
                    Game.World.SendMsgToAll("Server", "" + Char.Name + "  Just Killd Boss Andrew   ", 2011, 0);
                    Loc = StartLoc;
                    World.Action(this, Packets.GeneralData(EntityID, 0, 0, 0, 135).Get);
                    Dissappeared = true;
                    RandomTime = (uint)(Rnd.Next(4000, 5400));
                }
                if (Name == "Peter")
                {
                    Char.CPs += 150;
                    Game.World.SendMsgToAll("Server", "" + Char.Name + "  Just Killd Boss Peter", 2011, 0);
                    Loc = StartLoc;
                    World.Action(this, Packets.GeneralData(EntityID, 0, 0, 0, 135).Get);
                    Dissappeared = true;
                    RandomTime = (uint)(Rnd.Next(4000, 5400));
                }
                if (Name == "Philip")
                {
                    Char.CPs += 150;
                    Game.World.SendMsgToAll("Server", "" + Char.Name + "  Just Killd Boss Philip", 2011, 0);
                    Loc = StartLoc;
                    World.Action(this, Packets.GeneralData(EntityID, 0, 0, 0, 135).Get);
                    Dissappeared = true;
                    RandomTime = (uint)(Rnd.Next(4000, 5400));
                }
                if (Name == "Timothy")
                {
                    Char.CPs += 150;
                    Game.World.SendMsgToAll("Server", "" + Char.Name + "  Just Killd Boss Timothy", 2011, 0);
                    Loc = StartLoc;
                    World.Action(this, Packets.GeneralData(EntityID, 0, 0, 0, 135).Get);
                    Dissappeared = true;
                    RandomTime = (uint)(Rnd.Next(4000, 5400));
                }
                if (Name == "Victoria")
                {
                    Char.CPs += 150;
                    Game.World.SendMsgToAll("Server", "" + Char.Name + "  Just Killd Boss Victoria", 2011, 0);
                    Loc = StartLoc;
                    World.Action(this, Packets.GeneralData(EntityID, 0, 0, 0, 135).Get);
                    Dissappeared = true;
                    RandomTime = (uint)(Rnd.Next(4000, 5400));
                }
                else if (Name == "Victoria")
                {
                    
                    Loc = StartLoc;
                    World.Action(this, Packets.GeneralData(EntityID, 0, 0, 0, 135).Get);
                    Dissappeared = true;
                    RandomTime = (uint)(Rnd.Next(4000, 5400));
                }
                if (Name == "Theodore")
                {
                    Char.CPs += 150;
                    Game.World.SendMsgToAll("Server", "" + Char.Name + "  Just Killd Boss Theodore", 2011, 0);
                    Loc = StartLoc;
                    World.Action(this, Packets.GeneralData(EntityID, 0, 0, 0, 135).Get);
                    Dissappeared = true;
                    RandomTime = (uint)(Rnd.Next(4000, 5400));
                    
                }
                if (Name == "Daphne")
                {
                    Char.CPs += 150;
                    Game.World.SendMsgToAll("Server", "" + Char.Name + "  Just Killd Boss Daphne", 2011, 0);
                    Loc = StartLoc;
                    World.Action(this, Packets.GeneralData(EntityID, 0, 0, 0, 135).Get);
                    Dissappeared = true;
                    RandomTime = (uint)(Rnd.Next(4000, 5400));
                }
                if (Name == "Wayne")
                {
                    Char.CPs += 150;
                    Game.World.SendMsgToAll("Server", "" + Char.Name + "  Just Killd Boss Wayne", 2011, 0);
                    Loc = StartLoc;
                    World.Action(this, Packets.GeneralData(EntityID, 0, 0, 0, 135).Get);
                    Dissappeared = true;
                    RandomTime = (uint)(Rnd.Next(4000, 5400));
                }
                if (Name == "Banshee")
                {
                    Char.CPs += 100;
                    Game.World.SendMsgToAll("Server", "" + Char.Name + " Got the reward is For Killing the Beast", 2011, 0);
                    Loc = StartLoc;
                    World.Action(this, Packets.GeneralData(EntityID, 0, 0, 0, 135).Get);
                    Dissappeared = true;
                    RandomTime = (uint)(Rnd.Next(3000, 5400));
                }
                if (Name == "FearlessBeast")
                {
                    Char.CPs += 100;
                    Game.World.SendMsgToAll("Server", " " + Char.Name + " Got the reward is For Killing the Beast", 2011, 0);
                    Loc = StartLoc;
                    World.Action(this, Packets.GeneralData(EntityID, 0, 0, 0, 135).Get);
                    Dissappeared = true;
                    RandomTime = (uint)(Rnd.Next(3000, 5400));
                }
                if (Name == "PurpleDevil")
                {
                    Char.CPs += 500;
                    Game.World.SendMsgToAll("Server", " PurpleDevil Is Dead " + Char.Name + "  is the hero of exampleCO " + Char.Name + " GOT THE 500 CPs For Killing The Beast", 2011, 0);
                    Loc = StartLoc;
                    World.Action(this, Packets.GeneralData(EntityID, 0, 0, 0, 135).Get);
                    Dissappeared = true;
                    RandomTime = (uint)(Rnd.Next(25000, 35000));
                    DI2.Info.ID = 1088000;
                    DI2.Info.MaxDur = DI2.Info.DBInfo.Durability;
                    DI2.Info.CurDur = DI2.Info.MaxDur;
                }
dowhatuwant is offline  
Reply


Similar Threads Similar Threads
Fishing timing
02/06/2010 - Metin2 - 1 Replies
I have banjo1's fishing bot(angelbot),but i don't really catch many fish...i set the time like this: 1000ms=1s 2000ms-2400ms.Is it good?I don't cath many fish...i want to catch more zander fish(for clams). http://img706.imageshack.us/img706/1089/fishbot.j pg http://img34.imageshack.us/img34/9100/scoica.jpg http://img96.imageshack.us/img96/6677/pesteg.jpg
Rift Timing help needed
07/03/2009 - Aion - 1 Replies
Anyone knows the rift timings GMT +0 for Asmodian Beluslan map? Cheer and thanks in advance
Zusammenhang Timing & z.B. Schmied
03/29/2009 - Metin2 - 4 Replies
hallo zusammen.... dies ist mein erster Beitrag und vermutlich auch einer der beschissensten^^ vorab: ich hatte hier 2 Threads durchgestöbert wo es 1. um das Pimpen von Gegenständen im Zusammenhang mit dem "Wächter des Dorfplatzes" ging (also die Sätze die der Wächter quasselt). 2. hatte ich hier ein Thread gelesen wo behauptet wird das es bei einem computergesteuertes Proggi keine Zufälle gibt sondern alles von Timing abhängig ist ( FB´s alle 3 sek. lesen (so in etwa stands im Tread) ) ...
Gems Assigned by Timing?
04/27/2006 - Conquer Online 2 - 12 Replies
Ok, heres food for thought. "Gems are determined by time of day" I present this idea based on the fact that i had 2 chars in independent mines mining and both got a gem at the exact same time (to the minute anyway) My flatmate also was mining in another mine and said he got one too when i whispered him minutes later. The Gems where all normal and for 3 players all to get gems at the same time i feel is a bit co-incidental. This idea could be plausable as say at 45min past the hour a...



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


Powered by vBulletin®
Copyright ©2000 - 2025, 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 ©2025 elitepvpers All Rights Reserved.