PBDO-bot task-part HELP please!

09/16/2012 16:31 lollo900#16
then, someone has solved the problem?
09/16/2012 16:57 andersen11#17
Quote:
Originally Posted by lollo900 View Post
then, someone has solved the problem?
yes, I've made a taskscript, I'll try it later... if it won't works, I'll contack someone in the PBDO forum, when it will be online...

Thank you for everyone!

Mods, please CLOSE it :)
09/16/2012 18:10 mariuszdlu#18
and ? its working ?
09/16/2012 18:12 lollo900#19
Quote:
Originally Posted by mariuszdlu View Post
and ? its working ?
For me no, I just tested it...
09/16/2012 18:16 mariuszdlu#20
ask andersen11
09/16/2012 20:02 -OverStreet-#21
Quote:
Originally Posted by lollo900 View Post
For me no, I just tested it...
its an ITaskscript so put it in the taskscript folder and open your bot double click on account -> task scripts and click on the taskscript you want.. click test compile task file to llok if there are some errors if not it should go, just click on ok
ande when there is an error post it here!
09/16/2012 20:09 lollo900#22
Quote:
Originally Posted by -OverStreet- View Post
its an ITaskscript so put it in the taskscript folder and open your bot double click on account -> task scripts and click on the taskscript you want.. click test compile task file to llok if there are some errors if not it should go, just click on ok
ande when there is an error post it here!
It gaves me this error:
[Only registered and activated users can see links. Click Here To Register...]

So in the end no one knows how to use aegis's skills? If anyone knows anything please PM me :)
10/17/2012 19:23 cavaalb#23
Quote:
Originally Posted by mariuszdlu View Post
using PBDOBot.Api;
using PBDOBot.Helper;

namespace PBDOBot.Api.Task
{
public class AegisHitpoints : ITaskScript
{
public AegisHitpoints() : base("AegisHitpoints", 1000, 10)
{
}
public override int Run()
{

if(Task.BMain.Actions.CanUseAbility(Enums.ShipAbil ity.Aegis_Health_Repair) == true && Task.BMain.Me.Hitpoints <= 170000)
{
Task.BMain.Actions.UseAbility(Enums.ShipAbility.Ae gis_Health_Repair);
Task.BMain.WriteLog("Using Health Repair");
}
return -1;
}

public override bool NeedRun()
{
return true;
}
}
}
but where to copy
using PBDOBot.Api;
using PBDOBot.Helper;

namespace PBDOBot.Api.Task
{
public class AegisHitpoints : ITaskScript
{
public AegisHitpoints() : base("AegisHitpoints", 1000, 10)
{
}
public override int Run()
{

if(Task.BMain.Actions.CanUseAbility(Enums.ShipAbil ity.Aegis_Health_Repair) == true && Task.BMain.Me.Hitpoints <= 170000)
{
Task.BMain.Actions.UseAbility(Enums.ShipAbility.Ae gis_Health_Repair);
Task.BMain.WriteLog("Using Health Repair");
}
return -1;
}

public override bool NeedRun()
{
return true;
}
}
}
?