# Default/Code Get Full Make Time

Grammar — (Default Code Version) Get the full make time for object object for player player
FlagsNative | Function

Returns the total amount of time required to make the specified object (including the time it would take to tech up to that object’s requirements). Returned value is in sixteenths of a second. Same as the script version, except this version cannot be modified to handle custom requirements.

# Arguments

  • int — Player
  • string — Object

Returns — int

native int AIDefaultGetFullMakeTime(
	int player,
	string aliasType,
);

Category: AI Advanced / Requirements / Functions

# Examples

mods/core.sc2modbase.sc2data/TriggerLibs/RequirementsAI.galaxy:711

    // override any special cases here

    return AIDefaultGetFullMakeTime(player, objType);
}

mods/starcoop/starcoop.sc2modbase.sc2data/TriggerLibs/RequirementsAI.galaxy:748

    // override any special cases here

    return AIDefaultGetFullMakeTime(player, objType);
}