# Game Speed Factor
Grammar — Game speed factor
Flags —Native|Function
Returns the game speed factor.
Returns — fixed
native fixed GameGetSpeed();
# Related
Category: Game / Game Settings
- Map Initialization —
void— TriggerAddEventMapInit - Save Game Started —
void— TriggerAddEventSaveGame - Save Game Finished —
void— TriggerAddEventSaveGameDone - Load Game Finished —
void— TriggerAddEventLoadGameDone - Set Game Speed —
void— GameSetSpeedValue - Game Set Quit On Quit Button —
void— GameSetQuitOnQuitButton - Set Global Time Scale —
void— GameSetGlobalTimeScale - Pause Mission Time —
void— GameSetMissionTimePaused - Mission Time Paused —
bool— GameIsMissionTimePaused - Mission Time —
fixed— GameGetMissionTime - Set Minimum Game Speed —
void— GameSetSpeedValueMinimum - Lock Game Speed —
void— GameSetSpeedLocked - Game Speed Factor —
fixed— GameGetSpeed - Game Speed —
int<preset::GameSpeed> — GameGetSpeedValue - Global Time Scale —
fixed— GameGetGlobalTimeScale - Game Speed Minimum —
int<preset::GameSpeed> — GameGetSpeedValueMinimum - Game Speed Is Locked —
bool— GameIsSpeedLocked - Attribute Game Value —
string<attributevalue> — GameAttributeGameValue - Attribute Player Value —
string<attributevalue> — GameAttributePlayerValue - Players On Team —
playergroup— GameAttributePlayersForTeam - Turn Fixed Random Seed On/Off —
void— GameSetSeedLocked - Random Seed Is Locked —
bool— GameIsSeedLocked - Set Random Seed —
void— GameSetSeed - Create Saved Game —
void— GameSaveCreate - Set Game Pausing Allowed —
void— GameSetPauseable - Set Tradeshow Game Time Remaining —
void— GameSetAbsoluteTimeRemaining - Pause Tradeshow Game Time Remaining —
void— GameSetAbsoluteTimeRemainingPaused - Tradeshow Game Time Remaining —
fixed— GameGetAbsoluteTimeRemaining - Tradeshow Game Time Remaining Is Paused —
bool— GameGetAbsoluteTimeRemainingPaused - Map Name —
text— GameMapName - Map Path —
string— GameMapPath - Map Description —
text— GameMapDescription - Map Is Blizzard —
bool— GameMapIsBlizzard - Map Texture Set —
string<gamelink::Terrain> — GameTerrainSet - Game Is Test —
bool— GameIsTestMap - Game Is Examinable —
bool— GameIsExaminable - Game Get Test Config Type —
int— GameTestConfigType - Game Is Online —
bool— GameIsOnline - Game Is Debug Option Set —
bool— GameIsDebugOptionSet - Game Is Matchmade —
bool— GameIsMatchmade - Game Is Competitive —
bool— GameIsCompetitive - Game Is Practice —
bool— GameIsPractice - Game Is Cooperative —
bool— GameIsCooperative - Game Allows Duplicate Heroes —
bool— GameAreHeroDuplicatesAllowed
# Examples
campaigns/swarm.sc2campaign — base.sc2maps/maps/campaign/swarm/zlab01.sc2map/MapScript.galaxy:2157
TechTreeAbilityAllow(gv_pLAYER_01_USER, AbilityCommand("ZergBuild", 0), true);
lv_hatcheryBuildTime = (SoundLengthSync(SoundLink(ConversationDataGetSound("zMission_Lab01|Line00027", true), c_soundIndexAny)) + SoundLengthSync(SoundLink(ConversationDataGetSound("zMission_Lab01|Line00015", true), c_soundIndexAny)) + SoundLengthSync(SoundLink(ConversationDataGetSound("zMission_Lab01|Line00180", true), c_soundIndexAny)));
lv_hatcheryBuildTime *= GameGetSpeed();
lv_hatcheryBuildTime += 4.0;
CatalogReferenceSet("Abil,ZergBuild,InfoArray[Build1].Time[0]", gv_pLAYER_01_USER, FixedToString(lv_hatcheryBuildTime, c_fixedPrecisionAny));
campaigns/swarm.sc2campaign/base.sc2maps/maps/campaign/swarm/zlab01.sc2map — MapScript.galaxy:2157
TechTreeAbilityAllow(gv_pLAYER_01_USER, AbilityCommand("ZergBuild", 0), true);
lv_hatcheryBuildTime = (SoundLengthSync(SoundLink(ConversationDataGetSound("zMission_Lab01|Line00027", true), c_soundIndexAny)) + SoundLengthSync(SoundLink(ConversationDataGetSound("zMission_Lab01|Line00015", true), c_soundIndexAny)) + SoundLengthSync(SoundLink(ConversationDataGetSound("zMission_Lab01|Line00180", true), c_soundIndexAny)));
lv_hatcheryBuildTime *= GameGetSpeed();
lv_hatcheryBuildTime += 4.0;
CatalogReferenceSet("Abil,ZergBuild,InfoArray[Build1].Time[0]", gv_pLAYER_01_USER, FixedToString(lv_hatcheryBuildTime, c_fixedPrecisionAny));