كود:
#region VIP 7 And 8 //ByNoUr
if (Player.VIPLevel == 8)
{
Player.ItemHP += 4000;
Player.BaseMaxAttack += 4000;
Player.BaseMinAttack += 4000;
Player.Breaktrough += 500;
Player.Counteraction += 500;
Player.Defence += 3000;
Player.CriticalStrike += 3500;
Player.Immunity += 3500;
Player.AddFlag3((ulong)Update.Flags3.GoldBrickSuper);
}
if (Player.VIPLevel == 7)
{
Player.ItemHP += 4000;
Player.BaseMaxAttack += 4000;
Player.BaseMinAttack += 4000;
Player.Breaktrough += 200;
Player.Counteraction += 200;
Player.Defence += 1500;
Player.CriticalStrike += 2000;
Player.Immunity += 2000;
Player.AddFlag3((ulong)Update.Flags3.GoldBrickSuper);
}
if (Player.VIPLevel <= 6)
{
Player.RemoveFlag3((ulong)Update.Flags3.GoldBrickSuper);
}
if (Player.VIPLevel <= 5)
{
Player.RemoveFlag3((ulong)Update.Flags3.GoldBrickSuper);
}
if (Player.VIPLevel <= 4)
{
Player.RemoveFlag3((ulong)Update.Flags3.GoldBrickSuper);
}
if (Player.VIPLevel <= 3)
{
Player.RemoveFlag3((ulong)Update.Flags3.GoldBrickSuper);
}
if (Player.VIPLevel <= 2)
{
Player.RemoveFlag3((ulong)Update.Flags3.GoldBrickSuper);
}
if (Player.VIPLevel <= 1)
{
Player.RemoveFlag3((ulong)Update.Flags3.GoldBrickSuper);
}
if (Player.VIPLevel <= 0)
{
Player.RemoveFlag3((ulong)Update.Flags3.GoldBrickSuper);
}
#endregion