Hello, I was wondering why my test battle-scenario doesn't show up in the load scenario menu. If I have the .eug file alone in a mod, then it just show the multi-player icon, and no scenario to select.
If I put another .eug file (one that I know works, such as the one from NWO 2, or the original DH Full,) then it simply makes a double of the working scenario. I've changed around the code quite a few times, and I was wondering why my scenario does not show up.
I wanted to keep it is simple as I could for now, but any help would be greatly appreciated.
If I put another .eug file (one that I know works, such as the one from NWO 2, or the original DH Full,) then it simply makes a double of the working scenario. I've changed around the code quite a few times, and I was wondering why my scenario does not show up.
PHP:
# American Civil War Battle Scenario
#Made by Ranoik
name = "American Civil War"
panel = "scenarios/data/scenario_acw.bmp"
header = {
startyear = { year = 1861 }
combat = yes
selectable = { USA CSA }
ENG = { }
FRA = { }
USA = { picture = "scenarios\data\propaganda_usa.bmp" desc = “USA Stuff” }
CSA = { picture = "scenarios\data\propaganda_csa.bmp" desc = “CSA Stuff” }
#Close Header
}
globaldata = {
startdate = { year = 1861 month = july day = 22 }
axis = { id = { type = 15000 id = 2 }
participant = { CSA }
}
allies = { id = { type = 15000 id = 1 }
participant = { USA }
}
comintern = { id = { type = 15000 id = 3 }
participant = { FRA ENG }
}
war = { id = { type = 9430 id = 4 }
date = { year = 1861 month = january day = 0 }
enddate = { year = 1861 month = january day = 0 }
attackers ={ id = { type = 9430 id = 5 }
participant = { CSA } }
defenders ={ id = { type = 9430 id = 6 }
participant = { USA } }
# End Global Data
}
map = {
no = all
###############################
# Victory points distribution #
###############################
###### United States : 51 #########################
yes = 1787 # Concord
yes = 1785 # Lewiston
yes = 1790 # Burlington
yes = 1794 # Watertown
yes = 1789 # Boston
yes = 1796 # Providence
yes = 1788 # Hartford
yes = 1793 # Albany
yes = 1792 # Syrucuse
yes = 1791 # Buffalo
yes = 1799 # Newburgh
yes = 1800 # Binghampton
yes = 1797 # Newark
yes = 1804 # Scranton
yes = 1803 # Williamsport
yes = 1798 # Warren
yes = 1824 # Erie
yes = 1805 # Philadelphia
yes = 1801 # Harrisburg
yes = 1802 # Atcana
yes = 1806 # Pittsburg
yes = 1808 # Baltimore
yes = 1807 # Cape Charles
yes = 1809 # Washington D.C. Capital
yes = 1825 # Cleaveland
yes = 1844 # Flint
yes = 1842 # Grand Rapids
yes = 1822 # Toledo
yes = 1821 # Columbus
yes = 1823 # cincinnati
yes = 1845 # Detriot
#West Virginia
yes = 1817 # Beckley
yes = 1874 # Seattle
yes = 1810 # Clakrsburg
###### United Kingdom : 11 #########################
yes = 2109 # Hamilton
yes = 2111 # Toronto
yes = 2113 # Pembroke
yes = 2108 # Ottawa Capital
yes = 2118 # Sherbrooke
yes = 1786 # Presque Isle
yes = 1784 # Bangor
yes = 2126 # Trios Riviere
yes = 2117 # Quebec
###### Empire of Mexico (France) : 9 #########################
yes = 1968 # Veracruz
yes = 1969 # Puebla de Zaragoza
yes = 1974 # Mexico City Capital
###### Confederate States of America : 21 #########################
yes = 1953 # Miami
yes = 1949 # Orlando
yes = 1948 # Tampa
yes = 1952 # Jacksonville
yes = 1951 # Tallahassee
yes = 1950 # Pensacola
yes = 1947 # Montgomery
yes = 1954 # Macon
yes = 1956 # Savannah
yes = 1959 # Augusta
yes = 1960 # Charleston
yes = 1946 # Birmingham, AL
yes = 1945 # Gadsden
yes = 1955 # Atlanta
yes = 1958 # Greenville
yes = 1964 # Asheville
yes = 1957 # Columbia
yes = 1963 # Wilmington
yes = 1962 # Charlotte
yes = 1961 # Raleigh
yes = 1812 # Norfolk
yes = 1818 # Roanoke
yes = 1815 # Danville
yes = 1813 # Richmond
yes = 1814 # Arlington
#Kentuky
yes = 1968 # Lexington
# Sea Zones
yes = 2339
yes = 2338
yes = 2341
yes = 2337
yes = 2340
yes = 2336
yes = 2320
yes = 2316
yes = 2319
yes = 2315
yes = 2321
yes = 2323
yes = 2325
yes = 2326
yes = 2327
#End Maps
}
# ###################
# Vp things
include = "scenarios\acw\vp.inc"
#Nation Things
include = "scenarios\acw\csa.inc"
include = "scenarios\acw\usa.inc"
#include = "scenarios\acw\mexico.inc"
include = "scenarios\acw\uk.inc"
include = "scenarios\acw\france.inc"
#Event Things
event = "scenarios\acw\acw_events.txt"
include = "scenarios\acw\province_development.inc"
include = "scenarios\acw\bases.inc"
I wanted to keep it is simple as I could for now, but any help would be greatly appreciated.