What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

bKgQuest 30 - 50 (iN-WORK) (ALPHA) (00.1%Ready)

eysho

New Member
Joined
Sep 20, 2014
Messages
1
Reaction score
0
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.
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:
I could code 30-50 easier than I could figure out what you're saying in this post.

(and I mean that as I actually have a working 1-50 quest bot for human side)
 
You should level your own up to 30. It takes almost no time, so..
 
I could code 30-50 easier than I could figure out what you're saying in this post.

(and I mean that as I actually have a working 1-50 quest bot for human side)

if you have 1-50 quest for human side -working- ... why dont you share?
 
I could code 30-50 easier than I could figure out what you're saying in this post.

(and I mean that as I actually have a working 1-50 quest bot for human side)
would you sell it? :P
 
@Showcase
If you had you would of posted it by now, don't use the excuse again that you're not posting it for free because you would have posted it with a price on it if you had made it by now.
 
@Showcase
If you had you would of posted it by now, don't use the excuse again that you're not posting it for free because you would have posted it with a price on it if you had made it by now.

qft

I HAVE A WORKING PLUGIN FOR THE FOLLOWING:

- 1-50 ALL RACES
- ALL TRADEPACKS AUTOMATED
- AUTO MINING, FARMING, CRAFTING

LOL NOOBS
zzz
 
Back
Top