Register for your free account! | Forgot your password?

You last visited: Today at 20:53

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

Advertisement



[Question]5119 Skills

Discussion on [Question]5119 Skills within the CO2 Private Server forum part of the Conquer Online 2 category.

Reply
 
Old   #1
 
.Ryu's Avatar
 
elite*gold: 0
Join Date: Dec 2009
Posts: 583
Received Thanks: 119
[Question]5119 Skills

Soo i been trying to figure out where i code in skills in the 5119 source.. if any one knows can you peoples tell me thanks
.Ryu is offline  
Old 01/19/2010, 22:54   #2

 
Kiyono's Avatar
 
elite*gold: 20
Join Date: Jun 2006
Posts: 3,296
Received Thanks: 924
The 5119 source is pretty much the same as the 5165 one right?
If so check Features\Skills.cs
Kiyono is offline  
Old 01/19/2010, 22:57   #3
 
.Ryu's Avatar
 
elite*gold: 0
Join Date: Dec 2009
Posts: 583
Received Thanks: 119
Quote:
Originally Posted by Kiyono View Post
The 5119 is pretty much the same as the 5165 one right?
If so check Features\Skills.cs
Yeah there the same
.Ryu is offline  
Old 01/21/2010, 06:57   #4
 
Arcо's Avatar
 
elite*gold: 0
Join Date: Oct 2009
Posts: 8,765
Received Thanks: 5,291
Quote:
Originally Posted by .Ryu View Post
Yeah there the same

Then skills.cs should be the place to be right?
Arcо is offline  
Old 01/21/2010, 22:05   #5
 
.Ryu's Avatar
 
elite*gold: 0
Join Date: Dec 2009
Posts: 583
Received Thanks: 119
Quote:
Originally Posted by Hepatitis C View Post

Then skills.cs should be the place to be right?
Im not sure i cant find where the skills need coded ^.^ if anyone could help meh pleas
.Ryu is offline  
Old 01/21/2010, 22:50   #6
 
Zion~'s Avatar
 
elite*gold: 20
Join Date: Aug 2009
Posts: 1,344
Received Thanks: 650
CTRL + F -> Entire Solution => Search a skill ID: E.I- 1004.
Zion~ is offline  
Old 01/21/2010, 23:21   #7
 
.Ryu's Avatar
 
elite*gold: 0
Join Date: Dec 2009
Posts: 583
Received Thanks: 119
Quote:
Originally Posted by Zion~ View Post
CTRL + F -> Entire Solution => Search a skill ID: E.I- 1004.
Ohh wow i never thought of that
Thanks ~Zion
#Edit
It didnt work i tryed searching..
.Ryu is offline  
Old 01/22/2010, 09:49   #8

 
Kiyono's Avatar
 
elite*gold: 20
Join Date: Jun 2006
Posts: 3,296
Received Thanks: 924
Quote:
Originally Posted by .Ryu View Post
Ohh wow i never thought of that
Thanks ~Zion
#Edit
It didnt work i tryed searching..
CTRL+F and use 1045 as keyword.
Kiyono is offline  
Old 01/22/2010, 19:19   #9
 
.Ryu's Avatar
 
elite*gold: 0
Join Date: Dec 2009
Posts: 583
Received Thanks: 119
Quote:
Originally Posted by Kiyono View Post
CTRL+F and use 1045 as keyword.
Hmm ok i will try that i hope it works =P
.Ryu is offline  
Old 01/22/2010, 19:58   #10

 
Kiyono's Avatar
 
elite*gold: 20
Join Date: Jun 2006
Posts: 3,296
Received Thanks: 924
Quote:
Originally Posted by .Ryu View Post
Hmm ok i will try that i hope it works =P
It works for me so it should work for you.
Kiyono is offline  
Old 01/23/2010, 00:43   #11
 
.Ryu's Avatar
 
elite*gold: 0
Join Date: Dec 2009
Posts: 583
Received Thanks: 119
Quote:
Originally Posted by Kiyono View Post
It works for me so it should work for you.
Ok so i searched and got this
Is that where i code the codes?

Code:
public static void Load()
        {            
            if (File.Exists(@"C:\OldCODB\Skills.dat"))
            {
                FileStream FS = new FileStream(@"C:\OldCODB\Skills.dat", FileMode.Open);
                BinaryReader BR = new BinaryReader(FS);
                int SkillCount = BR.ReadInt32();
                for (int i = 0; i < SkillCount; i++)
                {
                    SkillInfo S = new SkillInfo();
                    S.LoadThis(BR);
                    SkillInfos.Add(S.ID + " " + S.Level, S);
                }
                BR.Close();
                FS.Close();
            }
            WepSkillIDs.Add((ushort)480, (ushort)7020);
            WepSkillIDs.Add((ushort)420, (ushort)5030);
            WepSkillIDs.Add((ushort)421, (ushort)5030);
            WepSkillIDs.Add((ushort)510, (ushort)1250);
            WepSkillIDs.Add((ushort)530, (ushort)5050);
            WepSkillIDs.Add((ushort)561, (ushort)5010);
            WepSkillIDs.Add((ushort)560, (ushort)1260);
            WepSkillIDs.Add((ushort)721, (ushort)1290);
            WepSkillIDs.Add((ushort)460, (ushort)5040);
            WepSkillIDs.Add((ushort)540, (ushort)1300);
            WepSkillIDs.Add((ushort)430, (ushort)7000);
            WepSkillIDs.Add((ushort)450, (ushort)7010);
            WepSkillIDs.Add((ushort)481, (ushort)7030);
            WepSkillIDs.Add((ushort)440, (ushort)7040);

            /*if (File.Exists(@"C:\OldCODB\MagicType.txt"))
            {
                string[] Lines = File.ReadAllLines(@"C:\OldCODB\MagicType.txt");

                foreach (string Line in Lines)
                {
                    string[] Info = Line.Split(' ');

                    SkillsClass.SkillInfo S = new SkillInfo();
                    S.ID = ushort.Parse(Info[0]);
                    if (((Extra.SkillIDs)S.ID).ToString() != Info[0])
                    {
                        S.Level = byte.Parse(Info[7]);
                        S.ActivationChance = byte.Parse(Info[11]);
                        S.Damageing = DamageType.Magic;
                        S.Targetting = TargetType.Single;
                        S.ExtraEff = ExtraEffect.None;

                        if (Info[1] == "5")
                        {
                            if (S.ID == 1165 || S.ID == 1125 || S.ID == 5001 || S.ID == 1010 || S.ID == 8030)
                                S.Targetting = TargetType.FromSingle;
                            else
                                S.Targetting = TargetType.Range;
                        }
                        else if (Info[1] == "19")
                            S.ExtraEff = ExtraEffect.Transform;
                        else if (Info[1] == "23")
                            S.ExtraEff = ExtraEffect.Summon;
                        else if (Info[1] == "4" || Info[1] == "14")
                            S.Targetting = TargetType.Sector;
                        else if (Info[1] == "7")
                            S.ExtraEff = ExtraEffect.Revive;
                        else if (Info[1] == "16")
                        {
                            S.Targetting = TargetType.Single;
                            S.Damageing = DamageType.Melee;
                        }
                        ushort dmg = ushort.Parse(Info[33]);
                        if (dmg >= 400 && dmg <= 499)
                            S.Damageing = DamageType.Melee;
                        else if (dmg >= 800 && dmg <= 899)
                            S.Damageing = DamageType.Ranged;
                        else if (dmg >= 900 && dmg <= 999)
                            S.Damageing = DamageType.Magic;
                            
                        if (int.Parse(Info[9]) > 0)
                        {
                            if (int.Parse(Info[9]) >= 30000)
                                S.EffectValue = (float)(int.Parse(Info[9]) - 30000) / 100;
                            else
                            {
                                S.EffectValue = 1;
                                S.Damage = uint.Parse(Info[9]);
                            }
                        }
                        S.ManaCost = ushort.Parse(Info[8]);
                        S.UpgReqExp = uint.Parse(Info[17]);
                        S.UpgReqLvl = byte.Parse(Info[18]);
                        S.MaxDist = byte.Parse(Info[13]);
                        Game.StatusEffectEn Eff = (Game.StatusEffectEn)ulong.Parse(Info[15]);
                        if (Eff == StatusEffectEn.SuperMan)
                            S.ExtraEff = ExtraEffect.Superman;
                        else if (Eff == StatusEffectEn.Cyclone)
                            S.ExtraEff = ExtraEffect.Cyclone;
                        else if (Eff == StatusEffectEn.Invisible)
                            S.ExtraEff = ExtraEffect.Invisibility;
                        else if (Eff == StatusEffectEn.Accuracy)
                            S.ExtraEff = ExtraEffect.Accuracy;
                        else if (Eff == StatusEffectEn.Fly)
                            S.ExtraEff = ExtraEffect.Fly;
                        else if (Eff == StatusEffectEn.Stigma)
                            S.ExtraEff = ExtraEffect.Stigma;
                        else if (Eff == StatusEffectEn.Shield)
                            S.ExtraEff = ExtraEffect.MagicShield;
                        else if (Eff == StatusEffectEn.FatalStrike)
                            S.ExtraEff = ExtraEffect.FatalStrike;
                        else if (Eff == StatusEffectEn.ShurikenVortex)
                            S.ExtraEff = ExtraEffect.ShurikenVortex;
                        S.EffectLasts = ushort.Parse(Info[12]);
                        if (S.ID == 8001)
                            S.SectorSize = (byte)(105 + S.Level * 15);
                        else
                            S.SectorSize = (byte)(90 + S.Level * 5);
                        if (S.ID == 1045 || S.ID == 1046)
                            S.Targetting = TargetType.Linear;
                        S.StaminaCost = byte.Parse(Info[27]);
                        if (!SkillInfos.Contains(S.ID.ToString() + " " + S.Level.ToString()))
                        {
                            if (SkillInfos.Contains(S.ID.ToString() + " " + S.Level.ToString()))
                                SkillInfos.Remove(S.ID.ToString() + " " + S.Level.ToString());
                            SkillInfos.Add(S.ID.ToString() + " " + S.Level.ToString(), S);
                        }
                    }
                }
            }*/
        }
.Ryu is offline  
Old 01/23/2010, 01:40   #12


 
Korvacs's Avatar
 
elite*gold: 20
Join Date: Mar 2006
Posts: 6,125
Received Thanks: 2,518
It will be in skills.cs like was suggested on the first page....
Korvacs is offline  
Old 01/23/2010, 01:46   #13
 
.Ryu's Avatar
 
elite*gold: 0
Join Date: Dec 2009
Posts: 583
Received Thanks: 119
Quote:
Originally Posted by Korvacs View Post
It will be in skills.cs like was suggested on the first page....
Read the post above yours korvacs im trying to figure out if thats where i codem =P
.Ryu is offline  
Old 01/23/2010, 01:59   #14


 
Korvacs's Avatar
 
elite*gold: 20
Join Date: Mar 2006
Posts: 6,125
Received Thanks: 2,518
Quote:
Originally Posted by .Ryu View Post
Read the post above yours korvacs im trying to figure out if thats where i codem =P
I did, and it isnt, its in skills.cs like was mentioned on the first page...and again in my post
Korvacs is offline  
Old 01/23/2010, 02:03   #15
 
.Ryu's Avatar
 
elite*gold: 0
Join Date: Dec 2009
Posts: 583
Received Thanks: 119
Quote:
Originally Posted by Korvacs View Post
I did, and it isnt, its in skills.cs like was mentioned on the first page...and again in my post
Those codes are from Skill.cs look heres a screen shot

Screen:
.Ryu is offline  
Reply


Similar Threads Similar Threads
just a question about skills
02/18/2010 - 12Sky2 - 4 Replies
you know how you do the speed hack and on top you have a lute/marble/scepter skill that increases your speed, and since you can change how much speed it gives you, couldn't you do that for other skills? like HS or HB
[Question]skills
01/25/2010 - CO2 Private Server - 4 Replies
where do u code the skills into i have the skills added into the skilladder but where do u code the effect of the skill like reflect does anyone know the StatusEffectEn for reflect
Question About skills
06/18/2009 - 12Sky2 - 2 Replies
I was wondering if its possible to get lets say katana buff called rigid winds working with double blades. Or dantes fire wall with katana. I dont think the combination would be server sided so id think id be possible to hack it wouldnt it?
[Question] New Skills
04/16/2009 - CO2 Private Server - 2 Replies
Hey guys, How would I create a new skill, what would be involved in doing this? I want to create a Taoist skill called "freeze". I know the Axe skill freezes a person for a short period of time, so maybe one could use this... Any help is appreciated, as always.
Question Regarding Skills
02/12/2006 - Conquer Online 2 - 2 Replies
Ok when CO2 first came in i learned all the 2H skills being a tao so i can have something to do, but they just seem to take up alot of space so is there a way to rearrange them?. so on my top list i can have like my Dances SS and FB up top and on the second colum where you can scroll down all the Useless 2h skill symbols. Sorry for not being able to explain this well. And thank you all for any help in the Subject.



All times are GMT +2. The time now is 20:53.


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.