|
You last visited: Today at 17:38
Advertisement
DarkOrbit Talk
Discussion on DarkOrbit Talk within the DarkOrbit forum part of the Browsergames category.
12/15/2012, 16:13
|
#9706
|
elite*gold: 0
Join Date: Nov 2012
Posts: 34
Received Thanks: 7
|
Auf meinem Server wo ich spiele bottet Basic General und Chief Colonel auf der x2^^ die juckt das auch nicht xD
|
|
|
12/15/2012, 16:18
|
#9707
|
elite*gold: 1
Join Date: Jun 2012
Posts: 5,819
Received Thanks: 3,200
|
Will wer seinen de3 acc verkaufen??
Kann nen gloabl 7 mit 28lf4 und 65€ paypal und eg bieten
|
|
|
12/15/2012, 16:48
|
#9708
|
elite*gold: 0
Join Date: Jul 2009
Posts: 5,440
Received Thanks: 1,111
|
wieso kann ich nicht palla auf 5-3 sammeln mit den PBDO bot
roaming palladium area..
|
|
|
12/15/2012, 16:52
|
#9709
|
elite*gold: 0
Join Date: Oct 2012
Posts: 232
Received Thanks: 79
|
brauchst vielleicht den richtigenn Task
|
|
|
12/15/2012, 16:53
|
#9710
|
elite*gold: 0
Join Date: Jul 2009
Posts: 5,440
Received Thanks: 1,111
|
hm zb? würde ich gerne machen doch ka wie so ein palla task aussieht^^
da ich eig nur npc botte...
würde 10 eg geben der ein richtigen machen könnte
|
|
|
12/15/2012, 16:57
|
#9711
|
elite*gold: 0
Join Date: Oct 2012
Posts: 232
Received Thanks: 79
|
Benutz die Sufu es gibt schon gute public PBDO Tasks !
|
|
|
12/15/2012, 16:59
|
#9712
|
elite*gold: 0
Join Date: Jul 2009
Posts: 5,440
Received Thanks: 1,111
|
nö,ich warte auf einen der mir einen machen kann
|
|
|
12/15/2012, 17:13
|
#9713
|
elite*gold: 85
Join Date: Jan 2011
Posts: 1,526
Received Thanks: 1,060
|
Quote:
Originally Posted by TuPac'
nö,ich warte auf einen der mir einen machen kann
|
Wenn man sich die Mühe macht im PBDO Forum mal ein bisschen zu suchen dann findet man auch was man braucht...
Und wenn du selbst zu faul bist dir den Task im Forum zu laden...dann bitte schön...
Code:
using System.Threading;
using System.Collections.Generic;
using PBDOBot.Helper;
using PBDOBot.Api;
using PBDOBot.Api.Task;
/*
Made By ukjet© !
Do not redistribute this !
Download only from (http://pbdo-bot.com/index.php/topic,7872.0.html)
*/
namespace Tasks
{
public class Task : BBaseTask
{
public override void OnReset()
{
Enums.ResourceType[] protectedCollection = new Enums.ResourceType[] {
};
this.ProtectResourcesList.AddRange(protectedCollection);
Dictionary<string, Enums.ResourceType> boostCollection = new Dictionary<string, Enums.ResourceType>();
boostCollection.Add("Speed", Enums.ResourceType.ore_promerium);
boostCollection.Add("Shield", Enums.ResourceType.ore_seprom);
boostCollection.Add("Lasers", Enums.ResourceType.ore_promerium);
boostCollection.Add("Rockets", Enums.ResourceType.ore_seprom);
this.BoostDictionary = boostCollection;
TaskScript = new TaskScript(
delegate()
{
{
if (BMain.Me.SelectedShip.IsNpc && BMain.Me.SelectedShip != null)
{
if (BMain.Me.SelectedShip.Shield > 0) { DroneFormation = Enums.DroneFormation.Crab; } else { DroneFormation = Enums.DroneFormation.Diamond; }
if (BMain.Me.SelectedShip.Shield > 0) { BMain.Me.SetLaserAmmo(Enums.LaserAmmoType.SAB); } else { BMain.Me.SetLaserAmmo(Enums.LaserAmmoType.UCB_100); }
}
else
{
#region RSB Charger PVP
if (BMain.Me.GetAmmoCount(Enums.LaserAmmoType.RSB_75) >= 1000 && BMain.Me.GetAmmoCount(Enums.LaserAmmoType.UCB_100) >= 1000)
{
if (LaserAmmoType != Enums.LaserAmmoType.RSB_75)
{
BMain.WriteLog("Using RSB 75 Ammo");
BMain.Me.SetLaserAmmo(Enums.LaserAmmoType.RSB_75);
return 1000;
}
if (LaserAmmoType != Enums.LaserAmmoType.UCB_100)
{
BMain.WriteLog("Using UCB 100 Ammo");
BMain.Me.SetLaserAmmo(Enums.LaserAmmoType.UCB_100);
return 3000;
}
}
else
{
BMain.WriteLog("Low Ammo !");
}
if (BMain.Actions.CanUseInstaShield && BMain.Me.Hitpoints <= 50000) { BMain.Actions.UseInstaShield(); }
if (BMain.Actions.CanUseEmp && BMain.Me.Hitpoints <= 30000) { BMain.Actions.UseEmp(); }
#endregion // lets fight back
if (BMain.Me.Shield <= BMain.Me.MaxShield * 0.1)
{
if (BMain.Actions.CanUseTech(Enums.TechType.ShieldBackup)) { BMain.Actions.UseTech(Enums.TechType.ShieldBackup); }
}
}
if (BMain.Actions.CanUseTech(Enums.TechType.RocketPrecision) && BMain.Actions.GetTechAmount(Enums.TechType.RocketPrecision) > 30) { BMain.Actions.UseTech(Enums.TechType.RocketPrecision); }
#region Eco/Rocket Changer
int rocketAmmo = BMain.Me.GetAmmoCount(Enums.RocketAmmoType.PLT_2026);
if (rocketAmmo < 10)
{
StandardConfiguration = 1; //Rocket CPU auto-buy PLT_2026
SwitchConfigWhenShieldLow = false; //so it doesn't interfere with purchase of rockets only for 5 seconds, once rocketAmmo != 0, value will be true again.
}
else
{
StandardConfiguration = 2; //Rocket CPU auto-buy ECO rockets
SwitchConfigWhenShieldLow = false;
}
#endregion
#region Aegis Abilltys
if (BMain.Actions.CanUseAbility(Enums.ShipAbility.Aegis_Shield_Repair) == true && BMain.Me.Shield / BMain.Me.MaxShield * 100 <= 70) //Change Values depending on hp and shields
{
BMain.Actions.UseAbility(Enums.ShipAbility.Aegis_Shield_Repair);
BMain.WriteLog("Using Shield Repair");
}
if (BMain.Actions.CanUseAbility(Enums.ShipAbility.Aegis_Health_Repair) == true && BMain.Me.Hitpoints <= 105500) //Change Values depending on hp and shields
{
BMain.Actions.UseAbility(Enums.ShipAbility.Aegis_Health_Repair);
BMain.WriteLog("Using Hp Repair");
}
if (BMain.Actions.CanUseAbility(Enums.ShipAbility.Aegis_Health_Pod) == true && BMain.Me.Hitpoints <= (BMain.Me.MaxHitpoints - 50000)) //Only use Rep Pod
{
BMain.Actions.UseAbility(Enums.ShipAbility.Aegis_Health_Pod);
BMain.WriteLog("Using Repair Pod");
}
#endregion
#region Beta Hangersell
// not added yet will be added after some testing :P
// Fuck off -And- you'r a leach and a thief.
#endregion
}
return -1;
},
delegate()
{
return true;
},
1000); //checked every second
}
public override void ChooseLogic()
{
if (!ActionList.Contains("ukjet's PallaTask"))
{
BMain.WriteLog("palladium 5-3 task");
BMain.WriteLog("Made by ukjet©");
Reset();
// do you want to restock ammo ?
Restock = false;
// Lasser ammo is in the task script at the top
#region Ammo
RocketLauncherAmmoType = Enums.RocketLauncherAmmoType.ECO10;
UseRocketLauncher = true;
RocketAmmoType = Enums.RocketAmmoType.PLT_2026;
#endregion
//Do you want to avoid Annihilator if you can't kill em ?
// AvoidNpcsList.AddRange(new string[] { "-=[ Annihilator ]=-" });
AvoidNpcsRange = 3500;
#region collection
CollectResources = true;
ExtremeBotting = true;
CollectBonusBoxes = false;
CollectCargoBoxes = false;
SwitchConfigWhenShieldLow = true;
#endregion
#region ship basics
AnswerAttacks = true; // fight back
FleeOnEnemyInRadius = false;
TaskMap = "5-3";
if (BMain.MapName !="x-1") {TaskMap = "x-2";} else {TaskMap = "5-3";}
if (BMain.MapName !="x-2") {TaskMap = "5-3";} else {TaskMap = "x-2";}
AttackNpcs = true;
Refine = false;
Sell = true;
SellPalladium = true; // must sell palla
MinPalladiumAmountToSell = 15; // min palla to sell when passing 5-2
DroneFormation = Enums.DroneFormation.Diamond; // defult formation
if (BMain.MapName != "5-3") { UsePet = false; } else { UsePet = true; } // save fuel
if (BMain.MapName != "5-3") { Cloak = true; } else { Cloak = false; } // save uri and cloaks
#endregion
#region PET
PetMode = Enums.PetMode.Auto_Resource_Collector;
PetMinDurability = 1;
RestockPetFuel = true;
PetFuelMinAmount = 2000; // will allways have 2k min fuel incase you run out of uri
RepairPetWhenDead = true; // rep pet if idiots shot it
#endregion
#region Repair
Repair = true;
MinDurability = 40;
MaxDurability = 99;
#endregion
#region cargo
MinFreeSlots = 0;
SellSkylabPromerium = true;
#endregion
ActionList.Add("ukjet's PallaTask");
}
}
}
}
|
|
|
12/15/2012, 17:17
|
#9714
|
elite*gold: 0
Join Date: Jul 2009
Posts: 5,440
Received Thanks: 1,111
|
finde da nichts
also eig habe ich ja einne doch wenn er 1-5 palas sammelt geht er am rand wieso?
|
|
|
12/15/2012, 17:54
|
#9715
|
elite*gold: 85
Join Date: Jan 2011
Posts: 1,526
Received Thanks: 1,060
|
Quote:
Originally Posted by TuPac'
finde da nichts
also eig habe ich ja einne doch wenn er 1-5 palas sammelt geht er am rand wieso?
|
Dazu kann man nur was sagen wenn du hier mal den Task postest.
|
|
|
12/15/2012, 20:05
|
#9716
|
elite*gold: 0
Join Date: Jul 2009
Posts: 5,440
Received Thanks: 1,111
|
von pbdo dtarter tadk also 5-3 palla looter
|
|
|
12/15/2012, 20:39
|
#9717
|
elite*gold: 0
Join Date: Aug 2012
Posts: 640
Received Thanks: 62
|
kann heir jemand nen pixelbot für mich machen?
gebe Css steam
|
|
|
12/15/2012, 20:47
|
#9718
|
elite*gold: 85
Join Date: Jan 2011
Posts: 1,526
Received Thanks: 1,060
|
Quote:
Originally Posted by TuPac'
von pbdo dtarter tadk also 5-3 palla looter
|
Also da muss dir leider jemand anderes helfen denn so ein task befindet sich nicht bei mir im "Starter Tasks" Ordner.
|
|
|
12/15/2012, 20:50
|
#9719
|
elite*gold: 100
Join Date: May 2010
Posts: 5,671
Received Thanks: 1,432
|
Doch der befindet sich im Ordner, falls man sich den Starterpaket auch mitdownloaded.
|
|
|
12/15/2012, 20:52
|
#9720
|
elite*gold: 85
Join Date: Jan 2011
Posts: 1,526
Received Thanks: 1,060
|
Quote:
Originally Posted by Freak~
Doch der befindet sich im Ordner, falls man sich den Starterpaket auch mitdownloaded.
|
Habe mir damals das Starterpacket geladen und hatte diesen Task nicht dabei.
|
|
|
All times are GMT +1. The time now is 17:40.
|
|