PDA

View Full Version : Campaign Skipping 200 Years?



Eaglefirst
02-09-2006, 02:22
During My Pahlva campaign I ended turn on 247 bc only to find my game running extremely slow and the year to be 14 AD I tryed playing from 4 others saves and got the same bug any ideas what may be causing this? Thanks In Advance.

Cheexsta
02-09-2006, 03:08
This is a known issue, also referred to as the "Apocalypse Bug" - it is fixed in the next patch, from what we've been told. If you want to fix it yourself, go into the EBBS (the EB Background Script) in your data/scripts/show_me folder, and do a search for "console_command date 246" - if you read this and the next few lines, you'll see that there are some numbers that are out of order (don't know them from heart). Correct them and you won't get the bug any more.

PseRamesses
02-13-2006, 12:10
This is a known issue, also referred to as the "Apocalypse Bug" - it is fixed in the next patch, from what we've been told. If you want to fix it yourself, go into the EBBS (the EB Background Script) in your data/scripts/show_me folder, and do a search for "console_command date 246" - if you read this and the next few lines, you'll see that there are some numbers that are out of order (don't know them from heart). Correct them and you won't get the bug any more.
In "Ebbs script" I found theese:

console_command date -246
console_command season summer
while I_TurnNumber = 104
suspend_unscripted_advice true
end_while

console_command date -246
console_command season summer
while I_TurnNumber = 105
suspend_unscripted_advice true
end_while

console_command date -246
console_command season summer
while I_TurnNumber = 107
suspend_unscripted_advice true
end_while

console_command date -246
console_command season winter
while I_TurnNumber = 108
suspend_unscripted_advice true
end_while

...are they the ones that you refer too? Doesn´t seem screwed to me? Or do you refer to another text-file? If so which one?

LordElrond
02-13-2006, 17:22
Yes that's the right section. Here's where the problem is:


For people that don't know anything about modding it looks like this


Quote:
console_command date -246
console_command season summer
while I_TurnNumber = 105
suspend_unscripted_advice true
end_while

console_command date -246
console_command season summer
while I_TurnNumber = 107
suspend_unscripted_advice true
end_while

console_command date -246
console_command season winter
while I_TurnNumber = 108
suspend_unscripted_advice true
end_while

console_command date -245
console_command season summer
while I_TurnNumber = 109
suspend_unscripted_advice true
end_while

console_command date -245
console_command season summer
while I_TurnNumber = 109
suspend_unscripted_advice true
end_while

console_command date -245
console_command season summer
while I_TurnNumber = 110
suspend_unscripted_advice true
end_while



And should look like this



Quote:
console_command date -246
console_command season summer
while I_TurnNumber = 105
suspend_unscripted_advice true
end_while

console_command date -246
console_command season summer
while I_TurnNumber = 106
suspend_unscripted_advice true
end_while

console_command date -246
console_command season winter
while I_TurnNumber = 107
suspend_unscripted_advice true
end_while

console_command date -245
console_command season summer
while I_TurnNumber = 108
suspend_unscripted_advice true
end_while

console_command date -245
console_command season summer
while I_TurnNumber = 109
suspend_unscripted_advice true
end_while

console_command date -245
console_command season summer
while I_TurnNumber = 110
suspend_unscripted_advice true
end_while