Scavenging Group-specific mass scavenging script

iDisbelieve

Active Member
Reaction score
35
Author
Shinko to Kuma
Contributors
iDisbelieve
Quickbar Entry
javascript:
// Change this variable with the group ID of the group you want to use
var myGroup = 0;

var win = (window.frames.length > 0) ? window.main : window;
if (game_data.mode == "scavenge_mass") {
var troopTypeEnabled =
{
"spear": true,
"sword": true,
"axe": true,
"archer": true,
"light": true,
"marcher": true,
"heavy": true,
"knight": false,
};
var categoryEnabled =
{
"1": true,
"2": true,
"3": true,
"4": true
};
$.getScript('https://shinko-to-kuma.com/scripts/massScavenge.js');
} else {
self.location = win.game_data.link_base_pure.replace(/screen\=\w*/i, "screen=place&mode=scavenge_mass&group=" + myGroup);
}
Public?
Public
This is a modified version of the mass scavenging script by Shinko to Kuma. This version will first open the mass scavenging page on a specifically selected group ID and then on second execution it resumes the original behavior.
 
Changelog
-
Upvote 0
Top