Register for your free account! | Forgot your password?

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

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

Advertisement



[REQUEST] Super Gems Effect

Discussion on [REQUEST] Super Gems Effect within the CO2 Private Server forum part of the Conquer Online 2 category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Jul 2005
Posts: 157
Received Thanks: 14
[REQUEST] Super Gems Effect

can i request super gem effect script and a guide on it please thanks in advance Own Of DarkAngelzCO
vietkidd510 is offline  
Old 09/21/2008, 10:49   #2
 
_Emme_'s Avatar
 
elite*gold: 1142
Join Date: Aug 2006
Posts: 2,464
Received Thanks: 1,162
I HIGHLY doubt you going to get it.

I see,you have your own privateserver,for what reason? I highly doubt,again,that you dont even know what an array is. So ,take this chance,and STUDY LOTF,instead of running it as a privateserver,then a happy day,you can do your own Supergem effect.
_Emme_ is offline  
Old 09/21/2008, 20:51   #3
 
elite*gold: 0
Join Date: Feb 2008
Posts: 217
Received Thanks: 26
Well, mate. Good luck i hope you figure it out.
demonscim is offline  
Old 09/21/2008, 21:07   #4
 
glupkotrup's Avatar
 
elite*gold: 0
Join Date: May 2007
Posts: 1,195
Received Thanks: 457
I think he won't
glupkotrup is offline  
Old 09/21/2008, 21:25   #5
 
elite*gold: 0
Join Date: Feb 2008
Posts: 1,590
Received Thanks: 154
I think I am going to claw my head off if someone else posts something like this x_x
tao4229 is offline  
Old 09/21/2008, 21:45   #6
 
glupkotrup's Avatar
 
elite*gold: 0
Join Date: May 2007
Posts: 1,195
Received Thanks: 457
Attention: Please someone post something like this

It's raining heads... Alelujha it's raining heads...
glupkotrup is offline  
Old 09/21/2008, 22:14   #7
 
elite*gold: 0
Join Date: Jun 2007
Posts: 323
Received Thanks: 30
Make a checker or something for the super gem and place the thing in the attacking thingy and tada?
Zanzibar is offline  
Old 09/21/2008, 23:35   #8
 
stephanyd's Avatar
 
elite*gold: 0
Join Date: Jun 2007
Posts: 390
Received Thanks: 92
it sould be something like this... but it is incomplete i think
Quote:
public void GemEffect()
{
foreach (DictionaryEntry DE in World.AllChars)
{
Character MyChar = (Character)DE.Value;
{
switch (UID)
{
case 3:
MyClient.SendPacket(General.MyPackets.String(MyCha r.UID, 10, "phoenix"));
break;
case 13:
MyClient.SendPacket(General.MyPackets.String(MyCha r.UID, 10, "goldendragon"));
break;
case 23:
MyClient.SendPacket(General.MyPackets.String(MyCha r.UID, 10, "fastflash"));
break;
case 33:
MyClient.SendPacket(General.MyPackets.String(MyCha r.UID, 10, "rainbow"));
break;
case 43:
MyClient.SendPacket(General.MyPackets.String(MyCha r.UID, 10, "goldenkylin"));
break;
case 53:
MyClient.SendPacket(General.MyPackets.String(MyCha r.UID, 10, "purpleray"));
break;
case 63:
MyClient.SendPacket(General.MyPackets.String(MyCha r.UID, 10, "moon"));
break;
case 73:
MyClient.SendPacket(General.MyPackets.String(MyCha r.UID, 10, "recovery"));
break;
}
}
}
}
if someone can complete it .. would be great.... i know in KylinCo source supergem effects are working.. but i'm trying to make it work too.
stephanyd is offline  
Old 09/21/2008, 23:40   #9
 
elite*gold: 0
Join Date: Aug 2006
Posts: 227
Received Thanks: 57
hmm maybe try mine
Code:
        public void GemEffect()
        {
            int into = 0;
            if (Equips[1] != null && Equips[1] != "0")
                into = 1;
            else if (Equips[2] != null && Equips[2] != "0")
                into = 2;
            else if (Equips[3] != null && Equips[3] != "0")
                into = 3;
            else if (Equips[6] != null && Equips[6] != "0")
                into = 6;
            else if (Equips[8] != null && Equips[8] != "0")
                into = 8;
            else
                return;
            string[] item = Equips[into].Split('-');

            if (item[4] == "13")
            {
                if (Other.ChanceSuccess(10))
                {
                    foreach (DictionaryEntry DE in World.AllChars)
                    {
                        Character Chaar = (Character)DE.Value;
                        if (Chaar.Name != Name)
                        {
                            Chaar.MyClient.SendPacket(General.MyPackets.String(UID, 10, "goldendragon"));
                        }
                    }
                    MyClient.SendPacket(General.MyPackets.String(UID, 10, "goldendragon"));
                }
            }
            if (item[5] == "13")
            {
                if (Other.ChanceSuccess(10))
                {
                    foreach (DictionaryEntry DE in World.AllChars)
                    {
                        Character Chaar = (Character)DE.Value;
                        if (Chaar.Name != Name)
                        {
                            Chaar.MyClient.SendPacket(General.MyPackets.String(UID, 10, "goldendragon"));
                        }
                    }
                    MyClient.SendPacket(General.MyPackets.String(UID, 10, "phoegoldendragonnix"));
                }
            }
            if (item[4] == "3")
            {
                if (Other.ChanceSuccess(10))
                {
                    foreach (DictionaryEntry DE in World.AllChars)
                    {
                        Character Chaar = (Character)DE.Value;
                        if (Chaar.Name != Name)
                        {
                            Chaar.MyClient.SendPacket(General.MyPackets.String(UID, 10, "phoenix"));
                        }
                    }
                    MyClient.SendPacket(General.MyPackets.String(UID, 10, "phoenix"));
                }
            }
            if (item[5] == "3")
            {
                if (Other.ChanceSuccess(10))
                {
                    foreach (DictionaryEntry DE in World.AllChars)
                    {
                        Character Chaar = (Character)DE.Value;
                        if (Chaar.Name != Name)
                        {
                            Chaar.MyClient.SendPacket(General.MyPackets.String(UID, 10, "phoenix"));
                        }
                    }
                    MyClient.SendPacket(General.MyPackets.String(UID, 10, "phoenix"));
                }
            }
            if (item[4] == "33")
            {
                if (Other.ChanceSuccess(10))
                {
                    foreach (DictionaryEntry DE in World.AllChars)
                    {
                        Character Chaar = (Character)DE.Value;
                        if (Chaar.Name != Name)
                        {
                            Chaar.MyClient.SendPacket(General.MyPackets.String(UID, 10, "rainbow"));
                        }
                    }
                    MyClient.SendPacket(General.MyPackets.String(UID, 10, "rainbow"));
                }
            }
            if (item[5] == "33")
            {
                if (Other.ChanceSuccess(10))
                {
                    foreach (DictionaryEntry DE in World.AllChars)
                    {
                        Character Chaar = (Character)DE.Value;
                        if (Chaar.Name != Name)
                        {
                            Chaar.MyClient.SendPacket(General.MyPackets.String(UID, 10, "rainbow"));

                        }
                    }
                    MyClient.SendPacket(General.MyPackets.String(UID, 10, "rainbow"));
                }
            }
            if (item[4] == "53")
            {
                if (Other.ChanceSuccess(10))
                {
                    foreach (DictionaryEntry DE in World.AllChars)
                    {
                        Character Chaar = (Character)DE.Value;
                        if (Chaar.Name != Name)
                        {
                            Chaar.MyClient.SendPacket(General.MyPackets.String(UID, 10, "fastflash"));
                        }
                    }
                    MyClient.SendPacket(General.MyPackets.String(UID, 10, "fastflash"));
                }
            }
            if (item[5] == "53")
            {
                if (Other.ChanceSuccess(10))
                {
                    foreach (DictionaryEntry DE in World.AllChars)
                    {
                        Character Chaar = (Character)DE.Value;
                        if (Chaar.Name != Name)
                        {
                            Chaar.MyClient.SendPacket(General.MyPackets.String(UID, 10, "fastflash"));
                        }
                    }
                    MyClient.SendPacket(General.MyPackets.String(UID, 10, "fastflash"));
                }
            }
            if (item[4] == "63")
            {
                if (Other.ChanceSuccess(10))
                {
                    foreach (DictionaryEntry DE in World.AllChars)
                    {
                        Character Chaar = (Character)DE.Value;
                        if (Chaar.Name != Name)
                        {
                            Chaar.MyClient.SendPacket(General.MyPackets.String(UID, 10, "moon"));
                        }
                    }
                    MyClient.SendPacket(General.MyPackets.String(UID, 10, "moon"));
                }
            }
            if (item[5] == "63")
            {
                if (Other.ChanceSuccess(10))
                {
                    foreach (DictionaryEntry DE in World.AllChars)
                    {
                        Character Chaar = (Character)DE.Value;
                        if (Chaar.Name != Name)
                        {
                            Chaar.MyClient.SendPacket(General.MyPackets.String(UID, 10, "moon"));
                        }
                    }
                    MyClient.SendPacket(General.MyPackets.String(UID, 10, "moon"));
                }
            }
            if (item[4] == "43")
            {
                if (Other.ChanceSuccess(10))
                {
                    foreach (DictionaryEntry DE in World.AllChars)
                    {
                        Character Chaar = (Character)DE.Value;
                        if (Chaar.Name != Name)
                        {
                            Chaar.MyClient.SendPacket(General.MyPackets.String(UID, 10, "goldenkylin"));
                        }
                    }
                    MyClient.SendPacket(General.MyPackets.String(UID, 10, "goldenkylin"));
                }
            }
            if (item[5] == "43")
            {
                if (Other.ChanceSuccess(10))
                {
                    foreach (DictionaryEntry DE in World.AllChars)
                    {
                        Character Chaar = (Character)DE.Value;
                        if (Chaar.Name != Name)
                        {
                            Chaar.MyClient.SendPacket(General.MyPackets.String(UID, 10, "goldenkylin"));
                        }
                    }
                    MyClient.SendPacket(General.MyPackets.String(UID, 10, "goldenkylin"));
                }
            }
            if (item[5] == "53")
            {
                if (Other.ChanceSuccess(10))
                {
                    foreach (DictionaryEntry DE in World.AllChars)
                    {
                        Character Chaar = (Character)DE.Value;
                        if (Chaar.Name != Name)
                        {
                            Chaar.MyClient.SendPacket(General.MyPackets.String(UID, 10, "purpleray"));
                        }
                    }
                    MyClient.SendPacket(General.MyPackets.String(UID, 10, "purpleray"));
                }
            }

            if (item[4] == "53")
            {
                if (Other.ChanceSuccess(10))
                {
                    foreach (DictionaryEntry DE in World.AllChars)
                    {
                        Character Chaar = (Character)DE.Value;
                        if (Chaar.Name != Name)
                        {
                            Chaar.MyClient.SendPacket(General.MyPackets.String(UID, 10, "purpleray"));
                        }
                    }
                    MyClient.SendPacket(General.MyPackets.String(UID, 10, "purpleray"));
                }
            }
              if (item[4] == "73")
            {
                if (Other.ChanceSuccess(10))
                {
                    foreach (DictionaryEntry DE in World.AllChars)
                    {
                        Character Chaar = (Character)DE.Value;
                        if (Chaar.Name != Name)
                        {
                            Chaar.MyClient.SendPacket(General.MyPackets.String(UID, 10, "recovery"));
                        }
                    }
                    MyClient.SendPacket(General.MyPackets.String(UID, 10, "recovery"));
                }
            }
               if (item[4] == "73")
            {
                if (Other.ChanceSuccess(10))
                {
                    foreach (DictionaryEntry DE in World.AllChars)
                    {
                        Character Chaar = (Character)DE.Value;
                        if (Chaar.Name != Name)
                        {
                            Chaar.MyClient.SendPacket(General.MyPackets.String(UID, 10, "recovery"));
                        }
                    }
                    MyClient.SendPacket(General.MyPackets.String(UID, 10, "recovery"));
                }
            }
        }
keving is offline  
Thanks
9 Users
Old 09/21/2008, 23:56   #10
 
glupkotrup's Avatar
 
elite*gold: 0
Join Date: May 2007
Posts: 1,195
Received Thanks: 457
The one from keving is working and the one from stephany could work with some editing...
glupkotrup is offline  
Old 09/22/2008, 00:05   #11
 
elite*gold: 0
Join Date: Jun 2007
Posts: 323
Received Thanks: 30
keving is the sexiest german? ***** i ever luved lol
Zanzibar is offline  
Old 09/22/2008, 00:10   #12
 
glupkotrup's Avatar
 
elite*gold: 0
Join Date: May 2007
Posts: 1,195
Received Thanks: 457
O.o You've seen him in real life?
glupkotrup is offline  
Old 09/22/2008, 00:13   #13
 
elite*gold: 0
Join Date: Jun 2007
Posts: 323
Received Thanks: 30
I wish i did <3 Lawl
Zanzibar is offline  
Old 09/22/2008, 00:24   #14
 
glupkotrup's Avatar
 
elite*gold: 0
Join Date: May 2007
Posts: 1,195
Received Thanks: 457
You = Male? Keving = Male? You = GAY?!?!
glupkotrup is offline  
Old 09/22/2008, 00:25   #15
 
elite*gold: 0
Join Date: Jun 2007
Posts: 323
Received Thanks: 30
I r *******
Zanzibar is offline  
Reply


Similar Threads Similar Threads
How to remove Gems Super Effect?
03/09/2010 - CO2 Private Server - 4 Replies
Im using BotterCo to lvling my ninja.But he have a RainbowGem Super it lag alot = / How I can remove these effects ?
Super Gems Effect
02/24/2010 - CO2 Private Server - 3 Replies
Hello. Is there any other code for Super Gem Effect besides the one that QuickCo released?
[request] Super Gens effect
02/22/2009 - CO2 Private Server - 4 Replies
how to put the effect of super dragon, phoenix and other learning
request Super Dragon Gem Effect
11/18/2008 - CO2 Weapon, Armor, Effects & Interface edits - 3 Replies
plz to member I need Super Dragon Gem Effect ( RED Dragon Effect)
super nix gems
09/28/2006 - Conquer Online 2 - 5 Replies
ok i was



All times are GMT +1. The time now is 06:42.


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.