User Pass
Home Sign Up Contact Log In
Forum > Pee Wee Leagues > Pee Wee Gold League > Season 120 Pee Wee Uprising
Page:
 
R007C
offline
Link
 
Originally posted by *Birdman*
I don't think so. This is the first season we have tried over the cap as i wanted to see if i noticed. Seems back in the old days everyone just signed all players to max contracts and went with it. So i tried it this season and if anything i think we performed better, though i cant say that is the reason, maybe part of it. Any wiser insights?


4347 used to be the contract number but that was pre dotpocalypse

it worked better than max because there was this point where you'd go back into the green and not suffer any penalties. but again, that was before. i might try it this upcoming year because why tf not
 
savanna
offline
Link
 
i have to ask, what's "over the cap" mean?

EDIT: just now realizing you're talking about salary, but what is the cap I'm still wondering

Also, I'm assuming we can make our S121 dots today because Day 40 dots can be signed for the upcoming Rookie season anyway. Anyone know for sure if I'm wasting my time starting to build today?
Edited by savanna on May 20, 2026 18:47:48
 
Link
 
GG Buckhead - great game settled in the final 2 minutes.
 
R007C
offline
Link
 
jeeze pickles and turtlebacks are nasty, can't wait to see you both in alpha because alpha isn't hard enough lol
 
Robbnva
offline
Link
 
Originally posted by R007C
jeeze pickles and turtlebacks are nasty, can't wait to see you both in alpha because alpha isn't hard enough lol


By far the weakest conference
 
Argonut
offline
Link
 
The Champions Bowl

Gold Champion Buckhead Royal Knights 10 Silver C hampion Hartford Bouncing Pickles 6
 
Robbnva
offline
Link
 
old script didn't seem to work for me, try this one. You will have to quote and copy because of the emoji

// ==UserScript==
// @name GLB – Bulk Player Retirement (matches real form)
// @namespace goallineblitz.com
// @version 2026.05.01
// @description Retire multiple players from home.pl using the real retire form
// @match https://glb.warriorgeneral.com/game/home.pl*
// @grant none
// ==/UserScript==

(function () {
'use strict';

// 1) Find the player table on home page
const table = document.querySelector("table.player_list, #playerTable, table.players");
if (!table) return;

const rows = table.querySelectorAll("tr");
if (rows.length < 2) return;

// 2) Add header columns + Select All
const header = rows[0];
header.insertAdjacentHTML(
"beforeend",
`<th>Retire?</th>
<th>Keep Name?</th>
<th><a id="bulk_select_all" style="cursorointer;">Select ALL</a></th>`
);

document.getElementById("bulk_select_all").addEventListener("click", () => {
const boxes = document.querySelectorAll(".bulk_retire, .bulk_keepname");
const allChecked = [...boxes].every(b => b.checked);
boxes.forEach(b => (b.checked = !allChecked));
});

// 3) Add per-player checkboxes
rows.forEach((row, idx) => {
if (idx === 0) return;

const link = row.querySelector("a[href*='player_id=']");
if (!link) return;

const playerId = new URL(link.href).searchParams.get("player_id");

row.insertAdjacentHTML(
"beforeend",
`<td><input type="checkbox" class="bulk_retire" data-id="${playerId}"></td>
<td><input type="checkbox" class="bulk_keepname" title="Checked = keep name"></td>`
);
});

// 4) Add main button
const btn = document.createElement("button");
btn.textContent = "Retire Selected Players";
btn.style.margin = "10px";
btn.style.padding = "6px 12px";
btn.style.cursor = "pointer";
table.before(btn);

// Helper: retire a single player
async function retireOne(playerId, keepName, password) {
await fetch(`/game/retire_player.pl?player_id=${playerId}`, {
credentials: "same-origin"
});

const body = new URLSearchParams();
body.set("player_id", playerId);
body.set("keep_name", keepName ? "1" : "0");
body.set("password", password);
body.set("action", "Retire");

const res = await fetch(`/game/retire_player.pl?player_id=${playerId}`, {
method: "POST",
headers: { "Content-Type": "application/x-www-form-urlencoded" },
body: body.toString(),
credentials: "same-origin"
});

return res.text();
}

// 5) Click handler
btn.addEventListener("click", async () => {
const selected = [...document.querySelectorAll(".bulk_retire:checked")];
if (selected.length === 0) {
alert("No players selected.");
return;
}

const password = prompt(`Enter your password to retire ${selected.length} players:`);
if (!password) return;

btn.disabled = true;
let done = 0;
btn.textContent = `Retiring... (0/${selected.length})`;

for (const cb of selected) {
const playerId = cb.dataset.id;

// safer lookup
const row = cb.closest("tr");
const keepNameBox = row.querySelector(".bulk_keepname");
const keepName = keepNameBox && keepNameBox.checked;

try {
const html = await retireOne(playerId, keepName, password);

if (html.includes("Retire Player") && html.includes("THIS PROCESS IS PERMANENT")) {
console.log(`Possible failure retiring player ${playerId}`);
} else {
row.style.opacity = "0.4";
}
} catch (e) {
console.log(`Error retiring player ${playerId}`, e);
}

done++;
btn.textContent = `Retiring... (${done}/${selected.length})`;
}

btn.textContent = "Done!";
setTimeout(() => location.reload(), 1500);
});
})();
Edited by Robbnva on May 21, 2026 09:10:43
Edited by Robbnva on May 21, 2026 09:10:21
 
Link
 
I didn't think I would drop down to silver. The Pickles already volunteered to move down to Silver but would rather a dead team this season move down. If anyone is going CPU shortly or not making dots this year, please switch with the Martians
 
R007C
offline
Link
 
Pickles to alpha . Turtlebacks to beta. Smithster and Berlin to silver .
 
Link
 
Originally posted by R007C
Pickles to alpha . Turtlebacks to beta. Smithster and Berlin to silver .


My squad wouldn't have been relegaded. I switched to get a head start on new branding etc but didn't think everyone would be back to drop down. If no takers then I know Pickles volunteered to swap.
 
Link
 
Yes, I will swap if all teams are going to build and be competitive in Gold. I have no problem playing in Silver again and being a light menace in the tourney and on these forum boards demanding the Pickles be moved up in birdman's rankings.

The ranked scrimmages are just as fun as the in season games for me and since I know folks accept them it keeps it fun and entertaining when I'm just scheduled to play CPUs.
 
dusk883
Zone Monster
offline
Link
 
Originally posted by eastcoastbrian
Yes, I will swap if all teams are going to build and be competitive in Gold. I have no problem playing in Silver again and being a light menace in the tourney and on these forum boards demanding the Pickles be moved up in birdman's rankings.

The ranked scrimmages are just as fun as the in season games for me and since I know folks accept them it keeps it fun and entertaining when I'm just scheduled to play CPUs.


Should get approved fast (GLB speed fast anyway) if both teams have Support tickets in for the same action.

In other news, the JUCO Stogies have rebranded and will be bringing a platoon of FBs. All new concept (for me anyway) for S121. Ready to find a fast scrim partner to troubleshoot OAI playcalling.

Edited by dusk883 on May 22, 2026 09:04:46
Edited by dusk883 on May 22, 2026 09:04:33
 
stat2883
offline
Link
 
Anyone want to swap out of alpha? I was hoping to stay in Alpha, but got moved to beta
 
R007C
offline
Link
 
Originally posted by stat2883
Anyone want to swap out of alpha? I was hoping to stay in Alpha, but got moved to beta


Why would you want to come back to this godforsaken conference
 
Argonut
offline
Link
 
Originally posted by stat2883
Anyone want to swap out of alpha? I was hoping to stay in Alpha, but got moved to beta


I'll swap

 
Page:
 


You are not logged in. Please log in if you want to post a reply.