Platy World Builder Question

miccal2000

Warlord
Joined
Sep 6, 2006
Messages
210
Hello!

In Platy World Builder 4.17B, how do I kill an entire civ? I want to remove a couple from a file I'm working on.

Thanks!

Chris
 
The fastest and easiest way is to edit the worldbuilder file in a text editor like notepad++. Reset the values for the civ in question in BeginTeam and BeginPlayer and save, and when you reload all their cities and units will be gone.
Save it again in worldbuilder to remove references everything else referencing them (you don't technically need to do this but it reduces the file size)
 
The fastest and easiest way is to edit the worldbuilder file in a text editor like notepad++. Reset the values for the civ in question in BeginTeam and BeginPlayer and save, and when you reload all their cities and units will be gone.
Save it again in worldbuilder to remove references everything else referencing them (you don't technically need to do this but it reduces the file size)

Dumb question: What exactly do you mean by reset the values? Could you please give me an example?

Thanks!
 
It should start something like this
Code:
BeginTeam
    TeamID=0
    Tech=TECH_FISHING
    Tech=TECH_THE_WHEEL
EndTeam
.
.
.
BeginPlayer
    Team=0
    LeaderType=LEADER_TRUMP
    LeaderName=Donald Trump
    CivDesc=United States of America
    CivShortDesc=America
    CivAdjective=American
    FlagDecal=Art/Interface/TeamColor/America.dds
    WhiteFlag=1
    CivType=CIVILIZATION_AMERICA
    Color=PLAYERCOLOR_BLUE
    ArtStyle=ARTSTYLE_EUROPEAN
    PlayableCiv=1
    MinorNationStatus=0
    StartingGold=97
    StartingX=105, StartingY=51
    StateReligion=
    StartingEra=ERA_MODERN
    RandomStartLocation=false
    CivicOption=CIVICOPTION_GOVERNMENT, Civic=CIVIC_DESPOTISM
    CivicOption=CIVICOPTION_LEGAL, Civic=CIVIC_BARBARISM
    CivicOption=CIVICOPTION_LABOR, Civic=CIVIC_TRIBALISM
    CivicOption=CIVICOPTION_ECONOMY, Civic=CIVIC_DECENTRALIZATION
    CivicOption=CIVICOPTION_RELIGION, Civic=CIVIC_PAGANISM
    CivicOption=CIVICOPTION_MILITARY, Civic=CIVIC_DESPOTISM
    Handicap=HANDICAP_NOBLE
EndPlayer

Change it to this
Code:
BeginTeam
    TeamID=0
    ContactWithTeam=0
    RevealMap=0
EndTeam
.
.
.

BeginPlayer
    Team=0
    LeaderType=NONE
    CivType=NONE
EndPlayer
 
Top Bottom