Player.GetCurrentEra (Civ5 API)

From Civilization Modding Wiki
Revision as of 07:58, 20 September 2012 by DonQuich (talk | contribs) (Bot update)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

This page is a part of the Lua and UI Reference (Civ5).


Function.png This function is a member of Player.

This is an instance method, invoke it with a colon.


Usage

EraType Player:GetCurrentEra()


Returned Value

No description available.


Source code samples

Redundant occurences have been removed.

AdvisorCounselPopup.lua

UI/InGame/Popups/AdvisorCounselPopup.lua
0263
local currentEra = player:GetCurrentEra();


DiploGlobalRelationships.lua

UI/InGame/Popups/DiploGlobalRelationships.lua
0071
local iEra = pOtherPlayer:GetCurrentEra();


EspionageOverview.lua (G&K)

DLC/Expansion/UI/InGame/Popups/EspionageOverview.lua
0283
local bUseModern = activePlayer:GetCurrentEra() > g_RenaissanceEraType;


ReligionOverview.lua (G&K)

DLC/Expansion/UI/InGame/Popups/ReligionOverview.lua
0440
if (player:GetCurrentEra() < GameInfo.Eras["ERA_INDUSTRIAL"].ID) then


SaveMenu.lua

UI/InGame/Menus/SaveMenu.lua
0073
PreGame.GetLeaderName(iPlayer),PreGame.GetCivilizationDescription(iPlayer), Players[iPlayer]:GetCurrentEra(), PreGame.GetGameType() );
0196
PreGame.GetLeaderName(iPlayer), PreGame.GetCivilizationDescription(iPlayer), Players[iPlayer]:GetCurrentEra(), PreGame.GetGameType() );


TopPanel.lua (G&K)

DLC/Expansion/UI/InGame/TopPanel.lua
0966
if (pPlayer:GetCurrentEra() >= GameInfo.Eras["ERA_INDUSTRIAL"].ID) then


TutorialChecks.lua

Tutorial/TutorialChecks.lua
2613
if (pPlayer:GetCurrentEra() == 3) then



The initial version of this page was created by the Civ5 API Bot, see the Civ5 API Reference FAQ. Some of the texts come from the 2kgames' wiki and most of code samples are copyrighted to Firaxis.
Functions' signatures were either copied from the 2kgames' wiki, or infered from the Lua source files and the binaries. Errors are possible.
Contributors may find help in the Contributors guide to the Civ5 API.