Page 1 of 2 12 LastLast
Results 1 to 15 of 16
  1. #1
    BrenoHenrike's Avatar
    Join Date
    Jul 2017
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    426
    My Mood
    Asleep

    Grimoire 3.8+ | 13 Lords of Chaos + Plugin

     
    What's up, so to get where you want this will be simple:
    - First Spoiler contain a some background and me ranting about the state of the game to practice my english;
    - Second Spoiler I'll get through what the plugin I have made do and how you can use it;
    - Finally instructions to what you need to do to run the bots I made.
     
    This pandemic is fucking with everyone and with the start of the quarantine in ~april (which will end when it's "ready o-clock" as Alina would say) I came back to this game after a 3 year hiatus. The nostalgia kicked in and I hand farmed a great part of the shit I missed to waste time as I had no other game I wished to play, and there is me, playing day after day as months go by and so the nostalgia, making me seek for communities related to AQW to do what I liked the most in the game: help one another.
    I wandered by some social medias and found people who needed help; people minding their own business afking in yulgar and people criticizing AE. Honestly, this is nothing new, but the game is already reaching 12 years and it is the same 2D game I played as a kid back in the days, nothing changed neither improved, adding to the snowball of decadence this game haven been through.
    This would be enough to make me get the fuck out and I was into that idea till I found AQLite and all the simple but effective shit it adds in to the game using all AQW already have, and this made me play for some more weeks before I got bored. So, when this happens, I used to acess this forum and see what I could do to add to this forum.
    Well, 3 years ago RBot was released and I was interested in what I could do with it but I had no will left to play AQW, so I left that thought aside which brings me back to now where I wanted to do something different, and program a bot with C# looked cool, leading me to get some coding experience. The last 2 months I dived into RBot documentation and tried to apply some ideas to improve untill I reached the further it could get me (thanks to rodit, imbasu and mxsgx for creating scripts that I used as a base to learn). The C# script method was good but not much effective, guiding me to Grimoire plugins which was other thing I was insterested before I quitted the game.
    So I downloaded visual studio (I have some background with windows forms) and the source code of Grimoire, had a good read to understand it and here we are, I made a plugin to shove the data I colected while I was redoing the story.

     
    This plugin is recommended to whoever is doing history related quests
     

    First you need to load the plugin, click in Tools then Plugin Manager (1); click "..." button (2) and find where you downloaded the file; then click in Load (3)
     

    1. > There you can put the quest ID's given in the text file (you can use the Grimoire Loader too) or any other quest ID you want, for multiple quests be sure to split then with a ',' and no spaces;
    2. > Works like the Grimoire Loader, any quest you want to show needs to be loaded first (by the loader or inside the game);
    3. > All quests that you loaded will fill the controls in the right side;
    4. > the "Index" number is used to add info in the row of same Index (see example below), "Clear fields" will reset all info controls;
    5. > Here you can type the location or get the actual location of your character (Get current button);
    6. > You can either type the monster name or click "Refresh" to get the monsters in the actual room in, "Add monster" will add all info (map, cell, pad and monster name) to the selected Index row in the upper table;
    7. > The info of a get map item, "Add get map" will add the map, item id and quantity of the item in selected Index row on the lower table;
    8. > Will add the commands (see example below).


    In this example I will redo the Prologue chapter with the ID's I have:
    First you load the quests to fill the tables:
     

    As I already did the chapter, some quests will not appear but will be loaded still, and you can see we can now select a quest from the combo box options.
     

    Now you only need to fill the info of the shown required items in the top table, here you can either use the left side controls or even click in a cell and edit directly in the table:
     

     

    Some quests need get map items and although they show in the upper table (cause they are Temp Items in essence), you need to know what is the ID of the item. To know the number, use the Packet Sniffer/Logger of Grimoire and look for a packet like "%xt%zm%getMapItem%xxxx%38%", the number you need will be the last.
    In this case the ID is 38 and we need 5 of it, so we fill the info of that item:
     

    Note that now we have two of the same item and we don't want that. To delete the upper table info you can select the entire row to reveal the "Delete selected" button:
     

    Just click it and it will delete the selected row(s)
     

    To add the command you need to select a quest and click "Add command", it will look like this in the Bot Manager:
     

    Or you can check "Labels" and the result will be like this:
     

    *If you check "All" it will iterate through the quests in the combo box to add them all.

    You noticed the list in the lower right corner, it is the sequence the quests will be added if "All" is checked. In this case, "Undead Assault" is not the first quest of the chapter, to change that you can drag and change the sequence to it's right position which is like this:
     

    You can click update and the combo box will be updated too.
    The button next to update will add a "Quest Verify" statement, which iterate backwards the sequence to see if the quest is avaible to accept, adding to the bot commands:
     


    Some notes:
    • If you delete the wrong item from the quest, you can click "Delete quest" and then click "Fill" again and it will reset the data for only that, or any other deleted quest which is still loaded;
    • Editing directly on the table is faster if you already have all the info you need annotated, but you can do it while doing the quest using the monster and location grabbers;
    • The monster combo box will only be activated when you click refresh, disabling the field you can type in until you click "Add monster";
    • The "Select Drops" combo box you can use to add directly to the drop list, but it can show temporary items too as Reward items aparently don't record if they are temp or not;
    • ** If the quest need a item from a shop or anything else that don't fit in a monster item or get map, delete the requirements and click "Add command", then manually place the commands as normal.



    1 - You don't need the plugin to run the bots as it uses the Grimoire base commands;
    2 - There is a QuestIDs.txt file that contains all the quests each bot runs, MAKE SURE TO LOAD THEM BEFORE STARTING, AS "QUEST AVAIBLE" STATEMENTS WON'T WORK WITHOUT THEM LOADED;
    3 - Use Infinite Range (it should be already toggled but be sure), set your skills and delay (1000 is the safe to go);


    I'll be honest, I didn't test all the bots as I made them first in RBot and used it's code to fill in on Grimoire so here is the updated ones.
    The only change I made to the bots configuration was:
    • Set the delay to 500 but without the 'skip if statements'; to balance the delay I removed the quest verifying of all the quests so the bot now only verifies when it is started (that was a silly idea as consecutive if statements without delay can mess up the bot big time);
    • Confirmed that all of them have Infinite Attack Range and Skip Cutscenes enabled, now you can just start the bot if you have a class that don't need special combos.
     

    That's a level 3 that I scouted with my main through the sagas (now level 34), I fixed the Chaos Finale too but most part of it need stronger classes

    To the plugin I managed some issues and fixed other shenanigans, the interface is about the same:
     
     

    Changes:
    • Removed the index thing so now if you want to add the info, just select the row you want and click "To Selected" (works only for the monster ones, the get maps you can change directly on the table)
    • Added more options to separate the quest ID's, now it doesn't throw a exception if something is wrong with the format
    • Added tooltips to buttons and labels, just mouse over them
       


    New scans:
    Virus Total
    Virscan
    <b>Downloadable Files</b> Downloadable Files
    Last edited by meme; 09-02-2020 at 12:30 AM. Reason: merge

  2. The Following 197 Users Say Thank You to BrenoHenrike For This Useful Post:

    3rdparty (08-22-2020),akashioda (10-07-2020),Akuntuyul (10-04-2020),Alexander47 (11-11-2021),Allanrepil21 (07-22-2022),Amar Maruf (08-28-2020),andrekina (04-17-2022),Anezia (08-23-2020),AnonBubby (08-22-2020),Applerjun (09-05-2020),Ascent77 (12-21-2020),AsianInvasion111 (09-28-2020),astold48 (11-16-2020),AtlasSilva (10-20-2021),Axelerate (11-30-2021),Ayomi (07-31-2021),azorafinal (01-06-2021),berryblueballs (09-14-2020),BillyFilly (09-13-2020),Birrosis (12-17-2020),Blazikens (08-23-2020),Blizzaru (09-04-2020),bloodimari (03-24-2024),boofay (10-20-2020),boy benius (09-30-2020),burntsmores (08-04-2021),C0MOD1N (02-19-2021),caesarchan (07-13-2021),captain Levi (12-03-2020),chaz__ (07-22-2021),ChrisD2114 (12-03-2021),clrcabahug (11-23-2020),Corrupt771 (10-24-2021),crnd (10-03-2020),cucula00 (11-17-2022),DabDaddi (10-04-2020),dankestmeme420 (02-21-2021),dark hartend (10-02-2020),darlig (05-17-2021),dav3sol (09-21-2020),davutasd (10-26-2020),ddttd (10-27-2022),deded12 (05-03-2022),destro27 (12-18-2020),Diaiki (01-23-2022),dicedpatatas (12-18-2020),doci52 (10-16-2020),donpmngks (06-29-2022),DoughBot (09-12-2023),drakulio (10-10-2020),draxible (10-03-2020),dreamwicca (07-26-2021),DrMayed (10-08-2020),EACaine (05-08-2022),edvdel,n (03-06-2022),ElTioR4ptor (01-04-2021),el_lyncher (09-01-2020),enjoyer93 (10-07-2020),EquinoxHazard (09-27-2020),Eren9009 (10-02-2020),Evaulf (10-04-2020),eyerig (07-29-2021),f4liceu (08-23-2020),fileforyou (09-07-2020),firebeatzzz (12-17-2020),firmanwm (09-17-2020),firstntw (10-04-2020),fives55555 (12-17-2020),fl00d_ (12-14-2021),flashcyber_ (12-25-2021),freeman231 (07-29-2021),FrongPawat (04-23-2021),geni43 (12-18-2020),gokussj@2 (02-04-2021),Graedient (07-16-2021),guiomelhor (10-23-2020),guznan (05-15-2022),hagoromo otsutsuki (01-09-2021),hduc192 (03-01-2022),Heliakon (10-03-2020),icypopzs (01-28-2024),idkbro123 (10-18-2020),ilhamepri (07-22-2021),imchizkei (10-22-2020),infernolegion (10-20-2020),ipuly (05-29-2021),Irfan331 (08-23-2020),irvanfj4 (01-05-2021),ItzMituh (12-10-2022),Jaegerthraxis (10-05-2020),jamzre (09-22-2020),Jbn509 (07-16-2021),jhomon26 (4 Weeks Ago),JIANGCHAINZ (07-26-2021),jumongrepil (06-18-2021),juneliebatu (03-16-2021),kamidaiken (09-07-2020),Kentucks (11-17-2021),keraton (08-03-2021),keru3211 (07-25-2021),khaddu008 (09-23-2020),khairus (07-16-2023),Kira3546 (10-15-2020),kiritoz1 (02-17-2021),Kolanicar (07-09-2021),Kraser (10-03-2020),kravei (10-03-2020),kurisuchan (07-19-2021),legitnoob11 (11-26-2020),LEL12345 (05-25-2021),llCrown35 (09-06-2020),lollipop123haha (10-03-2020),LordGT (07-14-2021),lordmoreorless (10-02-2020),loser1312 (09-07-2020),LucianDraven (10-21-2020),luckeyfriendly (04-18-2024),MelmarPogi (07-30-2022),mercenary thief (08-28-2021),MrHaqs (03-04-2021),Mrmrplease_ (08-30-2020),multiheadshot (01-08-2021),Ndikaa (11-05-2023),oxtoff (07-25-2021),Passedroit (10-20-2020),pedrosmith (03-07-2021),peepslol (11-30-2021),Pipolanese (08-22-2020),pleasePapa (09-17-2020),PlsGimmeHacks (07-23-2021),pokemon.1 (04-24-2021),probinus (10-04-2020),pukemo (09-17-2020),PurpleDinjo (10-03-2020),Rapherino (11-06-2020),Rayno32 (08-25-2020),rockinggirl123 (01-09-2021),Roofel (12-22-2022),rtx31 (08-03-2021),ryuryukami (11-08-2020),sanjeif (10-19-2020),Scero (01-02-2022),sepbrian (07-18-2021),SH13LD (11-06-2020),Shiriya (03-05-2021),Shlamm (02-12-2021),shrek lover 69 (08-22-2021),shrk2th (09-01-2020),SirMaxy (10-13-2020),Slasher3567 (07-15-2021),solarisken (07-17-2021),SSSsd123sa (08-24-2020),starstalker (07-14-2021),Supmew (09-08-2020),sweetestvampire (02-09-2021),swigart123 (11-06-2021),symmetricallykid (10-10-2020),taharila1 (12-05-2021),tatsumidelas (11-03-2021),taufan272 (09-05-2020),tbepic07 (01-24-2022),TBoneforall (07-17-2021),teste1533 (10-24-2022),TheLastjedai (03-09-2021),TheSpilledMilk (11-17-2020),thirdeyee (07-18-2021),totemist (07-13-2021),trindade (10-22-2022),truongan195 (08-01-2021),ulashh (04-29-2021),UlbergAlain (11-04-2020),undeadrave99 (11-26-2020),VanillaIceBaby! (08-27-2020),victorvgp203 (09-19-2020),vladimoor (07-23-2021),willowhell (09-19-2020),wince12 (12-17-2020),Winclaros (10-23-2020),wyverg (09-29-2020),Xander1 (10-22-2020),XBerwick (01-09-2021),xKaslow (09-23-2020),xXx_Shadow_xXx (10-19-2020),yaabirader (12-08-2023),YIbnuN (09-28-2020),Yisuzu (09-30-2020),yosvg19 (01-29-2022),yourone12 (10-03-2020),yzex (10-07-2020),zanderthekid (07-16-2021),Zevilents (10-23-2020),Zhayu (09-29-2020),zhudragon9 (03-11-2023),zhymeth (10-27-2020),zkord (12-27-2020),zyrus2234 (09-08-2020),[H4L]Hacker4Life[H4L] (07-03-2022)

  3. #2
    Ahl's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Location
    /modcp
    Posts
    16,599
    Reputation
    3219
    Thanks
    5,383
    My Mood
    Angelic
    Approved.

    Post back results.
    News Force Head Editor from 09/14/2018 - 03/02/2020
    Publicist from 11/23/2017 - 06/07/2019
    Global Moderator since 09/24/2017
    Minion+ from 04/16/2017 - 09/24/2017
    Market Place Minion from 04/16/2017 - 09/24/2017
    Minecraft Minion from 02/23/2017 - 09/24/2017
    Realm of the Mad God Minion from 11/06/2016 - 09/24/2017

    Middleman from 09/14/2016 - 09/24/2017
    News Force Editor from 08/23/2016 - 09/14/2018
    News Force (Section of the Week) from 03/21/2016 - 07/17/2017
    News Force (User News) from 10/18/2015 - 09/14/2018

    Donator since 03/16/2015
    Realm of the Mad God Editor from 05/20/2014 - 07/08/2014
    Member since 12/23/2012


    Rep Power: 82

  4. #3
    meme's Avatar
    Join Date
    Jan 2016
    Gender
    male
    Location
    42.434720, -83.985
    Posts
    8,062
    Reputation
    1403
    Thanks
    2,410
    My Mood
    Lurking
    /approved //2short//
    Quote Originally Posted by Hennessy View Post
    meme is shittiest general mod ever.
     
    dd/mm/yy
    Member | 28/1/16 - ∞
    Premium | 20/3/16 - ∞
    BattleOn Minion | 24/12/17 - 21/7/21
    Minion+ | 4/4/19 - 11/12/20
    Other MMMORPG Minion | 10/11/19 - 21/7/21
    Publicist | 7/2/20 - Unknown
    Minecraft Minion | 10/12/20 - 21/7/21
    General Minion | 10/12/20 - 21/7/21

    Moderator | 11/12/20 - 21/7/21
    Princess | 5/1/21 - 30/6/21
    Global Moderator | 21/7/21 - ∞
    Pharaoh | 30/1/22 - ∞
    Trusted Member | 16/3/23 - ∞

  5. #4
    lunar1412's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0

    nice

    nice. I like story but not repetitive quest

  6. #5
    cuhris's Avatar
    Join Date
    Jan 2016
    Gender
    male
    Posts
    126
    Reputation
    10
    Thanks
    12
    I keep getting "Quest cannot be completed" idk whats wrong

  7. #6
    Ping AE's Avatar
    Join Date
    Dec 2015
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    1
    im confused. is this a bot for completing the 13th lords of chaos saga from the start to finish?

  8. #7
    Evangelist's Avatar
    Join Date
    Oct 2020
    Gender
    female
    Posts
    3
    Reputation
    10
    Thanks
    1

    problem

    When I click load bot and select one nothing is imported. I've tried restarting but still the same. I don't know why

  9. #8
    Evangelist's Avatar
    Join Date
    Oct 2020
    Gender
    female
    Posts
    3
    Reputation
    10
    Thanks
    1
    Can't edit my last post for some reason but the only 'bot' that loads for me is the prologue but even then there is an error with the program which is fine anyways because it still works but yh... the rest of the bots don't load

  10. #9
    BrenoHenrike's Avatar
    Join Date
    Jul 2017
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    426
    My Mood
    Asleep
    Quote Originally Posted by Evangelist View Post
    When I click load bot and select one nothing is imported. I've tried restarting but still the same. I don't know why
    Use Grimoire 3.8+ dude, as said in the post it will not work in Grim 3.8

  11. #10
    DragonH's Avatar
    Join Date
    Jul 2015
    Gender
    female
    Posts
    73
    Reputation
    10
    Thanks
    12
    My Mood
    Bored
    cant remember what questline but will end up saying "Quest cannot be completed" on grim 3.8+ i will check when i wkae up

  12. #11
    BrenoHenrike's Avatar
    Join Date
    Jul 2017
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    426
    My Mood
    Asleep
    Quote Originally Posted by DragonH View Post
    cant remember what questline but will end up saying "Quest cannot be completed" on grim 3.8+ i will check when i wkae up
    A solution to that is removing the complete quest command you are stuck in. With the current Grimoire tools I can't make a solution to this as the best scenario is when the bot runs from start to end in one go

  13. #12
    ilhamepri's Avatar
    Join Date
    May 2014
    Gender
    male
    Location
    sby
    Posts
    39
    Reputation
    10
    Thanks
    9
    can you share your rbot script for 13th chaoslord?
    Lets make rbot great

  14. #13
    DragonH's Avatar
    Join Date
    Jul 2015
    Gender
    female
    Posts
    73
    Reputation
    10
    Thanks
    12
    My Mood
    Bored
    bot getting stuck on some quests mind linking the rbot one ?

  15. #14
    manbunKid's Avatar
    Join Date
    Jan 2016
    Gender
    female
    Posts
    23
    Reputation
    10
    Thanks
    242
    Tested,
    all works but the drakath one... it appears that the quest check sends you to the quest 1 after of the supposed quest.

    can someone help with that?

  16. #15
    nitrix321's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Posts
    22
    Reputation
    10
    Thanks
    6
    My Mood
    Bored
    Doesnt do anything, no idea what im doing wrong.. im too nub at this

Page 1 of 2 12 LastLast

Similar Threads

  1. [Release] [Grimoire 3:8] Lich Lord Armor Bot
    By BeamBoss in forum Adventure Quest Worlds (AQW) Hacks / Cheats / Trainers
    Replies: 3
    Last Post: 12-02-2018, 07:19 AM
  2. [Solved] 13th Lord of Chaos?
    By sandson87 in forum Adventure Quest Worlds (AQW) Help
    Replies: 1
    Last Post: 08-19-2018, 06:47 PM
  3. 13th lord of chaos class choice
    By GERHGAEHAEThjaethjetjetjt in forum Adventure Quest Worlds (AQW) Help
    Replies: 2
    Last Post: 06-15-2014, 04:08 PM
  4. [Release] Mirror Realm Tokens [Chaos Lord]
    By osamabmohd1 in forum Adventure Quest Worlds (AQW) Hacks / Cheats / Trainers
    Replies: 2
    Last Post: 11-20-2013, 08:12 PM
  5. 1st Chaos Lord Question
    By Colourful in forum Adventure Quest Worlds (AQW) Hacks / Cheats / Trainers
    Replies: 8
    Last Post: 06-17-2013, 12:26 AM