Quest 30 - 50 (iN-WORK) (ALPHA) (00.1%Ready)
Hello i try to make the quest ready for 30-50.
Can you say me is that right.
It´s was same typ auf quest like Level 1 Starter quest.
I dnt can test it need first level to 30 :>
But next point is.
The Gnoll Threat - Archeage Database 1.2
it´s like
(The Reedpipe Chief - Archeage Database 1.2)
You have some to Kill / Joise, can i use this like masks ?
Best reegretz. I always like helping hands.
Hello i try to make the quest ready for 30-50.
Can you say me is that right.
Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace AutoExp.Quests
{
internal class Quest_519 : Quest
{
public Quest_519(int minLvl, int maxLvl, QuestRace race, uint[] reqQuests)
: base(519, minLvl, maxLvl, race, reqQuests)
{ }
public override bool RunQuest(Host host)
{
if (!base.RunQuest(host))
return false;
if (getQuest() == null)
{
if (!host.movementModule.GpsMove("Humanoid_Deserter_Deckard"))
return false;
host.StartQuest(id);
Thread.Sleep(1000);
}
ArcheBuddy.Bot.Classes.Quest quest = getQuest();
if (quest != null && quest.status == ArcheBuddy.Bot.Classes.QuestStatus.Performed)
{
if (!host.movementModule.GpsMove("Humanoid_Deputy_Commander_Sinclair"))
return false;
host.CompleteQuest(id);
Thread.Sleep(1000);
}
return true;
}
}
}
It´s was same typ auf quest like Level 1 Starter quest.
I dnt can test it need first level to 30 :>
But next point is.
The Gnoll Threat - Archeage Database 1.2
it´s like
Code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using ArcheBuddy.Bot.Classes;
namespace AutoExp.Quests
{
//
internal class Quest_6353 : Quest
{
public Quest_6353(int minLvl, int maxLvl, QuestRace race, uint[] reqQuests)
: base(6353, minLvl, maxLvl, race, reqQuests)
{ }
public override bool RunQuest(Host host)
{
if (!base.RunQuest(host))
return false;
if (getQuest() == null)
{
if (!host.movementModule.GpsMove("Ferre_Megana")) return false;
Thread.Sleep(1000);
host.StartQuest(id);
Thread.Sleep(1000);
}
ArcheBuddy.Bot.Classes.Quest quest = getQuest();
if (!checkQuestCompletedOrAccepted(1433))
return false;
if (!checkQuestCompletedOrAccepted(1436))
return false;
if (quest != null && quest.status == QuestStatus.Accepted)
{
Zone zone = new RoundZone(23054.02, 8608.38, 30);
if (!zone.ObjInZone(host.me))
if (!host.movementModule.GpsMove("Ferre_Redpipe_Chief")) return false;
host.farmModule.SetFarmMobs(zone, new uint[] { 4194 });
while (host.farmModule.farmState == Modules.FarmState.Enabled && quest.status == QuestStatus.Accepted)
Thread.Sleep(100);
host.farmModule.StopFarm();
Thread.Sleep(1000);
}
if (!checkQuestCompletedOrPerfomed(1433))
return false;
if (!checkQuestCompletedOrPerfomed(1436))
return false;
if (quest != null && quest.status == QuestStatus.Performed)
{
if (!host.movementModule.GpsMove("Ferre_Megana")) return false;
host.CompleteQuest(id, 1);
Thread.Sleep(1000);
}
return true;
}
}
}
(The Reedpipe Chief - Archeage Database 1.2)
You have some to Kill / Joise, can i use this like masks ?
Best reegretz. I always like helping hands.
Last edited: