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);
}
?>
October 23, 2003
| Game Start Date |
|
| Game End Date |
|
| Game Master |
Joel Gunerson |
|
Adventurers
|
Oka-Bunta
Beso Arensley
Daglon
Sten
Fred
Pastor Tonsils
|
| Actors |
|
| Locations |
Brass Gnome (in Port Haven)
Port Haven
|
Hook
Plot Synopsis
The party responded to a request to meet at the Brass Gnome in Port
Haven by a representative of the governing body in Port Haven. They
were charged with going to a house in the merchant quarter of the city
to perform surveillance on a new guild that is attempting to establish a
foothold in Port Haven. After a meeting with the representative, the
party was outfitted in clothing appropriate to the current style in the
city (the Platinum Draconian had a phantasmal transmog cast on him for
disguise purposes) and set free to enact their plans. There were rooms
arranged at the Brass Gnome. Beso, Daglon, and Fred managed to attract
the attention of a recruiter at a pit fight in a bar in the docks
district. The went to a meeting with the recruiter, given new lodgings
and an assignment to extort a shopkeeper. After the meeting their real
employers (that gave them the original mission) became apparent and they
fled the city. If they set foot in Port Haven again they will be
spotted within a day (please find me if this happens). Sten attempted
to make a scene in the streets and get mugged, but he just couldn't seem
to attract any would-be assailants. Oka-Bunta attempted to break into
the guild but his guile was matched by the thieves that were hiding
invisible on the rooftops nearby. They captured him; upon his capture
they dispelled the disguise and took his body. He was given the body of
a lower-level servant and set free. He attempted to return to get the
guild to hire him, but they told him they had the best of what he could
offer and attacked him until he ran. Pastor Tonsils, through the use of
some spells, was able to break into the house, get a decent idea of the
layout, steal some papers, and barely escape after losing his
invisibility and being spotted.