Register for your free account! | Forgot your password?

You last visited: Today at 02:42

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

Advertisement



[Help]Need Info....

Discussion on [Help]Need Info.... within the CO2 Private Server forum part of the Conquer Online 2 category.

Reply
 
Old   #1
 
$HaDoW's Avatar
 
elite*gold: 0
Join Date: Sep 2007
Posts: 285
Received Thanks: 78
Unhappy [Help]Need Info....

Hey guys !

I posted this because I need some info

The problem is that Archer and others dmg are to high
and I need to normalize it !
Where can I find the corect code that would set the dmg ?
because I'v searched all the Character.cs and found nothing !
I know that Others.cs is only for skills
so I need to know wheere to set the damage...

So Plz Help me
$HaDoW is offline  
Old 01/23/2009, 18:14   #2
 
elite*gold: 0
Join Date: Jan 2009
Posts: 1,922
Received Thanks: 491
somewhere in here you can find it =]

PeTe Ninja is offline  
Old 01/23/2009, 19:37   #3
 
$HaDoW's Avatar
 
elite*gold: 0
Join Date: Sep 2007
Posts: 285
Received Thanks: 78
nop thats not what I'm searching for.....
Didint find anything good
$HaDoW is offline  
Old 01/23/2009, 19:45   #4
 
elite*gold: 0
Join Date: Jan 2009
Posts: 1,922
Received Thanks: 491
its people like you who i hate, you dont even using CONTROL + F to look up something or even take 3 minutes to look for it , here are two links which i found in



-

-

remember to thank me if i helped you, and thank them if they helped you, if you take something from others always thank them =] or give it back if its not something they posted
PeTe Ninja is offline  
Old 01/23/2009, 19:57   #5
 
$HaDoW's Avatar
 
elite*gold: 0
Join Date: Sep 2007
Posts: 285
Received Thanks: 78
yes dude I did it ! I searched for dmg and damage -_-



these 2 only fix skill dmg I already tryed that !
Btw dont forget that I'm here for more then a year mabye 2 :P

I Know that the code is in Character.cs but I cant find it :P
$HaDoW is offline  
Old 01/23/2009, 20:21   #6
 
elite*gold: 0
Join Date: Jan 2009
Posts: 1,922
Received Thanks: 491
what code?
PeTe Ninja is offline  
Old 01/23/2009, 20:22   #7
 
$HaDoW's Avatar
 
elite*gold: 0
Join Date: Sep 2007
Posts: 285
Received Thanks: 78
the dmg code is in Character.cs the one that sets PvP Dmg whne you attack other player !
because now max lvl archer hits 10k to max trojan ! thats **** !!!
$HaDoW is offline  
Old 01/23/2009, 20:24   #8
 
elite*gold: 0
Join Date: Feb 2008
Posts: 1,590
Received Thanks: 154
Learn2math and divide the damage to make it lower?
Not that complex.

If you're looking for the actual location, it's in Character.cs->Attack()
tao4229 is offline  
Old 01/23/2009, 20:35   #9
 
elite*gold: 0
Join Date: Jan 2009
Posts: 1,922
Received Thanks: 491
i think this is what your looking for

Quote:
if (AttackType == 0 || AttackType == 1) // Direct Attack
like i said again LOOK DEEPLY not just a quick look
PeTe Ninja is offline  
Old 01/23/2009, 20:35   #10
 
$HaDoW's Avatar
 
elite*gold: 0
Join Date: Sep 2007
Posts: 285
Received Thanks: 78
did that already tested by removing some lines and otehr shit but still
Heres the code:
Code:
#region attack
        public void Attack()
        {
            LastAttack = DateTime.Now;
            if (!Alive)
            {
                MobTarget = null;
                SkillLoopingTarget = 0;
                TGTarget = null;
                PTarget = null;
                return;
            }
            Ready = false;
            try
            {
                if (AtkType == 25 || AtkType == 2)
                {
                    if (!WeaponSkill())
                    {
                        if (MobTarget != null)
                        {
                            if (MobTarget.Alive)
                                if (MobTarget.Map == LocMap)
                                    if (MyMath.PointDistance(LocX, LocY, MobTarget.PosX, MobTarget.PosY) < 6 || AtkType == 25)
                                    {
                                        if (!SMOn && !AccuracyOn)
                                        {
                                            if (!Other.ChanceSuccess(RealAgi / 2 + Math.Abs((110 - Level) / 2)))
                                            {
                                                MissAttack(MobTarget);
                                                return;
                                            }
                                        }
                                        else if (SMOn)
                                        {
                                            if (!Other.ChanceSuccess(RealAgi + Math.Abs((110 - Level) / 2)))
                                            {
                                                MissAttack(MobTarget);
                                                return;
                                            }
                                        }
                                        else
                                        {
                                            if (!Other.ChanceSuccess(RealAgi * 1.2 + Math.Abs((110 - Level) / 2)))
                                            {
                                                MissAttack(MobTarget);
                                                return;
                                            }
                                        }

                                        double LDF = (Level - MobTarget.Level + 7) / 5;
                                        LDF = Math.Max(LDF, 1);
                                        double eDMG = ((Convert.ToUInt32(LDF) - 1) * .8) + 1;

                                        double AttackDMG = (double)General.Rand.Next((int)MinAtk, (int)MaxAtk) * eDMG;

                                        if (StigBuff)
                                            AttackDMG = (int)(AttackDMG * (double)(1 + ((double)(10 + StigLevel) / 100)));

                                        AttackDMG = ((double)AttackDMG * AddAtkPc);

                                        if (SMOn)
                                            AttackDMG *= 10;

                                        double ProfExpAdd = 0;

                                        double ExpQuality = 0;

                                        if (MobTarget.Level + 4 < Level)
                                            ExpQuality = 0.1;
                                        if (MobTarget.Level + 4 >= Level)
                                            ExpQuality = 1;
                                        if (MobTarget.Level >= Level)
                                            ExpQuality = 1.1;
                                        if (MobTarget.Level - 4 > Level)
                                            ExpQuality = 1.3;

                                        double EAddExp = 0;
                                        ulong UAddExp = 0;
                                        uint MobCurHP = MobTarget.CurHP;

                                        if (MobTarget.MType == 1)
                                            AttackDMG /= 100;

                                        if (MobTarget.MType == 1)
                                        {
                                            BlueName = true;
                                            GotBlueName = DateTime.Now;
                                            MyClient.SendPacket(General.MyPackets.Vital(UID, 26, GetStat()));
                                            World.UpdateSpawn(this);
                                        }
                                        if (!Praying && !CastingPray == true && Other.ChanceSuccess(9.7) && Stamina < 100)
                                        {
                                            Stamina = 100;
                                            MyClient.SendPacket(General.MyPackets.Vital(UID, 9, Stamina));
                                            MyClient.SendPacket(General.MyPackets.SendMsg(MyClient.MessageId, "System", Name, "You got lucky and got your stamina refilled!", 2005));
                                            MyClient.SendPacket(General.MyPackets.String(UID, 10, "LuckyGuy"));
                                        }
                                        if (!Praying && !CastingPray == true && Other.ChanceSuccess(6.7))
                                        {
                                            XpCircle = 100;
                                            XpList = true;
                                            MyClient.SendPacket(General.MyPackets.Vital(UID, 26, GetStat()));
                                            XpCircle = 0;
                                            MyClient.SendPacket(General.MyPackets.SendMsg(MyClient.MessageId, "System", Name, "You got lucky and your XP skill activated!", 2005));
                                            MyClient.SendPacket(General.MyPackets.String(UID, 10, "LuckyGuy"));
                                        }


                                        if (!Praying && !CastingPray == true && Other.ChanceSuccess(6.9))
                                        {
                                            AttackDMG *= 2;
                                            MyClient.SendPacket(General.MyPackets.SendMsg(MyClient.MessageId, "System", Name, "You got lucky and attacked double damage!", 2005));
                                            MyClient.SendPacket(General.MyPackets.String(UID, 10, "LuckyGuy"));
                                        }
                                        if (MobTarget.GetDamage((uint)AttackDMG))
                                        {
                                            if (MobTarget.Name == QuestMob)
                                            {
                                                QuestKO++;
                                                if (QuestKO >= 300)
                                                {
                                                    MyClient.SendPacket(General.MyPackets.SendMsg(MyClient.MessageId, "SYSTEM", Name, "You have killed enough monsters for the quest. Go report to the captain.", 2005));
                                                }
                                            }
                                            Attacking = false;
                                            if (Level >= 70)
                                            {
                                                foreach (Character Member in Team)
                                                {
                                                    if (!Member.Alive)
                                                        continue;
                                                    double PlvlExp = 1;
                                                    if (MobTarget.Level - 20 <= Member.Level)
                                                        PlvlExp = 0.1;
                                                    if (Member != null)
                                                        if (Member.Level + 20 < Level)
                                                            if (Member.LocMap == LocMap)
                                                                if (MyMath.PointDistance(Member.LocX, Member.LocY, LocX, LocY) < 30)
                                                                    if (Member.AddExp((ulong)((double)(52 + (Member.Level * 30)) * PlvlExp), true))
                                                                    {
                                                                        VP += (uint)((Member.Level * 17 / 13 * 12 / 2) + Member.Level * 3);
                                                                        Member.MyTeamLeader.MyClient.SendPacket(General.MyPackets.SendMsg(Member.MyClient.MessageId, "SYSTEM", Member.Name, Name + " has gained " + ((Member.Level * 17 / 13 * 12 / 2) + Member.Level * 3) + " virtue points.", 2003));
                                                                        foreach (Character Member2 in Team)
                                                                        {
                                                                            if (Member2 != null)
                                                                                Member2.MyClient.SendPacket(General.MyPackets.SendMsg(Member2.MyClient.MessageId, "SYSTEM", Member2.Name, Name + " has gained " + ((Member.Level * 17 / 13 * 12 / 2) + Member.Level * 3) + " virtue points.", 2003));
                                                                        }
                                                                    }
                                                }
                                            }
                                            XpCircle++;
                                            if (CycloneOn || SMOn)
                                                ExtraXP += 820;
                                            TargetUID = 0;
                                            EAddExp = MobCurHP * ExpQuality;
                                            UAddExp = Convert.ToUInt64(EAddExp);
                                            AddExp(UAddExp, true);
                                            ProfExpAdd = MobCurHP;
                                            MobTarget.Death = DateTime.Now;

                                            if (Equips[4] != null && Equips[4] != "0")
                                            {
                                                string[] Splitter2 = Equips[4].Split('-');
                                                if (Other.ItemType(uint.Parse(Splitter2[0])) == 4 || Other.ItemType(uint.Parse(Splitter2[0])) == 5)
                                                    AddProfExp((short)Other.WeaponType(uint.Parse(Splitter2[0])), (uint)(ProfExpAdd * AddProfPc));
                                            }
                                            if (Equips[5] != null && Equips[5] != "0")
                                            {
                                                string[] Splitter2 = Equips[5].Split('-');
                                                if (Other.ItemType(uint.Parse(Splitter2[0])) == 4 || Other.ItemType(uint.Parse(Splitter2[0])) == 5)
                                                    AddProfExp((short)Other.WeaponType(uint.Parse(Splitter2[0])), (uint)(ProfExpAdd * AddProfPc));
                                            }

                                            World.AttackMob(this, MobTarget, AtkType, (uint)AttackDMG);
                                            World.AttackMob(this, MobTarget, 14, 0);

                                            World.MobDissappear(MobTarget);
                                            MobTarget.Death = DateTime.Now;

                                            MobTarget = null;
                                        }
                                        else
                                        {
                                            EAddExp = AttackDMG * ExpQuality;
                                            UAddExp = Convert.ToUInt64(EAddExp);
                                            AddExp(UAddExp, true);

                                            ProfExpAdd = AttackDMG;

                                            if (Equips[4] != null && Equips[4] != "0")
                                            {
                                                string[] Splitter2 = Equips[4].Split('-');
                                                if (Other.ItemType(uint.Parse(Splitter2[0])) == 4 || Other.ItemType(uint.Parse(Splitter2[0])) == 5)
                                                    AddProfExp((short)Other.WeaponType(uint.Parse(Splitter2[0])), (uint)(ProfExpAdd * AddProfPc));
                                            }
                                            if (Equips[5] != null && Equips[5] != "0")
                                            {
                                                string[] Splitter2 = Equips[5].Split('-');
                                                if (Other.ItemType(uint.Parse(Splitter2[0])) == 4 || Other.ItemType(uint.Parse(Splitter2[0])) == 5)
                                                    AddProfExp((short)Other.WeaponType(uint.Parse(Splitter2[0])), (uint)(ProfExpAdd * AddProfPc));
                                            }

                                            World.AttackMob(this, MobTarget, AtkType, (uint)AttackDMG);

                                        }
                                    }
                                    else
                                    {
                                        MobTarget = null;
                                    }
                        }
                        else if (PTarget != null && (PKMode == 2 || PKMode == 0) && !Other.NoPK(LocMap) && PTarget.Alive)
                        {
                            if (PTarget.Alive)
                                if (LocMap == PTarget.LocMap)
                                    if (AtkType == 2 && MyMath.PointDistance(LocX, LocY, PTarget.LocX, PTarget.LocY) < 5 || AtkType == 25 && MyMath.PointDistance(LocX, LocY, PTarget.LocX, PTarget.LocY) < 16)
                                    {
                                        int Damage = General.Rand.Next((int)MinAtk, (int)MaxAtk);

                                        if (!SMOn && !AccuracyOn)
                                        {
                                            if (!Other.ChanceSuccess(RealAgi / 1.7 + Math.Abs((110 - Level) / 2)))
                                            {
                                                MissAttack(PTarget);
                                                return;
                                            }
                                        }
                                        else if (SMOn)
                                        {
                                            if (!Other.ChanceSuccess(RealAgi + Math.Abs((110 - Level) / 2)))
                                            {
                                                MissAttack(PTarget);
                                                return;
                                            }
                                        }
                                        else
                                        {
                                            if (!Other.ChanceSuccess(RealAgi * 1.2 + Math.Abs((110 - Level) / 2)))
                                            {
                                                MissAttack(PTarget);
                                                return;
                                            }
                                        }
                                        double reborn = 1;

                                        int Atk = General.Rand.Next((int)MyClient.MyChar.MinAtk, (int)MyClient.MyChar.MaxAtk);

                                        Atk = (int)((double)Atk * MyClient.MyChar.AddAtkPc);

                                        if (SMOn)
                                            Atk *= 2;
                                        if (StigBuff)
                                            Atk = (int)(Atk * (double)(1 + ((double)(10 + MyClient.MyChar.StigLevel) / 100)));

                                        if (PTarget.RBCount == 1)
                                            reborn = 0.7;
                                        else if (PTarget.RBCount == 2)
                                            reborn = 0.4;
                                        double Dodge = (double)(PTarget.Dodge / 100);
                                        if (Dodge == 0)
                                            Dodge = 1;
                                        Damage = (int)(((Atk - PTarget.Defense) * reborn) * Dodge);

                                        if (Damage < 1)
                                            Damage = 1;

                                        if (PTarget.PKPoints < 100)
                                            if (!PTarget.BlueName)
                                                if (!Other.CanPK(LocMap))
                                                    if (LocMap != 1005 && LocMap != 6000 && LocMap != 1038)
                                                    {
                                                        PKPoints += 0;
                                                        GotBlueName = DateTime.Now;
                                                        BlueName = false;
                                                        MyClient.SendPacket(General.MyPackets.Vital(UID, 26, GetStat()));
                                                        World.UpdateSpawn(this);
                                                    }

                                        World.PVP(this, PTarget, AtkType, (uint)Damage);

                                        if (PTarget.GetHitDie((uint)Damage))
                                        {
                                            Attacking = false;
                                            if (!Other.CanPK(LocMap))
                                                if (!PTarget.BlueName)
                                                    if (PTarget.PKPoints < 100)
                                                    {
                                                        GotBlueName = DateTime.Now;
                                                        BlueName = false;
                                                        PKPoints += 0;
                                                        MyClient.SendPacket(General.MyPackets.Vital(UID, 6, PKPoints));
                                                        if ((PKPoints > 29 && PKPoints - 10 < 30) || (PKPoints > 99 && PKPoints - 10 < 100))
                                                        {
                                                            MyClient.SendPacket(General.MyPackets.Vital(UID, 26, GetStat()));
                                                            World.UpdateSpawn(this);
                                                        }
                                                    }
                                            World.PVP(this, PTarget, 14, 0);
                                            PTarget.PTarget = null;
                                            PTarget.MobTarget = null;
                                            PTarget = null;
                                        }
                                    }
                                    else
                                        PTarget = null;
                        }
                        else if (TGTarget != null)
                            if (Level >= TGTarget.Level)
                            {
                                {
                                    if (!SMOn && !AccuracyOn)
                                    {
                                        if (!Other.ChanceSuccess(RealAgi / 1.7 + Math.Abs((110 - Level) / 2)))
                                        {
                                            MissAttack(TGTarget);
                                            return;
                                        }
                                    }
                                    else if (SMOn)
                                    {
                                        if (!Other.ChanceSuccess(RealAgi + Math.Abs((110 - Level) / 2)))
                                        {
                                            MissAttack(TGTarget);
                                            return;
                                        }
                                    }
                                    else
                                    {
                                        if (!Other.ChanceSuccess(RealAgi * 1.2 + Math.Abs((110 - Level) / 2)))
                                        {
                                            MissAttack(TGTarget);
                                            return;
                                        }
                                    }

                                    uint Damage = (uint)General.Rand.Next((int)MinAtk, (int)MaxAtk);
                                    uint THP = TGTarget.CurHP;
                                    Damage = (uint)((double)Damage * AddAtkPc);
                                    if (StigBuff)
                                        Damage = (uint)(Damage * (double)(1 + ((double)(10 + StigLevel) / 100)));

                                    double ExpQuality = 1;

                                    if (TGTarget.Level + 5 < Level)
                                        ExpQuality = 0.1;

                                    if (TGTarget.GetDamageDie((uint)Damage, this))
                                    {
                                        AddExp((ulong)(THP / 10 * ExpQuality), true);
                                        uint ProfExpAdd = THP / 10;
                                        if (Equips[4] != null && Equips[4] != "0")
                                        {
                                            string[] Splitter2 = Equips[4].Split('-');
                                            if (Other.ItemType(uint.Parse(Splitter2[0])) == 4 || Other.ItemType(uint.Parse(Splitter2[0])) == 5)
                                                AddProfExp((short)Other.WeaponType(uint.Parse(Splitter2[0])), (uint)(ProfExpAdd * AddProfPc));
                                        }
                                        if (Equips[5] != null && Equips[5] != "0")
                                        {
                                            string[] Splitter2 = Equips[5].Split('-');
                                            if (Other.ItemType(uint.Parse(Splitter2[0])) == 4 || Other.ItemType(uint.Parse(Splitter2[0])) == 5)
                                                AddProfExp((short)Other.WeaponType(uint.Parse(Splitter2[0])), (uint)(ProfExpAdd * AddProfPc));
                                        };

                                        World.PlAttacksTG(TGTarget, this, (byte)AtkType, (uint)Damage);
                                        World.PlAttacksTG(TGTarget, this, 14, (uint)Damage);

                                    }
                                    else
                                    {
                                        AddExp((ulong)(Damage / 10 * ExpQuality), true);
                                        uint ProfExpAdd = Damage / 10;

                                        if (Equips[4] != null && Equips[4] != "0")
                                        {
                                            string[] Splitter2 = Equips[4].Split('-');
                                            if (Other.ItemType(uint.Parse(Splitter2[0])) == 4 || Other.ItemType(uint.Parse(Splitter2[0])) == 5)
                                                AddProfExp((short)Other.WeaponType(uint.Parse(Splitter2[0])), (uint)(ProfExpAdd * AddProfPc));
                                        }
                                        if (Equips[5] != null && Equips[5] != "0")
                                        {
                                            string[] Splitter2 = Equips[5].Split('-');
                                            if (Other.ItemType(uint.Parse(Splitter2[0])) == 4 || Other.ItemType(uint.Parse(Splitter2[0])) == 5)
                                                AddProfExp((short)Other.WeaponType(uint.Parse(Splitter2[0])), (uint)(ProfExpAdd * AddProfPc));
                                        };

                                        World.PlAttacksTG(TGTarget, this, (byte)AtkType, (uint)Damage);


                                    }
                                }
                            }
                            else
                                MyClient.SendPacket(General.MyPackets.SendMsg(MyClient.MessageId, "SYSTEM", Name, "You can't attack this, you are not high level enough. Find a lower level one.", 2000));

                        Ready = true;
                    }
                }
                else if (AtkType == 21)
                {
                    if (SkillLooping != 0)
                    {
                        if (SkillLoopingTarget != 0)
                        {
                            if (SkillLoopingTarget > 400000 && SkillLoopingTarget < 500000)
                            {
                                SingleMob Targ = (SingleMob)Mobs.AllMobs[SkillLoopingTarget];
                                if (Targ == null || !Targ.Alive)
                                    return;
                                else
                                    UseSkill(SkillLooping, (ushort)Targ.PosX, (ushort)Targ.PosY, SkillLoopingTarget);

                            }
                            else if (SkillLoopingTarget < 7000 && SkillLoopingTarget >= 5000)
                            {
                                SingleNPC Targ = (SingleNPC)NPCs.AllNPCs[SkillLoopingTarget];
                                if (Targ == null)
                                    return;
                                else
                                    UseSkill(SkillLooping, (ushort)Targ.X, (ushort)Targ.Y, SkillLoopingTarget);

                            }
                            else
                            {
                                Character Targ = (Character)World.AllChars[SkillLoopingTarget];
                                if (Targ == null || !Targ.Alive)
                                    return;
                                else
                                    UseSkill(SkillLooping, Targ.LocX, Targ.LocY, SkillLoopingTarget);
                            }
                        }
                        else
                        {
                            UseSkill(SkillLooping, SkillLoopingX, SkillLoopingY, 0);
                        }
                    }
                    else
                    {
                        SkillLooping = 0;
                    }
                }
                Ready = true;

            }
            catch (Exception Exc) { General.WriteLine(Convert.ToString(Exc)); }
        }
        #endregion
$HaDoW is offline  
Old 01/24/2009, 06:20   #11
 
HellCo's Avatar
 
elite*gold: 0
Join Date: Jan 2009
Posts: 212
Received Thanks: 14
Quote:
Originally Posted by PeTe Ninja View Post
somewhere in here you can find it =]

by telling every1 that url, is not gunna solve anything peter.
HellCo is offline  
Old 01/24/2009, 11:37   #12
 
elite*gold: 0
Join Date: Jan 2009
Posts: 1,922
Received Thanks: 491
there is about 10 guides on how to create a server and about 5 source LInks which take to more sources on it. i think it will help if they know how to look, so stop flaming for people who help <<

#request ban for Hell Co ( post counts ? )
PeTe Ninja is offline  
Old 01/24/2009, 22:44   #13
 
$HaDoW's Avatar
 
elite*gold: 0
Join Date: Sep 2007
Posts: 285
Received Thanks: 78
so anyone can help me ?
$HaDoW is offline  
Old 01/24/2009, 23:03   #14
 
elite*gold: 20
Join Date: Apr 2008
Posts: 2,281
Received Thanks: 913
Learn some Math.
kinshi88 is offline  
Old 01/25/2009, 00:43   #15
 
damianpesta's Avatar
 
elite*gold: 0
Join Date: Jan 2007
Posts: 1,034
Received Thanks: 58
else if (PTarget.Dodge >= 1)
{
Random rand = new Random();
uint Atk = (uint)rand.Next((int)MinAtk, (int)MaxAtk);
Damage = (int)(((1 - (PTarget.Dodge / 700)) * Atk) * 0.04);
}

I think that this one is not bad , I wasted 20 mins doing it. Now all you gotta do is Find out where to Copy + paste it.Its Really Close To Qonquer's One.I asked friend To attack hes own warr... So I know how much damage it should do.You can still Make it better...

Credits to Tao .. he posted the calculations somewhere else , I just Got em to work right :P
damianpesta is offline  
Reply


Similar Threads Similar Threads
[INFO] CD Key's [INFO]
04/30/2010 - elite*gold Trading - 3 Replies
Soo, ich mache hier mal ein kleines info, daher ich nun schon 2 mal "abgezogen" wurde, Es gibt "Free CD Key's anbieter" bei denen zu im Suchverlauf, z.B. das spiel Call of Duty 4 angibst und dafür einen CD Key bekommst WICHTIG: man kann mit diesen Key dann nur im SingleModus spielen d.h. du kannst nicht mit diesen Key online spielen (auser auf gecrackten Servern) Mein Tipp dazu: Fragt wirklich nach, ob dies ein originaler Key ist, und lasst euch ggfs. die ersten 2 - 3 absätze von den...
[INFO] Kleine-Update Info
02/06/2010 - WarRock - 4 Replies
Hey Leute, Ich wollte euch nur mal bescheid sagen das heute um 24:00 eine "notfallwartung" statfindet, diese soll siege war usw. updaten :D ausserdem gibt es ein neues Gewinnspiel bei Gamersfirst weiter Infos bekommt ihr hier... hoffe hab euch ein wenig auf dem neusten Stand gebracht ;)
[INFO]I Have GlobalDK hacks [INFO]
09/28/2009 - Dekaron - 3 Replies
Ich habe hacks für global dekaron skill hack , wall hack , alles... wenn ihr es braucht sendet mir eine nachricht. Nicht jeder bekommt die hacks! also beilt euch... P.s sie sollen non public bleiben!
[PorousCO]Source:INFO+ServerSpeed INFO+Questions+More
08/31/2008 - CO2 Private Server - 56 Replies
Hey this is all information you need to know about the new coming private server PorousCO!!! Latest Update(1): Design Of The 130 Armors Are Done! Latest Update(2): We Coded Our Own Client!!! And The Website Is http://Phoenix-conquer.co.cc Source Information: PvP Tournaments! Every Week Other Quest Events! GuildWar Every Saturday At 17:00 Server Time



All times are GMT +1. The time now is 02:43.


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