Here's a script another member wrote and gave me, but you need to install tampermonkey first.
// ==UserScript==
// @name Sacrificer
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author lanyards
// @include http://*.conquerclub.com/player.php?mode=sacrifice
// @include https://*.conquerclub.com/player.php?mode=sacrifice
// @grant none
// @run-at document-end
// ==/UserScript==
const star = {RED : 1,
GREEN: 2,
BLUE: 3,
YELLOW: 4,
PINK: 5,
CYAN: 6,
ORANGE: 7,
SILVER: 8,
VIOLET: 9,
ELECTRIC_GREEN: 10,
AUBURN: 11,
DRAB: 12};
/* !!!!!!!!!!!!!!!!!!!!!!!! */
var STAR = star.DRAB;
var MIN_STAR_LIMIT = 100;
/* !!!!!!!!!!!!!!!!!!!!!!!! */
var selector = document.querySelectorAll("#middleColumn > div > div > div > form > table > tbody > tr:nth-child(1) > td:nth-child(2) > select")[0];
var numStar = selector.querySelectorAll("option[value='" + STAR + "']")[0].innerHTML.split('(')[1].split(')')[0];
if (numStar > MIN_STAR_LIMIT) {
selector.value = STAR;
var button = document.querySelectorAll("#middleColumn > div > div > div > form > table > tbody > tr:nth-child(3) > td > input[type='submit']")[0];
//button.click();
}
Only change the star and limit in between the /* !!!! */ lines, and uncomment the last button.click() line to have to burn your stars when you go to the sacrifice page. It's fast
Hope that'll help
