Skip to content

Commit 8a1a806

Browse files
committed
switch to random seeds, latest blitz results
1 parent bf425cc commit 8a1a806

File tree

2 files changed

+44
-3
lines changed

2 files changed

+44
-3
lines changed

main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
maybeGoodSeeds = [2, 31, 142, 157, 160, 172, 177, 182, 183, 200, 224, 254]
126126
rtaGoodSeeds = [160, 142, 34, 62, 210, 31, 159]
127127
favoriteSeedsSoFar = [31, 160]
128-
rngSeedNum = 31 # If you don't randomly select below, this will be the seed you run.
128+
rngSeedNum = 160 # If you don't randomly select below, this will be the seed you run.
129129
# TAS PB is on seed 31
130130
# 160 is WR for both categories, just has a bad start
131131
# Need review on the others
@@ -142,7 +142,7 @@
142142
blitzTesting = False
143143
#gameVars.setCSR(True)
144144
elif not seedHunt: # Full run starting from New Game
145-
#rngSeedNum = random.choice(range(256)) # Select a favorite seed randomly, overrules the set seed above.
145+
rngSeedNum = random.choice(range(256)) # Select a seed randomly, overrules the set seed above.
146146
#rngSeedNum = random.choice(rngSelectArray) # Select a favorite seed randomly, overrules the set seed above.
147147
#Current WR is on seed 160 for both any% and CSR%
148148
rngReviewOnly = False

oblitzRNG/results.json

Lines changed: 42 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,42 @@
1-
{"999": {"999": {"duration": 987, "victory": false}, "9999": {"duration": 987, "victory": false}}}
1+
{
2+
"999": {
3+
"999": {
4+
"duration": 999,
5+
"victory": false
6+
}
7+
},
8+
"31": {
9+
"1303288413": {
10+
"duration": 494,
11+
"victory": false
12+
},
13+
"819148150": {
14+
"duration": 670,
15+
"victory": false
16+
},
17+
"1604092182": {
18+
"duration": 431,
19+
"victory": true
20+
},
21+
"1619771589": {
22+
"duration": 501,
23+
"victory": false
24+
}
25+
},
26+
"160": {
27+
"792934679": {
28+
"duration": 452,
29+
"victory": true
30+
}
31+
},
32+
"56": {
33+
"141125788": {
34+
"duration": 550,
35+
"victory": true
36+
},
37+
"777968232": {
38+
"duration": 427,
39+
"victory": true
40+
}
41+
}
42+
}

0 commit comments

Comments
 (0)