You last visited: Today at 10:28
Advertisement
DarkOrbit Talk
Discussion on DarkOrbit Talk within the DarkOrbit forum part of the Browsergames category.
01/12/2013, 16:00
#11491
elite*gold: LOCKED
Join Date: Mar 2011
Posts: 333
Received Thanks: 63
Quote:
Originally Posted by
Freak~
Dann poste es doch .. am besten aber im PBDO-Bot-Forum.
Blöd nur, wenn dort niemand antwortet :-D
01/12/2013, 16:04
#11492
elite*gold: 100
Join Date: May 2010
Posts: 5,671
Received Thanks: 1,432
Dann poste es mal hier.
01/12/2013, 16:23
#11493
elite*gold: LOCKED
Join Date: Mar 2011
Posts: 333
Received Thanks: 63
Also, ich habe im Forum diese Task gefunden, die mir sehr gefällt, aber leide rnicht ganz funktioniert. Ich habe auch nur kleinigkeiten wie Munition dran geändert.
So, I found a nice Task on the forum, change some little things (like ammo), but it is not doing, what it should do
Task:
Code:
using System.Threading;
using System.Collections.Generic;
using PBDOBot.Helper;
using PBDOBot.Api;
using PBDOBot.Api.Task;
using System;
/*
Made By ukjet© !
Do not redistribute this !
If any threads posted on this not made by ukjet will be reported and closed
Download only from (http://pbdo-bot.com/index.php/topic,8630.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()
{
{
{
{
#region NpcRadius
if (BMain.Me.SelectedShip != null && BMain.Me.SelectedShip.Name == BMain.Npc.Streuner && BMain.Me.SelectedShip.Name == BMain.Npc.Lordakia && BMain.Me.SelectedShip.Name == BMain.Npc.Mordon && BMain.Me.SelectedShip.Name == BMain.Npc.Saimon && BMain.Me.SelectedShip.Name == BMain.Npc.StreuneR)
{
StandardConfiguration = 1;
MinFightDistance = 350;
MaxFightDistance = 400;
}
if (BMain.Me.SelectedShip != null && BMain.Me.SelectedShip.Name == BMain.Npc.Lordakium && BMain.Me.SelectedShip.Name == BMain.Npc.Sibelon)
{
StandardConfiguration = 1;
MinFightDistance = 450;
MaxFightDistance = 550;
}
if (BMain.Me.SelectedShip != null && BMain.Me.SelectedShip.Name == BMain.Npc.Sibelonit && BMain.Me.SelectedShip.Name == BMain.Npc.Kristallin)
{
StandardConfiguration = 1;
MinFightDistance = 400;
MaxFightDistance = 450;
}
if (BMain.Me.SelectedShip != null && BMain.Me.SelectedShip.Name == BMain.Npc.Kristallon)
{
StandardConfiguration = 1;
MinFightDistance = 680;
MaxFightDistance = 740;
}
#endregion
#region AutoEcoBuy
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 = true;
}
#endregion
// Auto Eco Buy Make sure hellstorm chip on no.2 config and normal 2026's are on 1st config
}
}
}
return -1;
},
delegate()
{
return true;
},
1000);
TaskScript = new TaskScript(
delegate()
{
{
{
{
#region Box Or Npc
int BoxOrNpc = BHelper.RandomNumber(1, 2);
if (BoxOrNpc > 1)
{
AttackNpcs = true;
AttackBossNpcs = true;
}
else
{
Cloak = true;
AttackNpcs = false;
CollectBonusBoxes = true;
CollectSpecialBoxes = true;
PetMinDurability = 1;
RestockPetFuel = false;
//PetFuelMinAmount = 2000; // will allways have 2k min fuel incase you run out of uri
RepairPetWhenDead = false; // rep pet if idiots shot it
// Will use pet if boxing
}
#endregion
}
}
}
return -1;
},
delegate()
{
return true;
},
3600000);
TaskScript = new TaskScript(
delegate()
#region MapSelector
{
{
{
{
int MapY = BHelper.RandomNumber(2, 8);
TaskMap = "X-MapY";
}
}
}
#endregion
return -1;
},
delegate()
{
return true;
},
600000);
}
public override void ChooseLogic()
{
{
if (!ActionList.Contains("Ukjet's Task"))
{
BMain.WriteLog("MadeByUkjet©");
Reset();
#region ShipBasics
FleeOnEnemyInRadius = true;
FleeRadius = 10000;
SwitchConfigWhenShieldLow = true;
StandardConfiguration = 1;
MinDurability = 50;
Repair = true;
Sell = true;
SellSkylabPromerium = true;
Refine = true;
SafeBotting = true;
TimeBetweenBoxes = 1;
#endregion
#region Ammo
LaserAmmoType = Enums.LaserAmmoType.LCB_10;
RocketAmmoType = Enums.RocketAmmoType.PLT_2026;
UseRocketLauncher = true;
Restock = true; // Make sure never run outa ammo
#endregion
#region DroneFormation
DroneFormation = Enums.DroneFormation.Arrow; ;
#endregion
#region Important
#region X-2 Flee
if (BMain.MapName != "X-2")
{
if (BMain.WarningLevel >= 1)
{
BMain.WriteLog("Warning level too high -> Fleeing");
IdleInSafety = true;
}
}
if (BMain.MapName != "X-2")
{
BMain.Me.SetRocketAmmo(Enums.RocketAmmoType.PLT_2026);
UseRocketLauncher = true;
}
else
{
UseRocketLauncher = true;
BMain.Me.SetRocketAmmo(Enums.RocketAmmoType.PLT_2026);
}
if (BMain.WarningLevel > 1)
{ BMain.Actions.FleeToSafety(1); }
#endregion
#region NpcHuntList
// HuntNpcsList.AddRange(new string[] { "-=[ Streuner ]=-", "-=[ Lordakia ]=-",
// "-=[ Saimon ]=-", "-=[ Mordon ]=-",
// "-=[ Sibelon ]=-", "-=[ Devolarium ]=-",
// "-=[ Sibelonit ]=-", "-=[ Lordakium ]=-",
// "-=[ Kristallin ]=-", "-=[ Kristallon ]=-",
// "-=[ StreuneR ]=-", "..::{ Boss Streuner }::..",
// "..::{ Boss Lordakia }::..", "..::{ Boss Saimon }::..",
// "..::{ Boss Mordon }::..", "..::{ Boss Devolarium }::..",
// "..::{ Boss Sibelonit }::..", "..::{ Boss Kristallin }::..",
// "..::{ Boss StreuneR }::.." });
HuntNpcsList.AddRange(new string[] { });
#endregion
#region DeathsPerHour
if (BMain.DeathsPerHour > 5)
{
BMain.Actions.LogOff(500);
}
#endregion
#endregion
ActionList.Add("Ukjet's Task");
}
}
}
}
}
Wenn ich die Task starte, sagt er immer "could not find gate" oder er fliegt los (roaming...) und macht sonst nichts ... Also keine NPC und keine Boxen :l
Once I started, it says could not find gate OR it starts roaming, without shooting anything or collecting anything :l
Fehlermeldung:
TIME: could not find a path to my travel location! gates not connected
01/12/2013, 21:54
#11494
elite*gold: 85
Join Date: Jan 2011
Posts: 1,526
Received Thanks: 1,060
Botten die Leute bei euch nachdem das neue Anti Bot Script rasugekommen ist auch noch kaum auf der x-2? Auf DE5 ist die x-2 komplett leer. Denkt ihr es ist unsicher momentan da zu botten?
01/13/2013, 00:09
#11495
elite*gold: 60
Join Date: Apr 2011
Posts: 7,894
Received Thanks: 3,067
Botte weiter, aber nicht so lang....
01/13/2013, 09:14
#11496
elite*gold: 2
Join Date: Sep 2010
Posts: 190
Received Thanks: 24
Naja, ich muss ganz ehrlich sagen; wenn man wirklich zuviel Angst hat beim Botten von BP geflasht zu werden, sollte man die Programme aus lassen. ^^
Frueher, oder später wird jeder von BP geflasht.
Ich botte schoen weiter auf x-2/x-3 (Mordo...Streuner....Lord...Saimon..) und auf x-8 (StreuneR)
In ca. 3-4 Tage Pet von Level 12 auf fast Level 15 ,, fehlen noch 900k Pkt bis 15 <.<
01/13/2013, 12:01
#11497
elite*gold: 0
Join Date: Oct 2012
Posts: 232
Received Thanks: 79
Ok nochmal: Wer macht so 2,5- 3 k Palla pro Stunde ? Wenn es hier jemand macht , schreibt mal auf mit welchen Schiff etc.
01/13/2013, 15:39
#11498
elite*gold: 85
Join Date: Jan 2011
Posts: 1,526
Received Thanks: 1,060
Wie viel müsst ihr denn so im durchschnitt für eine Tarn CPU im Handel zahlen?
01/13/2013, 15:42
#11499
elite*gold: 32
Join Date: Jul 2010
Posts: 8,279
Received Thanks: 4,430
Quote:
Originally Posted by
Yakuza™
Wir viel müsst ihr denn so im durchschnitt für eine Tarn CPU im Handel zahlen?
Server Global Europa1 hab ich mal für 60 Millionen keines bekommen und eine Stunde später hab ich es für 12 Millionen bekommen.
01/13/2013, 16:32
#11500
elite*gold: 79
Join Date: Jun 2011
Posts: 2,477
Received Thanks: 596
Wow impossible
80-90 million credit
01/13/2013, 16:57
#11501
elite*gold: 3570
Join Date: Dec 2012
Posts: 13,044
Received Thanks: 8,252
Ich werde nur noch mein Skylab Tool releasen und dann bin ich weg aus der Section hier.
01/13/2013, 17:12
#11502
elite*gold: 150
Join Date: Jul 2012
Posts: 834
Received Thanks: 67
Quote:
Originally Posted by 'RD.
Ich werde nur noch mein Skylab Tool releasen und dann bin ich weg aus der Section hier.
in welche section gehst dann?
Posted from elitepvpers.com App for Android
01/13/2013, 17:14
#11503
elite*gold: 3570
Join Date: Dec 2012
Posts: 13,044
Received Thanks: 8,252
Mal schauen.
Entweder League of Legends oder AION Section.
Oder nur noch OT und Technical Support bzw. Codersection.
Quote:
Originally Posted by Siri
DarkOrbit ist ein Online-Browser-Spiel der Firma Bigpoint. Es ist seit Dezember 2006 online und hat nach eigenen Angaben über 74 Millionen registrierte Benutzer.
So dumm ist Siri ja gar nicht.
Hat keine Sekunde gebraucht
01/13/2013, 21:50
#11504
elite*gold: 60
Join Date: Apr 2011
Posts: 7,894
Received Thanks: 3,067
Ich gib dir aber ein Tipp Ricky...
Programmiere bitte keine Tools oder Programme für Aion.
Wenn doch bekommst du große Schwierigkeiten auf rechtlichem Wege.
Ein "Hack-Coder" hat ne Geldstrafe von 10.000€ bekommen, da er
ein Hack für Aion geschrieben und verbreitet hatte....
01/13/2013, 21:52
#11505
elite*gold: 3570
Join Date: Dec 2012
Posts: 13,044
Received Thanks: 8,252
Haha.
ich hab nicht mal ne Idee, was ich coden sollte
Ich spiel das ohne Hacks. Macht halt noch Spaß im ggsatz zu DO oder Metin2 *kotz*
All times are GMT +2. The time now is 10:28 .