This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

Murph's weather script

Old posts that have not been replied to for several years.
Locked
m
mhochman

Murph's weather script

Post by mhochman »

Anyone else been having a problem with Murph's weather.tcl (3.3.2) it does European Addys fine, but the US ones are coming back with empty data.

I saw that this has happened before, and was wondering if anyone else is having this problem, or has heard from murph? i emailed him but got no reply.
b
burn_inhale

Post by burn_inhale »

yup im haveing the same problem i went into the tcl and changed the website url to the fully addy and it still doesnt work. really driving me nuts.
b
burn_inhale

Post by burn_inhale »

hey i found someone who knew what was wrong with this script.

while {[string first Updated $wzout] == -1 && $i < 1000} {

this is the problem with the code. its searching the first 1000 lines but the data it needs to work properly was moved to line 1300 or so. so its pulling up no data.

while {[string first Updated $wzout] == -1 && $i < 1500} {

this should make it work properly again.

thanks to my friend Interlude for helping me fix it
Locked