# Get Current Harvest Peon Count
Grammar — Get the number of peons currently harvesting in town town for player player
Flags —Native
|Function
Returns the number of peons currently harvesting in a town for a player.
# Arguments
int
— Playerint
— Town
Returns — int
native int AIGetCurPeonCount(int player, int town);
# Related
Category: AI Advanced / Towns / Functions
- Get Town State —
int
— AIGetTownState - Get Town Location —
point
— AIGetTownLocation - Get Closest Town —
int
— AIGetClosestTown - Get Next Unused Town Slot —
int
— AIGetNextUnusedTownSlot - Get Building Count In Town —
int
— AIGetBuildingCountInTown - Is Town Harvesting —
bool
— AIIsTownHarvestRunning - Get Current Harvest Peon Count —
int
— AIGetCurPeonCount - Get Min Desired Harvest Peon Count —
int
— AIGetMinPeonCount - Get Max Desired Harvest Peon Count —
int
— AIGetMaxPeonCount - Get Mineral Amount Left —
int
— AIGetMineralAmountLeft - Get Gas Amount Left —
int
— AIGetGasAmountLeft - Get Num Mineral Spots —
int
— AIGetMineralNumSpots - Get Num RawGas Spots —
int
— AIGetRawGasNumSpots - Get Offense Gather Location —
point
— AIGetGatherLocation - Get Defense Gather Location —
point
— AIGetGatherDefLocation - Expand —
int
— AIExpand - Get Town Threats —
unitgroup
— AIGetTownThreats
# Examples
mods/core.sc2mod — base.sc2data/TriggerLibs/MeleeAI.galaxy:78
DebugVarInt2(
"peons cur", AIGetCurPeonCount(player, c_townMax),
"max", AIGetMaxPeonCount(player, c_townMax)
);
mods/starcoop/starcoop.sc2mod — base.sc2data/TriggerLibs/MeleeAI.galaxy:78
DebugVarInt2(
"peons cur", AIGetCurPeonCount(player, c_townMax),
"max", AIGetMaxPeonCount(player, c_townMax)
);