PDA

View Full Version : Forage for ANYTHING on Teras Isle



GSLadyGothique
05-22-2007, 09:53 AM
Here's a complete guide to the locations of every foragable on Teras Isle, Enjoy!


http://kharam-dzu.com/Forage.html

Celephais
05-22-2007, 09:59 AM
http://www.outdoorelanthia.com/maps/ cross referenced with http://www.krakiipedia.org/wiki/Foraging_locations for non-Teras...

If I might make a suggestion, instead of the "what's in this room" approach, a "highlight rooms that have suchandsuch" would be useful for those on bounties. Very nice though, good to have that info put together.

GSLadyGothique
05-22-2007, 10:12 AM
Well, I do run a web site dedicated completley to Teras Isle, and I do have posession of the Teras Herb tome, so it was only natural that I would make a guide for it.

I can do websites, but I couldnt figure out how to do the highlight thing, and my approach is a bit more unique than the others, since you get a full view of everything a room has. And it is seperated by bounty areas, I location mapped to distinguish exactly which rooms were part of what bounty area.

I'll upgrade it at some point after I learn how to, but for now I like it :)

*Oh and also, I didnt want to rip off Kthanks

Celephais
05-22-2007, 11:05 AM
Lol, wasn't asking you to rip it off or to make one for the other locations, I was informing other people who might really like what you just made, of another, not as nicely formatted, resource for herb finding bounties :)

From the looks of it I wouldn't say you're far off skill level wise from being able to have a list of all the herbs in a given location in say a panel that's always shown, and as they hover over a given room the herbs in that room get highlighted in the panel, and as you hover over herbs in the panel the rooms in that zone get highlighted... best of both worlds.

A simple approach would be to make the panel with each herb name inside a span with an ID and a Class, then to make a div for each room with style="display:none;". Then write a function "clearHighlights" which changes the className on each of the items in the list to "unhighlighted" and sets display='none' on each of the room divs, call this onMouseLeave for each room and herb. Then write a "highlightHerb" function that takes the ID of the herb to highlight and sets that span's className='highlighted', call this for each herb in a room with the "onMouseEnter" of each room. Another function "highlightRoom" that's the opposite, and called from the onMouseEnter of each herb.

It's a little manual (IE calling each herb from each room instead of maintaining an array list or the like), but it's not a lot of coding to wrap your head around.

(Please take this as just a suggestion, not even constructive critism; more me just thinking outloud, I definatly don't think there is anything wrong with what you've done, I think it's great).