مشاهدة نتائج الإستطلاع: عايز اعرف اعدل ازاي علي الفيزيكال | |||
1 | 0 | 0% | |
2 | 0 | 0% | |
3 | 0 | 0% | |
4 | 0 | 0% | |
5 | 0 | 0% | |
6 | 0 | 0% | |
7 | 0 | 0% | |
إستطلاع متعدد الإختيارات. المصوتون: 0. أنت لم تصوت في هذا الإستطلاع |
|
المشاركات 100 |
+التقييم 0.05 |
تاريخ التسجيل Aug 2019 |
الاقامة |
نظام التشغيل |
رقم العضوية 677 |
private void AutoAttackCallback(GameState client, int time)
{
try
{
if (client == null || !client.Entity.FullyLoaded || client.Entity == null)
return;
if (client.Entity.Alive == false)
{
if (DateTime.Now > client.Entity.GhostStamp)
{
if (client.Entity.Hitpoints == 0 && client.Entity.ContainFlag(Game.MsgServer.MsgUpdate.Flags.Dead) && !client.Entity.ContainFlag(MsgUpdate.Flags.Ghost))
{
client.Entity.AddFlag(Game.MsgServer.MsgUpdate.Flags.Ghost, Role.StatusFlagsBigVector32.PermanentFlag, true);
if (client.Entity.Body % 10 < 3)
client.Entity.TransformationID = 99;
else
client.Entity.TransformationID = 98;
}
}
}
ServerProject.MsgServer.Time32 timer = ServerProject.MsgServer.Time32.Now;
if (client.OnAutoAttack && client.Entity.Alive)
{
if (client.Entity.ContainFlag(Game.MsgServer.MsgUpdate.Flags.Dizzy))
{
client.OnAutoAttack = false;
return;
}
InteractQuery action = new InteractQuery();
action = InteractQuery.ShallowCopy(client.AutoAttack);
client.Entity.RandomSpell = action.SpellID;
MsgAttackPacket.Process(client, action);
//MsgAttackPacket.ProcessAttack.Enqueue(new MsgAttackPacket.AttackObj() { User = client, Attack = action });
}
/* if (client.PrepareAttack != null)//&& client.TryAttacking > 0)
{
// client.TryAttacking--;
InteractQuery action = new InteractQuery();
action = InteractQuery.ShallowCopy(client.PrepareAttack.Attack);
MsgAttackPacket.Process(client, action);
}*/
}
catch (Exception e)
{
Console.WriteLine(e.ToString());
}
}
#region melee
#region ranged
#region fatalspin
case 12110:
الذين يشاهدون محتوى الموضوع الآن : 1 ( الأعضاء 0 والزوار 1) | |
|
الموضوع | كاتب الموضوع | المنتدى | مشاركات | آخر مشاركة |
حل مشكلة ضربة القوس الارشر | ElSaher | تطوير سيرفرات كونكر | 2 | 2020-05-03 01:10 AM |
مشكلة في ضربة الاكونت ف الاتكات | Omar | مشكلات السيرفيرات كونكر الشخصيه | 1 | 2019-12-17 05:12 AM |
مشكلة ضربة الاجلتي بطيئ | ahmedfathy | مشكلات السيرفيرات كونكر الشخصيه | 1 | 2019-12-06 12:59 PM |
مشكلة في سرعة ضربة الاسكلة | youssefabdelmanam | مشكلات السيرفيرات كونكر الشخصيه | 1 | 2019-12-02 10:10 PM |
عندى مشكلة ف ضربة الفيزيكال بتاعت الوريار | nova | مشكلات السيرفيرات كونكر الشخصيه | 7 | 2019-07-14 02:40 AM |