Which shell are you using? bash? csh? zsh? each shell has a different way of setting timezone afaik. Also, timezone is usually a variable recognized by applications (I just checked the entire bash manpage for any timezone relevant variables, and found none, so apparently bash only cares about the system time, but you can also use strftime to set your prompt for a specific locale, for example.) Did a quick check of eggdrop's docs and don't see any timezone related env. vars listed there either..
A quick google search for 'freebsd timezone' brought up:
also i guess i forgot to mention that i do not have root and i already asked them if they could change the timezone for my shell only but they said that the change would be system wide and they wouldnt do it for me
Last edited by wac on Thu Aug 30, 2007 12:30 am, edited 1 time in total.
# This setting defines the timezone is your bot in. It's used for internal
# routines as well as for logfile timestamping and scripting purposes.
# The timezone string specifies the name of the timezone and must be three
# or more alphabetic characters. For example, Central European Time(UTC+1)
# should be "CET".
set timezone "EST"
# The offset setting specifies the time value to be added to the local
# time to get Coordinated Universal Time (UTC aka GMT). The offset is
# positive if the local timezone is west of the Prime Meridian and
# negative if it is east. The value (in hours) must be between -23 and
# 23. For example, if the timezone is UTC+1, the offset is -1.
set offset "5"
# If you don't want to use the timezone setting for scripting purposes only,
# but instead everywhere possible, un-comment the following line.
#set env(TZ) "$timezone $offset"