So far I have this,
// ==UserScript==
// @name Random Creature LevelUP for Avadopts
// @namespace Xaric
// @description Clicks randomcreature for leveling up on Avadopts
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js
// @include *
//--- Note that the contains() text is case-sensitive.
var TargetLink = $("a:contains('Give a random creature a level!')")
if (TargetLink && TargetLink.length)
window.location.href = TargetLink[0].href
But it doesn't work.
Any thoughts to get it working?