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

[Plugin] Questing

Status
Not open for further replies.
Btw where can i find source code for this ? Also things worked normally for me 3-4 days ago. Suddenly out of nowhere it started reseting itself. Any clue how to fix that? With rest i could live, with that reseting thing im fucked :(


BuddyFolder\Plugins\Questing\QuestingSources.zip

Just unpack it and there you have all files.
Even without alot of programming knowledge its easy to understand .

I already tried some modding and fixes but to prevent Pluggin from updating you have to Disable it in Buddystore .
If you wont disable it all changes you made will be updated with old bugged ones .
BuddyStore-EnablingStreamingForProduct.png


If we get some people really interested in working on this project i could do some small Wiki on the structure .
Its mostly copy paste, grabbing quests IDs from Database even from Archeage Database 1.7 .
Functions used all limited to like 10-20 maybe as bot does similar things .

Its not hard work but very time consuming thats why i started an idea for community project with this pluggin .
We could definately bring it up to 50 .

Lets take some effort and fix this people :)
 
Last edited:
>edwinlodz. Did you now how to compile QuestingSources ? I unpack archive, open in Plugin Editor, compile and questing script doesn't work. Character don't moving.
 
На 12 уровне квест "грибы" встает и перестает что-либо делать.
На некоторых квестах встает и пока не выключишь и не включишь плагин он так и стоит.
 
Hi Guys,

I've just loaded in BuddyStore the Questing plugin and I do not come on as I offered to get up and running, can someone help me?

i will questing with the bot ^^ -
Instructions?

What is this? -

Code:
23:50:58: c:\ArchB\Plugins\Questing\QuestingSources\QuestingSources\AutoExp\Quests\Arcum Iris\Level1\Quest_1112.cs(10,33) : error CS0246: Der Typ- oder Namespacename 'Quest' konnte nicht gefunden werden. (Fehlt eine Using-Direktive oder ein Assemblyverweis?)
23:50:58: c:\ArchB\Plugins\Questing\QuestingSources\QuestingSources\AutoExp\Quests\Arcum Iris\Level1\Quest_1113.cs(10,33) : error CS0246: Der Typ- oder Namespacename 'Quest' konnte nicht gefunden werden. (Fehlt eine Using-Direktive oder ein Assemblyverweis?)
23:50:58: c:\ArchB\Plugins\Questing\QuestingSources\QuestingSources\AutoExp\Quests\Arcum Iris\Level1\Quest_1112.cs(12,51) : error CS0246: Der Typ- oder Namespacename 'QuestRace' konnte nicht gefunden werden. (Fehlt eine Using-Direktive oder ein Assemblyverweis?)
23:50:58: c:\ArchB\Plugins\Questing\QuestingSources\QuestingSources\AutoExp\Quests\Arcum Iris\Level1\Quest_1112.cs(16,39) : error CS0246: Der Typ- oder Namespacename 'Host' konnte nicht gefunden werden. (Fehlt eine Using-Direktive oder ein Assemblyverweis?)
23:50:58: c:\ArchB\Plugins\Questing\QuestingSources\QuestingSources\AutoExp\Quests\Arcum Iris\Level1\Quest_1113.cs(12,51) : error CS0246: Der Typ- oder Namespacename 'QuestRace' konnte nicht gefunden werden. (Fehlt eine Using-Direktive oder ein Assemblyverweis?)
23:50:58: c:\ArchB\Plugins\Questing\QuestingSources\QuestingSources\AutoExp\Quests\Arcum Iris\Level1\Quest_1113.cs(16,39) : error CS0246: Der Typ- oder Namespacename 'Host' konnte nicht gefunden werden. (Fehlt eine Using-Direktive oder ein Assemblyverweis?)

i go in the bot to Plugins Editor. - Select Folder that contains plugins. and go Compile.
 
Last edited:
That's the quests level yes.
This bot has not been updated since forever and is now not working correctly, we're hoping someone is able to fix it and add quests for higher zones(that you can get player killed in..).
 
Hello Guys..

Possibility?
My character is level 36. What do you recommend that I feel from Level 36 to Level 55? :D
 
I've started to go through the source files to make heads and tails out of it as to familiarise myself.

Anyone keen to take a swing at modifying the skill selector so that it reaches L55?

Code:
{
            passiveBuffsToLearn = new List<uint>()
            {
                //Sorcery
                15,//Mana pool increase
                38,//Magic Range Boost
                39, //Efficient Sorcery
                257, //Mana Flurry

                //Battlerage
                3, //Weapon Maneuvers

                //Widthcraft
                4,//Folding Time

                //Occultism
                17 //Enhanced Mana Recovery
            };
            activeSkillsToLearn = new List<uint>()
            {
                //Sorcery
                10153,//Insulating Lens

                //Occultism
                10135,//Hell Spear

                //Vitalism
                11379, //Mirror Light
                10547, //Resurgence
                10534, //Antithesis

                //Shadowplay
                18125, //Rapid Strike
                12139, //Stalker's Mark

                //Auramancy
                11869, //Conversion Shield
                16486, //Thwart

                //Defense
                10645, //Refreshment
                11365, //Toughen
                12048, //Boastful Roar

                //Songcraft
                11377, //Hummingbird Ditty

            };
            //If no Sorcery - add Mana Start - Occultism
            if (!host.isAbilityTaken(Ability.Sorcery))
                activeSkillsToLearn.Add(14810);
            //If no Shadowplay - add Triple slash - Battlerage
            if (!host.isAbilityTaken(Ability.Shadowplay))
                activeSkillsToLearn.Add(18132);

            //If no main dps abilities - add additional skills
            if (!host.isAbilityTaken(Ability.Sorcery)
                && !host.isAbilityTaken(Ability.Occultism)
                && !host.isAbilityTaken(Ability.Battlerage)
                && !host.isAbilityTaken(Ability.Shadowplay)
                && !host.isAbilityTaken(Ability.Archery))
            {
                //Defense
                activeSkillsToLearn.Add(10399); //Shield Slam
                activeSkillsToLearn.Add(10501); //Bull Rush
            }

            if (host.characterSettings.weaponPriority == 0)
            {
                //Sorcery
                activeSkillsToLearn.Add(10752);//Flamebolt
                activeSkillsToLearn.Add(10667);//Freezing arrow
                
                //Witchcraft
                activeSkillsToLearn.Add(10159); //Enervate
                activeSkillsToLearn.Add(14376); //Earthen Grip
                activeSkillsToLearn.Add(10712); //Purge

                //Songcraft
                activeSkillsToLearn.Add(11973); //Critical Discord
                activeSkillsToLearn.Add(11934); //Startling Strain

                //Occultism
                activeSkillsToLearn.Add(12759); //Mana Force
            }
            else if (host.characterSettings.weaponPriority == 1)
            {
                //Archery
                activeSkillsToLearn.Add(16210);//Charged Bolt
                activeSkillsToLearn.Add(13564);//Piercing Shot
                activeSkillsToLearn.Add(14835);//Endless Arrows
                activeSkillsToLearn.Add(11368);//Double Recurve
                activeSkillsToLearn.Add(15073);//Deadeye

                //Shadowplay
                activeSkillsToLearn.Add(12049);//Drop Back

            }
            else if (host.characterSettings.weaponPriority == 2)
            { 
                //Shadowplay
                activeSkillsToLearn.Add(10648);//Overwhelm
                activeSkillsToLearn.Add(12029);//Wallop

                //Archery
                activeSkillsToLearn.Add(16210);//Charged Bolt
                activeSkillsToLearn.Add(13564);//Piercing Shot

                //Battlerage
                activeSkillsToLearn.Add(11918); //Charge
                activeSkillsToLearn.Add(13282); //Whirlwind Slash
                activeSkillsToLearn.Add(10644); //Sunder Earth
            }

If I can wrap my head around a single quest process with the supplied files, I should be able to get us up to L50.

I've found the event IDs through ArcheAge Database (example http://archeagedatabase.net/us/quest/518/), so that part is sorted.
 
Last edited:
I'd edit my last post, but I want this to get a little more attention from everyone that currently uses this plugin.

At which point does the questing stop for you?

If you can provide your current level with that character, which map and next quests (before the bot stopped, not L50 ones or anything), that'd be awesome.
 
Dont touch it atm. Soon we will update this plugin up to 50lvl
 
Ребята! (Я,наверное,уже всем в пм понаписывал)подскажите как запустить? плагин из магаза я скачал,даже здесь на странице какой-то нашел zip с файлами плагинов. Куда их деть? бот не работает. делаю нового персонажа, всё выбираю, нажимаю старт,а он всё равно стоит.

---------------------------------------------------------------------------------------------------------
Children! (I must have been all the PM ponapisyval) tell me how to start? plug-in from shop I downloaded, even here on the page some zip files found plug-ins. Where to put them? bot is not working.I make a new character, all choose, press start, and he still is.
 
там надо выбрать квестов до левла 50 ставишь и будет норм, когда до 50 будет кач а то купил бота а толку от него ноль
 
Dont touch it atm. Soon we will update this plugin up to 50lvl
Any update for those of us waiting? Not looking for a specific ETA, but would certainly love to try this out.

EDIT: It would be helpful to look around, as I see there's a topic for a BETA quest mesher, so derp by me. :p
 
So, this doesnt work right?. Or am i doing something wrong?. Im lvl 27 at silent forest and doesnt find any quests. (i drove it manually next to an npc and nothing happens either). Thx and regards.
 
Status
Not open for further replies.
Back
Top