Player.AddTemporaryDominanceZone (Civ5 API): Difference between revisions
From Civilization Modding Wiki
Jump to navigationJump to search
(Bot update) |
(No difference)
|
Latest revision as of 09:39, 20 September 2012
This page is a part of the Lua and UI Reference (Civ5).
This function is a member of Player. This is an instance method, invoke it with a colon. |
Usage
void Player:AddTemporaryDominanceZone(int arg0, int arg1)
Parameters
arg0: No description available. arg1: No description available.
Source code samples
TurnsRemaining.lua - DLC_04 DLC
DLC/DLC_04/Scenarios/1066Scenario/TurnsRemaining.lua
0579
|
player:AddTemporaryDominanceZone (41, 10); -- Chichester |
0581
|
player:AddTemporaryDominanceZone (36, 10); -- Wareham |
0583
|
player:AddTemporaryDominanceZone (30, 9); -- Exeter |
0629
|
player:AddTemporaryDominanceZone (49, 26); -- Norwich |
0631
|
player:AddTemporaryDominanceZone (49, 21); -- Ipswich |
0633
|
player:AddTemporaryDominanceZone (48, 13); -- Dover |
0677
|
player:AddTemporaryDominanceZone (33, 30); -- Chester |
0721
|
player:AddTemporaryDominanceZone (48,13); -- Dover |
0765
|
norway:AddTemporaryDominanceZone (40, 36); -- York |
TurnsRemaining.lua (G&K)
DLC/Expansion/Scenarios/FallOfRomeScenario/TurnsRemaining.lua
1662
|
Players[iPlayer]:AddTemporaryDominanceZone (48, 7); |
1706
|
Players[iPlayer]:AddTemporaryDominanceZone (71, 9); |
1750
|
Players[iPlayer]:AddTemporaryDominanceZone (68, 20); |
1794
|
Players[iPlayer]:AddTemporaryDominanceZone (49, 18); |
1834
|
Players[iPlayer]:AddTemporaryDominanceZone (54, 31); |
1875
|
Players[iPlayer]:AddTemporaryDominanceZone (49, 34); |
1916
|
Players[iPlayer]:AddTemporaryDominanceZone (45, 35); |
1957
|
Players[iPlayer]:AddTemporaryDominanceZone (75, 34); |
2001
|
Players[iPlayer]:AddTemporaryDominanceZone (78, 32); |
2045
|
Players[iPlayer]:AddTemporaryDominanceZone (17, 52); |
2089
|
Players[iPlayer]:AddTemporaryDominanceZone (22, 53); |
2135
|
Players[iPlayer]:AddTemporaryDominanceZone (26, 49); |
2179
|
Players[iPlayer]:AddTemporaryDominanceZone (32, 45); |
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.