Page 1 of 1
Giving to Conquer Gods
Posted: Wed Feb 17, 2021 9:29 pm
by ws1
I have a ton of stuff in my inventory and never used any. I see where you can give it to the Conquer Gods and get something back in return. I was just going to give them everything but can only do one at a time. So how can I do that without doing one at a time and taking 2 days to do it and what would I get in return?
Re: Giving to Conquer Gods
Posted: Wed Feb 17, 2021 9:38 pm
by IcePack
ws1 wrote:I have a ton of stuff in my inventory and never used any. I see where you can give it to the Conquer Gods and get something back in return. I was just going to give them everything but can only do one at a time. So how can I do that without doing one at a time and taking 2 days to do it and what would I get in return?
You really only get higher level stars / different stars. You can only do it once at a time. It takes a lot of time. Its probably not worth it unless you're trying to get into a specific tournament or an event which takes certain number of stars you dont have.
Re: Giving to Conquer Gods
Posted: Wed Feb 17, 2021 9:44 pm
by ws1
thanks
Re: Giving to Conquer Gods
Posted: Wed Feb 17, 2021 10:22 pm
by Maxleod
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

Re: Giving to Conquer Gods
Posted: Wed Feb 17, 2021 10:35 pm
by Mad777
...or wait until i bring the next iteration of this tournament and you can actually use your stars as entry tickets to perhaps gain higher stars values
https://www.conquerclub.com/player.php? ... nt_id=9949
Re: Giving to Conquer Gods
Posted: Tue Mar 16, 2021 6:08 pm
by JOHNNYROCKET24
Good question. I have over 5,000 items and never knew what to do with them.
