كود:
#region Auto Cps By ZeZoOo
if (client.Player.Level >= 130)
{
if (!client.Player.Dead)
if (client.Player.MapID == 1002 || client.Player.MapID == 1036 || client.Player.MapID == 8500 || client.Player.MapID == 1930)
if (Time32.Now > client.Player.CpsPointStamp.AddMinutes(3))
{
uint cps = 100;
if (Now64.Hour <= 12) cps += 150000;
client.Player.CpsPointStamp = Time32.Now;
client.Player.ConquerPoints += 150000;
client.Send(new Message("Congratulations! " + client.Player.Name + " You get [150.000] Cps Stay Online in Twin and Get More By BlackBlock-Co.", System.Drawing.Color.Red, Message.Whisper));
}
}
#endregion