Welcome to Gaia! :: View User's Journal | Gaia Journals

 
 

View User's Journal

Report This Entry Subscribe to this Journal
User Image - Blocked by "Display Image" Settings. Click to show.
Slow
I've been working on my shop here in Aeka, selling a little bit of this and that. I'm doing much better money wise since I've moved. I guess it's because I'm in a big city now and not the island anymore. Although i do miss the island, I miss my family but I hear they're doing well.

I went back to the island a short while ago to help out after the disaster. There was a lot of smoke and it was hard to breathe, especially when we're moving heavy pieces of rubble to clean up. A few people were injured, some killed. One of my old childhood friends had been caught near ground zero. Her family had slowly worked to saving money for a house close to Gambino. After the Halloween incident and he rebuilt...they moved right near the mansion. But, in the recent disaster...they died. The whole family.

Everyone here in Aeka is kind of anxious to hear any news about the destruction. News here is sort of hard to come by, which is the hardest part for me since it's my first time away from home.


Siri_DuNoir
Community Member
  • [10/08/06 07:47pm]
  • [10/07/05 04:13pm]
  • [07/23/05 08:46pm]
  • [04/24/05 03:02pm]
  • [02/27/05 09:15pm]
  • [02/16/05 10:40pm]
  • [01/06/05 02:44pm]
  • [12/16/04 10:44pm]
  • [12/15/04 01:38am]
  • [12/10/04 11:19pm]


  • User Comments: [1]
    You did not accept PM's from non-friends, so here is the information you requested: [quote="Siri_DuNoir"]You did an image map for me and I was wondering if you could somehow send me the files. My host has PHP and I'm attmepting to set it up there in case I want to ever edit it. That way I won't have to bother you with it.[/quote] name this one: map.php since that is easy.[code]<?PHP /* Gaia Image Map Go-er Rudolph J Heuser */ require_once("imagemap.php"); // new imageMap $myImageMap = new imageMap(); // define regions // quest $area = new Rect(0,0,119,25,"http://www.gaiaonline.com/forum/viewtopic.php?t=4475015"); $myImageMap->addToMap($area); // guild $area = new Rect(120,0,190,25,"http://www.gaiaonline.com/forum/guilds/index.php?page_mode=4&guild_id=1658 "); $myImageMap->addToMap($area); // shop $area = new Rect(191,0,317,25,"http://www.gaiaonline.com/forum/viewtopic.php?t=4522310&highlight="); $myImageMap->addToMap($area); $myImageMap->setDefaultURL("http://www.gaiaonline.com/forum/viewtopic.php?pt=1105586329&p=267018276#267018276 "); // capture X and Y from query string $x_and_y = $_SERVER["QUERY_STRING"]; $x_and_y = explode(",",$x_and_y); $inX = $x_and_y[0]; $inY = $x_and_y[1]; unset($x_and_y); // echo $inX. "," . $inY; $myImageMap->testMap($inX, $inY); ?>[/code] name this one imagemap.php[code]<?PHP // Gaia Sig Mapper // Regions are Defined By Rect Normally // Jakobo @ Gaia Online // Class Definition // This is responsible for the definition of coordinates class imageMap { var $locale, $defaultURL, $size; function imageMap() { // makes locale ready for data $this->locale = array(); $this->size = 0; } function setDefaultURL($inUrl) { $this->defaultURL = $inUrl; } function addToMap($Region) { $this->locale[$this->size] = $Region; $this->size++; } function testMap($inX, $inY) { foreach($this->locale as $Region) { $Region->goIfInside($inX, $inY); } // we didn't go anywhere, load the default header("Location: " . $this->defaultURL); } } class Region { var $type, // type of region $url; // url of region function Region() { // empty constructor } } class Rect extends Region { var $x1, $y1, $x2, $y2; function Rect($inX1, $inY1, $inX2, $inY2, $inUrl) { $this->x1 = $inX1; $this->y1 = $inY1; $this->x2 = $inX2; $this->y2 = $inY2; $this->url = $inUrl; $this->type = "rect"; } function isInside($clickedX = -1, $clickedY = -1) { // if X and Y are not set, -1 is used // placing it outside of the image map if(($clickedX >= $this->x1 && $clickedX <= $this->x2) && ($clickedY >= $this->y1 && $clickedY <= $this->y2) ) { return true; } else { return false; } } function goIfInside($clickedX = -1, $clickedY = -1) { // goes to object's URL if inside if($this->isInside($clickedX, $clickedY)) { header("Location: " . $this->url); exit; } } } ?>[/code] Do not forget to save the files as .php. ^^;; You can always PM me if you need aid.

    comment Aldo · Community Member · Fri Sep 16, 2005 @ 09:07pm
    User Comments: [1]

     
     
    Manage Your Items
    Other Stuff
    Get GCash
    Offers
    Get Items
    More Items
    Where Everyone Hangs Out
    Other Community Areas
    Virtual Spaces
    Fun Stuff
    Gaia's Games
    Mini-Games
    Play with GCash
    Play with Platinum