the title says it all. I'm trying to make an battlescenario from scrach but it just freezes when I click singleplayer. I got the debug on but it's doesn't say anything.
what would make it freeze?
Here is the code to check out(you can give me tips and tutorials. I am using the tutorial from HOI2wiki):
(yes I am making a red alert mod. I just want to check stuff out.)
what would make it freeze?
Here is the code to check out(you can give me tips and tutorials. I am using the tutorial from HOI2wiki):
Code:
name = "RED ALERT 1: THE FIRST RED WAR"
panel = "scenarios/data/scenario_1914.bmp"
header =
{ name = "THE FIRST RED WAR"
startdate = { year = 1943 }
free = no
combat = yes
SOV = { picture = "scenarios\data\SOV_RA1.bmp" bottom = yes desc = SOV_RED1}
ALS = { desc = ALS_RED1 picture = "scenarios\data\ALS_RA1.bmp}
}
globaldata = {
rules = { diplomacy = yes
production = yes
technology = yes
}
startdate = { year = 1943 month = january day = 0 }
enddate = { year = 1953 month = january day = 21 }
axis = {
id = { type = 15000 id = 2 }
participant = { }
}
allies =
{ id = { type = 15000 id = 1 }
participant = { ALS }
}
comintern =
{ id = { type = 15000 id = 3 }
participant = { SOV }
}
map = { no = all
#GB
yes = 2
yes = 4
yes = 5
yes = 6
yes = 7
yes = 8
yes = 9
yes = 10
yes = 11
yes = 12
yes = 13
yes = 14
yes = 15
yes = 16
yes = 17
yes = 18
yes = 19
yes = 20
yes = 21
yes = 22
yes = 23
yes = 24
yes = 25
yes = 26
yes = 27
yes = 28
yes = 29
yes = 30
yes = 31
yes = 32
yes = 33
yes = 34
yes = 35
yes = 36
#France
yes = 37
yes = 38
yes = 39
yes = 40
yes = 41
yes = 42
yes = 43
yes = 44
yes = 45
yes = 46
yes = 47
yes = 48
yes = 49
yes = 50
yes = 51
yes = 52
yes = 53
yes = 54
yes = 55
yes = 56
yes = 57
yes = 58
yes = 59
yes = 60
yes = 61
yes = 62
yes = 63
yes = 64
yes = 65
yes = 66
top = { x = 13904 y = 1912 }
bottom = { x = 15736 y = 3772 }
}
# ########################### ALS-SOV NAP (used to prevent an early war but a event will appear to start it.) ############################
treaty =
{ id = { type = 16384 id = 1 }
type = non_aggression
country = "SOV"
country = "ALS"
startdate = { year = 1942 month = december day = 30 }
expirydate = { year = 1946 month = december day = 30 }
}
}
# ###################
# Includes for global data
#include = "db\events.txt"
# Victory points distribution
include = "scenarios\RED_WAR_1\vp.inc"
# Include files for each country tag used in the scenario
include = "scenarios\RED_WAR_1\soviet union.inc"
#include = "scenarios\RED_WAR_1\Allied Forces.inc"
#include = "scenarios\RED_WAR_1\bases.inc"
(yes I am making a red alert mod. I just want to check stuff out.)