This one? Taskcreator v.2.9 [by Dr.Moc] ???Quote:
Here, at the moment the best creators....
- [Only registered and activated users can see links. Click Here To Register...]
Edit.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
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
User Suchfunktion welche im Board intigriert ist.Quote:
Oo ... danke wo weisst du das
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
Quote:
I have been trying to find a way to use aegis abilities in tasks...
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");
}
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);