PDA

View Full Version : ZIP Code in PFG


Electric_Menace
04-07-2006, 09:59 PM
Does anyone know what format does the ZIP CODE go in, in the PFG.

Decimal or Hex.
Whenever I put my zip code in Jeepers shows it with a 0 in front so I am assuming its hex but please confirm.
THX

Electric_Menace
04-10-2006, 05:32 PM
I take it this is a stupid post.
MY guide is still messed up. One hour late. The daylight savings is off.
I tried putting it in both ways hex and dec but it is still wrong.
Why does jeepers replace the first digit of the zip code with a zero?

Agentuer
04-10-2006, 06:21 PM
Zip code does nothing in Jeepers. Zero it out. To adjust your time use the time zone field.

Electric_Menace
04-11-2006, 04:29 PM
I did. I have the correct zone but my guide is an hour behind. It never took that recent clock change.

rykrishell
04-11-2006, 07:49 PM
I did. I have the correct zone but my guide is an hour behind. It never took that recent clock change.

Same here :rolleyes:

Electric_Menace
04-11-2006, 07:55 PM
your time zone should be F0 not EC. find the switch time zone statement in pfg and replace EC with F0.
EC - EST
F0 - EST + Daylight Savings

udntcme
04-12-2006, 02:12 AM
Blackout string....?

udntcme
04-12-2006, 02:17 AM
You should be able to select your "Time/zone" form the jeepers progie.

Electric_Menace
04-12-2006, 04:33 PM
yea you can but it is wrong.
Jeepers doesn't take into account daylight savings time.
Like Indian doesn't have it and its in eastern while Ohio has it and it is also eastern.
So, unless somebody adds that check flag in the Jeepers you have to modify what value is written based on selection in jeepers.

Just look for this
Switch Time Zone

Case ADT:
SetImageByte(EEP, 00DB, F4)
Case AKST:
SetImageByte(EEP, 00DB, DC)
Case AST/EDT:
SetImageByte(EEP, 00DB, F0)
Case CST/MDT:
SetImageByte(EEP, 00DB, E8)
Case EST/CDT:
SetImageByte(EEP, 00DB, EC) <------That EC needs to be F0
Case HDT:
SetImageByte(EEP, 00DB, DA)
Case HST:
SetImageByte(EEP, 00DB, D8)
Case MST/PDT:
SetImageByte(EEP, 00DB, E4)
Case NDT:
SetImageByte(EEP, 00DB, F6)
Case NST:
SetImageByte(EEP, 00DB, F2)
Case PST/AKDT:
SetImageByte(EEP, 00DB, E0)
End Switch

or you can simply select the AST/EDT zone.

here is the c&p from a post


Zone: Standard / Daylight Savings

Hawaii: Standard=D8 DaylightSavings=DC
Alaska: Standard=DC DaylightSavings=E0
Newfoundland: (NST/NDT) Standard=F6 DaylightSavings=F2
Pacific: (PST/PDT) Standard=E0 DaylightSavings=E4
Mountain: (MST/MDT) Standard=E4 DaylightSavings=E8
Atlantic: (AST/ADT) Standard=F0 DaylightSavings=F4
Central: (CST/CDT) Standard=E8 DaylightSavings=EC
Eastern: (EST/EDT) Standard=EC DaylightSavings=F0