Function adventurer_print_link($advid)
{
$connection = mysql_connect("localhost","root","") or die("NO SERVER");
mysql_select_db("aq") or die("Unable to select database");
$query = "SELECT url FROM characters where id=$advid";
$result = mysql_query($query) or die("Query failed");
$link = mysql_result($result,0,"url");
mysql_close($connection);
print("$link");
}
Function adventurer_get_link($advid)
{
$connection = mysql_connect("localhost","root","") or die("NO SERVER");
mysql_select_db("aq") or die("Unable to select database");
$query = "SELECT url FROM characters where id=$advid";
$result = mysql_query($query) or die("Query failed");
$link = mysql_result($result,0,"url");
mysql_close($connection);
return $link;
}
Function adventurer_new($adv_name, $adv_player, $adv_link, $adv_blurb)
{
$connection = pg_connect("localhost","5432","aq");
$query = "INSERT INTO characters VALUES (nextval('adventurer_sequence'::text),'$adv_name','$adv_player','$adv_link','$adv_blurb')";
$result = pg_exec($connection, $query);
pg_close($connection);
}
Function adventurer_flist()
{
$connection = pg_connect("localhost","5432","aq");
$query = "SELECT adv_name,adv_link,adv_blurb,advid FROM characters ORDER BY adv_name";
$result = pg_exec($connection, $query);
for ($row=0; $row < pg_NumRows($result); $row++) {
if (strcmp(pg_result($result,$row,1),"NONE")) {
printf("%s (%s)- %s
\n",
pg_result($result,$row,1), pg_result($result,$row,0),
pg_result($result,$row,3), pg_result($result,$row,2));
}
else {
printf("%s (%s) - %s
\n",
pg_result($result,$row,0),pg_result($result,$row,3),
pg_result($result,$row,2));
}
}
pg_close($connection);
}
?>
Function actor_print_link($advid)
{
$connection = mysql_connect("localhost","root","") or die("NO SERVER");
mysql_select_db("aq") or die("Unable to select database");
$query = "SELECT url FROM actors where id=$advid";
$result = mysql_query($query) or die("Query failed");
$link = mysql_result($result,0,"url");
mysql_close($connection);
print("$link");
}
Function actor_get_link($advid)
{
$connection = mysql_connect("localhost","root","") or die("NO SERVER");
mysql_select_db("aq") or die("Unable to select database");
$query = "SELECT url FROM actors where id=$advid";
$result = mysql_query($query) or die("Query failed");
$link = mysql_result($result,0,"url");
mysql_close($connection);
return $link;
}
Function actor_new($actor_name, $actor_player, $actor_link, $actor_blurb)
{
$connection = pg_connect("localhost","5432","aq");
$query = "INSERT INTO actors VALUES (nextval('actor_sequence'::text),'$actor_name','$actor_player','$actor_link','$actor_blurb')";
$result = pg_exec($connection, $query);
pg_close($connection);
}
Function actor_flist()
{
$connection = pg_connect("localhost","5432","aq");
$query = "SELECT actor_name,actor_link,actor_blurb,advid FROM actors ORDER BY actor_name";
$result = pg_exec($connection, $query);
for ($row=0; $row < pg_NumRows($result); $row++) {
if (strcmp(pg_result($result,$row,1),"NONE")) {
printf("%s (%s)- %s
\n",
pg_result($result,$row,1), pg_result($result,$row,0),
pg_result($result,$row,3), pg_result($result,$row,2));
}
else {
printf("%s (%s) - %s
\n",
pg_result($result,$row,0),pg_result($result,$row,3),
pg_result($result,$row,2));
}
}
pg_close($connection);
}
?>
December 04, 2004
| Game Start Date |
07/01/10044 |
| Game End Date |
|
| Game Master |
Krystal Tyler |
|
Adventurers
|
Daglon
Selina
Darnell
Riot
Hawke
Dom Foran
Roy
Aloofa
|
| Actors |
|
| Locations |
|
Hook
Adventurers wanted to investigate mysterious happenings at the Portal Farm. Meet Erle at the Stopover Inn at noon.
Plot Synopsis
In the past week, one person has been injured and two more disappeared without a trace. Erle, a retired T’orite (and a very incompetent old guy, at that) was ordered to figure out if the occurrences were related and try to stop them, if possible.
After the party ekes out as much info as possible from the senile old man, they visit the families of the people who were injured/lost. Selina had some fun bluefielding the party at one point, delaying the investigation for a whole day. After discovering that the injured guy was probably doing some less-than-savory activity down an alleyway (and that he appeared to have been attacked by a creature of some sort), they travel to that section of town to try to find clues. One party member spots a large but dirty and matted navy blue feather on the ground.
They then decide to visit some friends of one of the guys who disappeared, while Dom and Hawke go randomly searching the town. Hawke manages to “find” the creature doing the attacking, is paralyzed, and is carried/dragged through an unguarded portal. The party later discovers that Hawke has disappeared, and Dom discovers Hawke’s and a weird bird scent through the doorway of a seemingly-abandoned portal. They go through, finding themselves on a desert world. A shadow drako search begins.
In the meantime, Hawke is flown to the bird’s nest. Thankfully, it’s still daytime, and the creature waits until darkness to feed the chick. Hawke manages to behead the bird before he becomes dinner, and the party rescues him just as the bird’s mate returns to the nest. After a brief combat with the mate, the party leaves.