GC - Grumpy Old King

Autofill the avatar joke for both Skarl and Hagan

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         GC - Grumpy Old King
// @version      0.2
// @description  Autofill the avatar joke for both Skarl and Hagan
// @author       wibreth
// @match        https://www.grundos.cafe/medieval/grumpyoldking*
// @match        https://www.grundos.cafe/medieval/wiseking*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=grundos.cafe
// @grant        none
// @namespace https://greasyfork.org/users/319295
// ==/UserScript==

(function() {
    'use strict';
    /* globals $:false */

    $('document').ready( function() {
        generateJoke();
        $('#question1').val('What');
        $('#question2').val('do');
        $('#question3').val('you do if');
        $('#question4').val('*Leave blank*');
        $('#question5').val('fierce');
        $('#question6').val('Grundos');
        $('#question7').val('*Leave blank*');
        $('#question8').val('has eaten too much');
        $('#question9').val('*Leave blank*');
        $('#question10').val('tin of olives');
        $('#wisdom6').val('nugget');
    });
})();