time and cost add

This commit is contained in:
2026-04-20 15:59:41 +03:00
parent eba29659d6
commit 6d545df2a8
2 changed files with 41 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
// ==UserScript==
// @name Grepolis Remote Control
// @namespace http://tampermonkey.net/
// @version 1.5
// @version 1.6
// @description Polls grepo.haunter-pets.top for remote commands and executes them in-game
// @author Dimitrios
// @match https://*.grepolis.com/game/*
@@ -106,7 +106,8 @@
wood: buildDataRaw[k].resources_for?.wood || 0,
stone: buildDataRaw[k].resources_for?.stone || 0,
iron: buildDataRaw[k].resources_for?.iron || 0,
pop: buildDataRaw[k].population_for || 0
pop: buildDataRaw[k].population_for || 0,
build_time: buildDataRaw[k].build_time || 0
};
}
} catch (e) {