You last visited: Today at 17:22
Advertisement
[Release] PBDO Bot - Official Thread
Discussion on [Release] PBDO Bot - Official Thread within the DarkOrbit forum part of the Browsergames category.
02/24/2013, 14:14
#1606
elite*gold: 60
Join Date: Apr 2011
Posts: 7,894
Received Thanks: 3,067
Quote:
Originally Posted by
ForseS
Usually I use the bot only x-7 but I hang quests pirates
Thank you all for your help
Quests/farming pirates don't work with PBDO (only pirat maps).
02/24/2013, 14:24
#1607
elite*gold: 0
Join Date: Dec 2011
Posts: 131
Received Thanks: 219
Can advise best Taskcreator
02/24/2013, 14:31
#1608
elite*gold: 60
Join Date: Apr 2011
Posts: 7,894
Received Thanks: 3,067
Here, at the moment the best creators....
02/24/2013, 14:35
#1609
elite*gold: 0
Join Date: Dec 2011
Posts: 131
Received Thanks: 219
Quote:
Originally Posted by
linksus
Here, at the moment the best creators....
This one? Taskcreator v.2.9 [by Dr.Moc]
???
02/24/2013, 14:41
#1610
elite*gold: 60
Join Date: Apr 2011
Posts: 7,894
Received Thanks: 3,067
Quote:
Originally Posted by
ForseS
This one? Taskcreator v.2.9 [by Dr.Moc] ???
Sure man, either you use Dr.Moc's or Gähns.
And don't ask again which is better, test and you know it.
You're really a spammer...
02/24/2013, 15:05
#1611
elite*gold: 0
Join Date: Dec 2011
Posts: 131
Received Thanks: 219
Quote:
Originally Posted by
linksus
Sure man, either you use Dr.Moc's or Gähns.
And don't ask again which is better, test and you know it.
You're really a spammer...
Sorry I'm not a spammer
(this is evident from the registration date and the number of posts) I'm just new to using PBDO-Bo
02/24/2013, 16:22
#1612
elite*gold: 60
Join Date: Apr 2011
Posts: 7,894
Received Thanks: 3,067
Auth Server Offline
Quote:
Hello Community,
i saw a lot of posts about auth server problems with new users, who bought licence.
The problem is that auth looks like offline, my login isnt accepted. New users
have to wait till someone of TechAdmins is online and can check it.
Regards Dozer
Edit.
Quote:
Good day.
I'm currently still at my girlfriends home.
Going for a fast breakfast and a shower, then i'll head back home.
Kind regards
Mr.Smith
02/24/2013, 18:13
#1613
elite*gold: 0
Join Date: Jul 2009
Posts: 5,440
Received Thanks: 1,111
Trulala kannst du mir helfen habe mein pbdo namen vergessen der name hiess : hanness nur nach hanness kamen paar zahlen die ich vergessen habe
kannst du mir helfen??
LG
02/24/2013, 18:15
#1614
elite*gold: 32
Join Date: Jul 2010
Posts: 8,279
Received Thanks: 4,430
Quote:
Originally Posted by
»A«
Trulala kannst du mir helfen habe mein pbdo namen vergessen der name hiess : hanness nur nach hanness kamen paar zahlen die ich vergessen habe
kannst du mir helfen??
LG
hanness3234
02/24/2013, 18:18
#1615
elite*gold: 0
Join Date: Jul 2009
Posts: 5,440
Received Thanks: 1,111
Quote:
Originally Posted by
Elsastylez
hanness3234
Oo ... danke wo weisst du das
02/24/2013, 18:20
#1616
elite*gold: 32
Join Date: Jul 2010
Posts: 8,279
Received Thanks: 4,430
Quote:
Originally Posted by
»A«
Oo ... danke wo weisst du das
User Suchfunktion welche im Board intigriert ist.
02/25/2013, 06:43
#1617
elite*gold: 60
Join Date: Apr 2011
Posts: 7,894
Received Thanks: 3,067
Another news about "Auth Server Offline".
Quote:
I just repushed the auth data. I have also added the job to execute from a secondary host for now incase our main webhost Cronjobs are stuffed up. If more of you experience issues, please, do not hesitate to contact us.
-jD
02/25/2013, 08:18
#1618
elite*gold: 20
Join Date: Dec 2012
Posts: 725
Received Thanks: 333
I have been trying to find a way to use aegis abilities in tasks. Is it true that you can use a taskscript instead of a task for the aegis repair abilities? I am currently using the eco-purchase taskscript which works great. It seems the Dr.Moc taskcreator has options for the use of aegis abilities but for some reason never works...
02/25/2013, 18:39
#1619
elite*gold: 0
Join Date: Dec 2010
Posts: 102
Received Thanks: 22
Quote:
Originally Posted by
Bone-marrow
I have been trying to find a way to use aegis abilities in tasks...
Code:
if (BMain.Me.Hitpoints <= 444000)
{
BMain.Actions.UseAbility(Enums.ShipAbility.Aegis_Health_Repair);
BMain.WriteLog("Using Hp Repair");
}
if ((BMain.Me.Shield <= 400000))
{
BMain.Actions.UseAbility(Enums.ShipAbility.Aegis_Shield_Repair);
BMain.WriteLog("Using Shield Repair");
}
if (BMain.Me.MaxHitpoints <= 80000 && BMain.Me.InNoAttackZone || BMain.Me.IsInBase)
{
BMain.Actions.UseAbility(Enums.ShipAbility.Aegis_Health_Pod);
BMain.WriteLog("Using Repair Pod");
}
Do u wanna this ?
there i show u how u can use this in task
Code:
TaskScript = new TaskScript(
delegate()
{
if (BMain.Me.Hitpoints <= 444000)
{
BMain.Actions.UseAbility(Enums.ShipAbility.Aegis_Health_Repair);
BMain.WriteLog("Using Hp Repair");
}
if ((BMain.Me.Shield <= 400000))
{
BMain.Actions.UseAbility(Enums.ShipAbility.Aegis_Shield_Repair);
BMain.WriteLog("Using Shield Repair");
}
if (BMain.Me.MaxHitpoints <= 80000 && BMain.Me.InNoAttackZone || BMain.Me.IsInBase)
{
BMain.Actions.UseAbility(Enums.ShipAbility.Aegis_Health_Pod);
BMain.WriteLog("Using Repair Pod");
}
if(BMain.Me.IsInBase && (BMain.Me.MaxHitpoints <= 250000)) {BMain.Actions.FleeToBase(0);StandardConfiguration = 2;}
if(BMain.MapName != "5-3" && (BMain.Me.Hitpoints >= 200000) && (BMain.Me.Shield/BMain.Me.MaxShield)*100 == 100) {Cloak = true;} else {Cloak = false;}
if(BMain.MapName != "5-3") {UsePet = false;} else {UsePet = true;}
if(BMain.Me.AttackedByNpc || BMain.Me.AttackedByPlayer)
{
if (BMain.Me.SelectedShip.Shield > 0) {BMain.Me.SetLaserAmmo(Enums.LaserAmmoType.MCB_50);} else {BMain.Me.SetLaserAmmo(Enums.LaserAmmoType.MCB_50);}
StandardConfiguration = 2;
PetMode = Enums.PetMode.Auto_Resource_Collector;
}
else
{
StandardConfiguration = 1;
PetMode = Enums.PetMode.Auto_Resource_Collector;
}
return -1;
},
delegate()
{
return true;
},
500);
02/26/2013, 07:23
#1620
elite*gold: 11
Join Date: Aug 2012
Posts: 1,040
Received Thanks: 162
Somebody know what this is?
7:21:05: LEVEL_UPDATE: LM|ST|LUP|7|
All times are GMT +2. The time now is 17:22 .