Originally posted by WiSeIVIaN
And Tomcic, clearly no one's intention is to have massive powerful scout scripts that only 1 person has access to. The original GLB scout script was open source, and even then Bort built it into the game to level the playing field.
You are literally scraping a combination of play names, and dot locations/movements to scout in a way that in your own words lets you find things in 5 minutes that would otherwise take hours without your script by scouting many teams at once.
At a minimum Bort should hide play names for other teams to mess you up a bit. But since your script is hidden and secret, hard for me to determine all the ways to help break it.
It is clear as day that this gives a massive competitive advantage outside of the intended scope of GLB. I challenge you to give other examples of private scripts not shared with the public which would effect scouting and game outcomes in such a way? None exist. You are now refering to O play names being showed? A friendly advice, if you never DCed before, it is now the best time to stfu and don't embarass yourself.
Here is a freebie for you of an old script, which you can easily enhance in multiple variations.
https://greasyfork.org/ug/scripts/467046-glb-dpc-play-save-as-new-play/versionsA free nugget for you, enhance the original one with two lines and you got yourself an easier tool to create multiple plays on Offense out of the same play.
// ==UserScript==
// @name
GLB DPC Play Save As New Play// @namespace Bogleg
// @version 1.0.1
// @include
https://glb.warriorgeneral.com/game/team_create_defense.pl?team_id=*&play_id=*// @include
https://glb.warriorgeneral.com/game/team_create_defense.pl?create=*// @include https://glb.warriorgeneral.com/game/team_create_offense.pl?team_id=*&play_id=*
// @include https://glb.warriorgeneral.com/game/team_create_offense.pl?create=*// @require
https://greasyfork.org/scripts/12092-jquery-javascript-library-v1-4-2/code/jQuery%20JavaScript%20Library%20v142.js?version=71384// @description Adds a "Save As New" checkbox to GLB Defensive Play Creator
// @downloadURL
https://update.greasyfork.org/scripts/467046/GLB%20DPC%20Play%20Save%20As%20New%20Play.user.js// @updateURL
https://update.greasyfork.org/scripts/467046/GLB%20DPC%20Play%20Save%20As%20New%20Play.meta.js// ==/UserScript==
if ($('div.tactic_container:contains(Current Custom Defensive Plays)').length == 0) { // don't work on the play index page
$('input[name=action]').before('<div class="small_head"><input type="checkbox" id="save_as_new_play" /> Save as New Play</div>');
var origPlayId = $('input[name=play_id]').val();
$('#save_as_new_play').change(function() {
if ($(this).attr('checked')) {
$('input[name=play_id]').val('');
} else {
$('input[name=play_id]').val(origPlayId);
}
});
} // end if (!isIndex)
But sorry, I forgot, you are not into "custom plays" ... unless you changed your coordinating style during the last 4 seasons and included custom plays in your O schemes.
And seeing that you have no clue of coding and IT in general, you will find out anyway in max 3 years when first build and tested AI agents take over routine tasks in big companies and you NEVER see the actual source code behind it of handling those topics.