agree thank you, but I'm very very no computer, I'll show my task you can tell me the line that I have added to not make a mistake please?
sorry I do not know put spoiler
using System.Threading;
using System.Collections.Generic;
using PBDOBot.Helper;
using PBDOBot.Api;
using PBDOBot.Api.Task;
namespace Tasks
{
public class Task : BBaseTask
{
/*
Created by taskcreator
Copyright (C) 2011-2012 by gähn

*/
public override void OnReset()
{
//boost
//protected
//gg
}
public override void ChooseLogic()
{
Dictionary<TaskLoadDelegate, int> TaskLoadDictionary = new Dictionary<TaskLoadDelegate, int>();
TaskLoadDictionary.Add(
delegate()
{
if (!ActionList.Contains("2-7 9999 Minutes"))
{
BMain.WriteLog("Starting on 2-7 for 9999 minutes");
BMain.WriteLog("http://gahn.bot24.eu");
Reset();
TaskMap = "2-7";
MinDurability = 70;
LaserAmmoType = Enums.LaserAmmoType.LCB_10;
RocketAmmoType = Enums.RocketAmmoType.PLT_2026;
RocketLauncherAmmoType = Enums.RocketLauncherAmmoType.ECO10;
MinFightDistance = 250;
MaxFightDistance = 400;
BoxesPerHour = 500;
StandardConfiguration = 1;
GateToUseExtraEnergyFor = GalaxyGateType.Alpha;
DroneFormation = Enums.DroneFormation.Diamond;
AttackPlayersMinDistanceToGate = 2000;
CloudBoxesCollectRadius = 600;
Restock = true;
SafeBotting = true;
SafeBotting = true;
TimeBetweenBoxes = 10;
FleeOnEnemyInRadius = true;
Repair = true;
CollectBonusBoxes = true;
AttackNpcs = true;
AttackBossNpcs = true;
HuntNpcsList.AddRange(new string[] { "-=[ Kristallin ]=-", "-=[ Kristallon ]=-"});
ActionList.Add("2-7 9999 Minutes");
}
}, 9999);
CycleTaskDictionary = TaskLoadDictionary;
}
}
}