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.

Is it possible?

Requests for complete scripts or modifications/fixes for scripts you didn't write. Response not guaranteed, and no thread bumping!
Post Reply
A
ArthurPotter
Voice
Posts: 1
Joined: Fri Nov 24, 2023 4:20 am

Is it possible?

Post by ArthurPotter »

May I kindly ask for a new horoscope script? It seems that the Yahoo Horoscope for Eggdrop by FordLawnmower has ceased functioning. Thank you.
User avatar
CrazyCat
Revered One
Posts: 1241
Joined: Sun Jan 13, 2002 8:00 pm
Location: France
Contact:

Re: Is it possible?

Post by CrazyCat »

Probably, if you know a site providing horoscope in the language you need.
H
Henkie2
Voice
Posts: 34
Joined: Fri Sep 25, 2015 2:55 pm

Re: Is it possible?

Post by Henkie2 »

This one from incith still works after you change url input to this

https://tclarchive.org/search.php?str=i ... =0&sub.y=0

Code: Select all

    # valid, set our url
    set input(url) "http://www.astrology.com/horoscopes/daily-horoscope.rss"
    foreach sign [split ${incith::horoscope::en_chinese} " "] {
      if {$input(query) == $sign} {
        set input(url) "http://www.astrology.com/horoscopes/daily-chinese.rss"
        break
      }
    }
And update the ram and goat line to set it correct if you want

Code: Select all

    # ram or goat becomes sheep
    if {$input(query) == "ram" || $input(query) == "goat"} {
      set input(query) "sheep"
    }
Post Reply