Author |
Topic |
|
Kagan
Starting Member
33 Posts |
Posted - 20 July 2003 : 15:37:24
|
Hi Everyone! Just installed the forum and it rocks! I am very happy already and have only been toying for about 24 hours. I do have a question. I am going to be running a gaming forum where people post thier turn each day. They need to be able to roll dice for many of these turns. It would be extremely helpful if there were a way to add these rolls right to the posts so that they dont have to do it offline with dice, and it prevents cheating. We use sided dice as follows: d2, d4, d6, d8, d10, d12, d20, d30, d100. They would need to tell the code how many times to roll each die as well. If anyone has any ideas it would be hugely appreciated. Not looking for a freebie here(although I would never turn it down hehe) just more curious at the moment if its even possible. Again thanks for any help! Kagan |
|
altisdesign
Junior Member
United Kingdom
357 Posts |
Posted - 20 July 2003 : 15:50:45
|
Yes that wood not be hard to do.. I'll look up some specific code samples and post them here in a few minutes |
Altis Design offers all manner of web design services to a variety of commercial and personal clients |
|
|
altisdesign
Junior Member
United Kingdom
357 Posts |
Posted - 20 July 2003 : 15:57:57
|
By D2, D4 etc. I assume you mean that the dice has that many sides eg. so d2 can have values 1 or 2, d100 can have any value between 1 and 100 etc.
You can use the ASP Rnd() command with Randomize to generate the random numbers. You would need to generate them within a set range. The documentation for this function can be found here: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/script56/html/vsfctrnd.asp - they would need to be generated within a set range. This can be accomplished using the following script:
Int((upperbound - lowerbound + 1) * Rnd + lowerbound)
For example - the D100:
<%
Randomize
d100result = Int((100 - 1 + 1) * Rnd + 1)
%>
That generates you a random number between 1 and 100 to the variable d100result which then you could put in the database, append to a topic, write to the user etc. as required. This simulates a dice, which I assume is what you want. The same sort of idea can be used to simulate multiple dice rolls:
For example - the D100 rolled 100 times:
<%
Do Until count>100
Randomize
d100result = Int((100 - 1 + 1) * Rnd + 1)
response.write (d100result & "<BR>")
count = count+1
loop
%>
This code would write out 100 random dice rolls, simulating you rolling a dice 100 times, separated by the line break <BR>. The count variable maximum value can be set to a variable as well, so you could change how many times the dice would be rolled. Also with this example this could be inserted into the database etc. as required to do what you want to do .
Hope some of these examples help you -Altis Design
|
Altis Design offers all manner of web design services to a variety of commercial and personal clients |
Edited by - altisdesign on 20 July 2003 15:58:18 |
|
|
dpmcalister
Junior Member
United Kingdom
161 Posts |
Posted - 20 July 2003 : 17:30:50
|
quote: By D2, D4 etc. I assume you mean that the dice has that many sides eg. so d2 can have values 1 or 2, d100 can have any value between 1 and 100 etc.
That's correct, yes.
Thanks for the code examples. I know I didn't request them, but I run a game via my forum as well, so they're very useful |
|
|
Kagan
Starting Member
33 Posts |
Posted - 20 July 2003 : 19:11:58
|
I actually have the code already set up from another website I play on-its setup to post thru php. I am not sure how to edit it exactly, but more importantly I am not exactly sure WHERE to put it in the forum code to get it to appear. If anyone wants a look i can supply the code with the dice rollers already in place. Dave if you need it let me know!
|
|
|
Kagan
Starting Member
33 Posts |
Posted - 20 July 2003 : 23:11:50
|
Was just browsing each asp as i came to it-not seeing where exactly to alter where the actual post is made. I looked under the post ones but if its there I am missing it completely. I am not seeing any options on where you can input new fields. |
|
|
Kagan
Starting Member
33 Posts |
Posted - 23 July 2003 : 19:43:01
|
I have further experimented with the code. I didnt get a definite from anyone where the code should be altered. I chose to experiment in the topic.asp file and add the dice roller to the quick reply field. That is where I want my online gamers to post is using that. I took the code from another site and have put it in the reply field the way I want but I cannot get the roller to put the rolls in the prepared field properly. I KNOW this is due to the fact I am struggling with how to alter the form fields. Any help on this would be appreciated. I guess my problem is two-fold: Should I be altering the code on topic.asp or elsewhere, and Is anyone willing to take a look at this and see if there is hope for this code or offer suggestions? Thanks so much!
Topic.asp <html>
<head> <title>Harvester's Heroes - Temple of Elemental Evil</title> <meta name="copyright" content="This Forum code is Copyright (C) 2000-02 Michael Anderson, Pierre Gorissen, Huw Reddick and Richard Kinser, Non-Forum Related code is Copyright (C) 2000-02 Snitz Communications"> <script language="JavaScript" type="text/javascript"> <!-- hide from JavaScript-challenged browsers function openWindow(url) { popupWin = window.open(url,'new_page','width=400,height=400') } function openWindow2(url) { popupWin = window.open(url,'new_page','width=400,height=450') } function openWindow3(url) { popupWin = window.open(url,'new_page','width=400,height=450,scrollbars=yes') } function openWindow4(url) { popupWin = window.open(url,'new_page','width=400,height=525') } function openWindow5(url) { popupWin = window.open(url,'new_page','width=450,height=525,scrollbars=yes,toolbars=yes,menubar=yes,resizable=yes') } function openWindow6(url) { popupWin = window.open(url,'new_page','width=500,height=450,scrollbars=yes') } function openWindowHelp(url) { popupWin = window.open(url,'new_page','width=470,height=200,scrollbars=yes') } // ################## Poll Mod ################## function openPollWindow(url,w,h) { popupWin = window.open(url,'new_page','width='+w+',height='+h+',scrollbars=yes') } function submitPoll(btnPressed) { btnPressed.disabled=true; if (btnPressed.name == "results") { document.Poll.Method_Type.value = "guest_vote"; } else { document.Poll.Method_Type.value = "member_vote"; } document.Poll.submit(); } // ############################################# // done hiding --> </script> <style type="text/css"> <!-- a:link {color:009999;text-decoration:underline} a:visited {color:339999;text-decoration:underline} a:hover {color:FF0000;text-decoration:underline} a:active {color:FF0000;text-decoration:none} .spnMessageText a:link {color:0000CC;text-decoration:underline} .spnMessageText a:visited {color:blue;text-decoration:underline} .spnMessageText a:hover {color:red;text-decoration:underline} .spnMessageText a:active {color:red;text-decoration:underline} .spnSearchHighlight {background-color:yellow} input.radio {background:F9F9F9;color:#000000} --> </style> </head>
<body background="http://www2.go-concepts.com/~malachi/images/parchment.gif" bgColor="003333" text="A9A9A9" link="009999" aLink="FF0000" vLink="339999"> <a name="top"></a><font face="Verdana, Arial, Helvetica">
<table align="center" border="0" cellPadding="0" cellSpacing="0" width="100%"> <tr> <td valign="top" width="50%"><a href="default.asp" tabindex="-1"><img src="http://www2.go-concepts.com/~malachi/images/Banner.jpg" border="0" alt="Harvester's Heroes" title="Harvester's Heroes" /></a></td> <td align="center" valign="top" width="50%"> <table border="0" cellPadding="2" cellSpacing="0"> <tr> <td align="center"><font face="Verdana, Arial, Helvetica" size="1"><b>Harvester's Heroes</b></font></td> </tr> <tr> <td align="center"><font face="Verdana, Arial, Helvetica" size="1"> <a href="HarvestersHeroes.com" onMouseOver="(window.status='Homepage'); return true" onMouseOut="(window.status=''); return true" tabindex="-1"><acronym title="Homepage">Home</acronym></a> | <a href="pop_profile.asp?mode=Edit" onMouseOver="(window.status='Edit your personal profile...'); return true" onMouseOut="(window.status=''); return true" tabindex="-1"><acronym title="Edit your personal profile...">Profile</acronym></a> | <a href="policy.asp" onMouseOver="(window.status='Register to post to our forum...'); return true" onMouseOut="(window.status=''); return true" tabindex="-1"><acronym title="Register to post to our forum...">Register</acronym></a> | <a href="active.asp" onMouseOver="(window.status='See what topics have been active since your last visit...'); return true" onMouseOut="(window.status=''); return true" tabindex="-1"><acronym title="See what topics have been active since your last visit...">Active Topics</acronym></a> | <a href="active_polls.asp" onMouseOver="(window.status='See all the active polls...'); return true" onMouseOut="(window.status=''); return true" tabindex="-1"><acronym title="See all the active polls...">Active Polls</acronym></a> | <a href="members.asp" onMouseOver="(window.status='Current members of these forums...'); return true" onMouseOut="(window.status=''); return true" tabindex="-1"><acronym title="Current members of these forums...">Members</acronym></a> | <a href="search.asp" onMouseOver="(window.status='Perform a search by keyword, date, and/or name...'); return true" onMouseOut="(window.status=''); return true" tabindex="-1"><acronym title="Perform a search by keyword, date, and/or name...">Search</acronym></a> | <a href="faq.asp" onMouseOver="(window.status='Answers to Frequently Asked Questions...'); return true" onMouseOut="(window.status=''); return true" tabindex="-1"><acronym title="Answers to Frequently Asked Questions...">FAQ</acronym></a></font></td> </tr> <form action="/cgi-bin/sf2k_v34_03/topic.asp" method="post" id="form2" name="form2"> <input type="hidden" name="Method_Type" value="logout"> <tr> <td align="center"> <table> <tr> <td align="center"><font face="Verdana, Arial, Helvetica" size="1">You are logged on as<br /><b>kagan</b></font></td> <td><input src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/button_logout.gif" type="image" border="0" value="Logout" id="submit1" name="Logout" tabindex="-1"></td> </tr> </table> </td> </tr> <tr> <td align="center"><font face="Verdana, Arial, Helvetica" size="1"><a href="admin_home.asp" onMouseOver="(window.status='Access the Forum Admin Functions...'); return true" onMouseOut="(window.status=''); return true" tabindex="-1">Admin Options</a><br /><br /></font></td> </tr> </form> </table> </td> </tr> </table> <table align="center" border="0" cellPadding="0" cellSpacing="0" width="95%"> <script language="JavaScript" type="text/javascript"> <!----- function jumpTo(s) {if (s.selectedIndex != 0) location.href = s.options[s.selectedIndex].value;return 1;}
// --> </script> <tr> <td> <script language="JavaScript" type="text/javascript"> <!-- function unsub_confirm(link){ var where_to= confirm("Do you really want to Unsubscribe?"); if (where_to== true) { popupWin = window.open(link,'new_page','width=400,height=400') } } //--> </script> <script language="JavaScript" type="text/javascript"> function ChangePage(fnum){ if (fnum == 1) { document.PageNum1.submit(); } else { document.PageNum2.submit(); } } </script> <script language="JavaScript" type="text/javascript"> <!-- function jumpTo(s) {if (s.selectedIndex != 0) location.href = s.options[s.selectedIndex].value;return 1;} // --> </script> <table border="0" width="100%"> <tr> <td width="50%" align="left" nowrap><font face="Verdana, Arial, Helvetica" size="1"> <img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_folder_open.gif" width="15" height="15" border="0" alt="" title="" align="absmiddle" /> <a href="default.asp">All Forums</a><br /> <img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_bar.gif" width="15" height="15" border="0" alt="" title="" align="absmiddle" /><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_folder_open.gif" width="15" height="15" border="0" alt="" title="" align="absmiddle" /> <a href="default.asp?CAT_ID=1">The Temple of Elemental Evil</a><br /> <img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_blank.gif" width="15" height="15" border="0" alt="" title="" align="absmiddle" /><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_bar.gif" width="15" height="15" border="0" alt="" title="" align="absmiddle" /><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_folder_open.gif" width="15" height="15" border="0" alt="" title="" align="absmiddle" /> <a href="forum.asp?FORUM_ID=1">Hommlet</a><br /> <img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_blank.gif" width="15" height="15" border="0" alt="" title="" align="absmiddle" /><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_blank.gif" width="15" height="15" border="0" alt="" title="" align="absmiddle" /><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_bar.gif" width="15" height="15" border="0" alt="" title="" align="absmiddle" /><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_folder_open_topic.gif" width="15" height="15" border="0" alt="" title="" align="absmiddle" /> Temple of Elemental Evil</font></td> <td align="center" width="50%"> <font face="Verdana, Arial, Helvetica" size="1"> <a href="post.asp?method=Topic&FORUM_ID=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_folder_new_topic.gif" width="15" height="15" border="0" alt="" title="" align="absmiddle" /></a> <a href="post.asp?method=Topic&FORUM_ID=1">New Topic</a> <a href="post.asp?poll=1&method=Topic&FORUM_ID=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_poll.gif" width="15" height="15" border="0" alt="New Poll" title="New Poll" align="absmiddle" /></a> <a href="post.asp?poll=1&method=Topic&FORUM_ID=1">New Poll</a><br /> <a href="post.asp?method=Reply&TOPIC_ID=2&FORUM_ID=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_reply_topic.gif" width="15" height="15" border="0" alt="" title="" align="absmiddle" /></a> <a href="post.asp?method=Reply&TOPIC_ID=2&FORUM_ID=1">Reply to Topic</a> <br /><a href="JavaScript:openWindow5('pop_printer_friendly.asp?TOPIC_ID=2')"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_print.gif" width="16" height="17" border="0" alt="" title="" align="absmiddle" /></a> <a href="JavaScript:openWindow5('pop_printer_friendly.asp?TOPIC_ID=2')">Printer Friendly</a> </font></td> </tr> </table> </td> </tr> </table> <table align="center" border="0" cellPadding="0" cellSpacing="0" width="95%"> <tr> <td> <table border="0" width="100%" cellspacing="0" cellpadding="0" align="center"> <tr> <td bgcolor="000000"> <table border="0" width="100%" cellspacing="1" cellpadding="4"> <tr> <td align="center" bgcolor="003333" width="100" nowrap><b><font face="Verdana, Arial, Helvetica" size="1" color="FFFFFF">Author</font></b></td> <td align="center" bgcolor="003333" width="100%"><b><font face="Verdana, Arial, Helvetica" size="1" color="FFFFFF"> Topic</font></b></td> <td align="right" bgcolor="003333" nowrap> <font face="Verdana, Arial, Helvetica" size="1"> <a href="JavaScript:openWindow('pop_lock.asp?mode=Topic&TOPIC_ID=2&FORUM_ID=1&CAT_ID=1')"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_folder_locked.gif" width="15" height="15" border="0" alt="Lock Topic" title="Lock Topic" /></a> <a href="post.asp?method=EditTopic&REPLY_ID=2&TOPIC_ID=2&FORUM_ID=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_folder_pencil.gif" width="15" height="15" border="0" alt="Edit Topic" title="Edit Topic" hspace="0" /></a> <a href="JavaScript:openWindow('pop_delete.asp?mode=Topic&TOPIC_ID=2&FORUM_ID=1&CAT_ID=1')"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_folder_delete.gif" width="15" height="15" border="0" alt="Delete Topic" title="Delete Topic" /></a> <a href="post.asp?method=Topic&FORUM_ID=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_folder_new_topic.gif" width="15" height="15" border="0" alt="New Topic" title="New Topic" /></a> <a href="post.asp?method=Reply&TOPIC_ID=2&FORUM_ID=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_reply_topic.gif" width="15" height="15" border="0" alt="Reply to Topic" title="Reply to Topic" /></a> </font> </td> </tr> <tr> <td bgcolor="EFEFEF" valign="top" width="100" nowrap> <p><font color="000000" face="Verdana, Arial, Helvetica" size="1"><b><span class="spnMessageText"><a href="pop_profile.asp?mode=display&id=1" title="View kagan's Profile" onMouseOver="(window.status='View kagan\'s Profile'); return true" onMouseOut="(window.status=''); return true">kagan</a></span></b></font><br /> <br /> </p> <p> <font color="000000" face="Verdana, Arial, Helvetica" size="1"><small>12 Posts</small></font></p></td> <td bgcolor="EFEFEF" width="100%" colspan="2" valign="top"> <table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td valign="top"> <img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_posticon.gif" width="15" height="15" border="0" alt="" title="" hspace="3" /><font color="000000" face="Verdana, Arial, Helvetica" size="1">Posted - 07/19/2003 : 19:27:56</font> <a href="pop_profile.asp?mode=display&id=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_profile.gif" width="15" height="15" border="0" alt="Show Profile" title="Show Profile" align="absmiddle" hspace="6" /></a> <a href="JavaScript:openWindow('pop_mail.asp?id=1')"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_email.gif" width="15" height="15" border="0" alt="Email Poster" title="Email Poster" align="absmiddle" hspace="6" /></a> <a href="post.asp?method=EditTopic&REPLY_ID=2&TOPIC_ID=2&FORUM_ID=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_edit_topic.gif" width="15" height="15" border="0" alt="Edit Topic" title="Edit Topic" align="absmiddle" hspace="6" /></a> <a href="post.asp?method=TopicQuote&TOPIC_ID=2&FORUM_ID=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_reply_topic.gif" width="15" height="15" border="0" alt="Reply with Quote" title="Reply with Quote" align="absmiddle" hspace="6" /></a> <a href="JavaScript:openWindow('pop_viewip.asp?mode=getIP&TOPIC_ID=2&FORUM_ID=1')"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_ip.gif" width="15" height="15" border="0" alt="View user's IP address" title="View user's IP address" align="absmiddle" hspace="6" /></a> <a href="JavaScript:openWindow('pop_delete.asp?mode=Topic&TOPIC_ID=2&FORUM_ID=1&CAT_ID=1')"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_delete_reply.gif" width="15" height="15" border="0" alt="Delete Topic" title="Delete Topic" align="absmiddle" hspace="6" /></a> <hr noshade size="1"></td> </tr> <tr> <td valign="top" height="100%"><font face="Verdana, Arial, Helvetica" size="1" color="000000"> <font face="Verdana, Arial, Helvetica" size="1" color="000000"><span class="spnMessageText" id="msg">adfadsfa</span id="msg"></font> </td> </tr> </table> </td> </tr> <tr> <td bgcolor="DFDFDF" valign="top" width="100" nowrap> <p><font face="Verdana, Arial, Helvetica" size="1"><b><span class="spnMessageText"><a href="pop_profile.asp?mode=display&id=1" title="View kagan's Profile" onMouseOver="(window.status='View kagan\'s Profile'); return true" onMouseOut="(window.status=''); return true">kagan</a></span></b></font><br /> <br /> </p> <p> <font color="000000" face="Verdana, Arial, Helvetica" size="1"><small>12 Posts</small></font></p></td> <td bgcolor="DFDFDF" height="100%" width="100%" colspan="2" valign="top"><a name="1"></a> <table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td valign="top"> <img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_posticon.gif" width="15" height="15" border="0" alt="" title="" hspace="3" /><font color="000000" face="Verdana, Arial, Helvetica" size="1">Posted - 07/19/2003 : 19:28:12</font> <a href="pop_profile.asp?mode=display&id=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_profile.gif" width="15" height="15" border="0" alt="Show Profile" title="Show Profile" align="absmiddle" hspace="6" /></a> <a href="JavaScript:openWindow('pop_mail.asp?id=1')"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_email.gif" width="15" height="15" border="0" alt="Email Poster" title="Email Poster" align="absmiddle" hspace="6" /></a> <a href="post.asp?method=Edit&REPLY_ID=1&TOPIC_ID=2&FORUM_ID=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_edit_topic.gif" width="15" height="15" border="0" alt="Edit Reply" title="Edit Reply" align="absmiddle" hspace="6" /></a> <a href="post.asp?method=ReplyQuote&REPLY_ID=1&TOPIC_ID=2&FORUM_ID=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_reply_topic.gif" width="15" height="15" border="0" alt="Reply with Quote" title="Reply with Quote" align="absmiddle" hspace="6" /></a> <a href="JavaScript:openWindow('pop_viewip.asp?mode=getIP&REPLY_ID=1&FORUM_ID=1')"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_ip.gif" width="15" height="15" border="0" alt="View user's IP address" title="View user's IP address" align="absmiddle" hspace="6" /></a> <a href="JavaScript:openWindow('pop_delete.asp?mode=Reply&REPLY_ID=1&TOPIC_ID=2&FORUM_ID=1')"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_delete_reply.gif" width="15" height="15" border="0" alt="Delete Reply" title="Delete Reply" align="absmiddle" hspace="6" /></a> <hr noshade size="1"></td> </tr> <tr> <td valign="top" height="100%"><font face="Verdana, Arial, Helvetica" size="1" color="000000"><span class="spnMessageText" id="msg">asdfasdfasdf</span id="msg"></font></td> </tr> <tr> <td valign="bottom" align="right" height="20"><a href="#top"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_go_up.gif" width="15" height="15" border="0" alt="Go to Top of Page" title="Go to Top of Page" align="right" /></a></td> </tr> </table> </td> </tr> <tr> <td bgcolor="EFEFEF" valign="top" width="100" nowrap> <p><font face="Verdana, Arial, Helvetica" size="1"><b><span class="spnMessageText"><a href="pop_profile.asp?mode=display&id=1" title="View kagan's Profile" onMouseOver="(window.status='View kagan\'s Profile'); return true" onMouseOut="(window.status=''); return true">kagan</a></span></b></font><br /> <br /> </p> <p> <font color="000000" face="Verdana, Arial, Helvetica" size="1"><small>12 Posts</small></font></p></td> <td bgcolor="EFEFEF" height="100%" width="100%" colspan="2" valign="top"><a name="2"></a> <table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td valign="top"> <img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_posticon.gif" width="15" height="15" border="0" alt="" title="" hspace="3" /><font color="000000" face="Verdana, Arial, Helvetica" size="1">Posted - 07/21/2003 : 15:06:37</font> <a href="pop_profile.asp?mode=display&id=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_profile.gif" width="15" height="15" border="0" alt="Show Profile" title="Show Profile" align="absmiddle" hspace="6" /></a> <a href="JavaScript:openWindow('pop_mail.asp?id=1')"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_email.gif" width="15" height="15" border="0" alt="Email Poster" title="Email Poster" align="absmiddle" hspace="6" /></a> <a href="post.asp?method=Edit&REPLY_ID=2&TOPIC_ID=2&FORUM_ID=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_edit_topic.gif" width="15" height="15" border="0" alt="Edit Reply" title="Edit Reply" align="absmiddle" hspace="6" /></a> <a href="post.asp?method=ReplyQuote&REPLY_ID=2&TOPIC_ID=2&FORUM_ID=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_reply_topic.gif" width="15" height="15" border="0" alt="Reply with Quote" title="Reply with Quote" align="absmiddle" hspace="6" /></a> <a href="JavaScript:openWindow('pop_viewip.asp?mode=getIP&REPLY_ID=2&FORUM_ID=1')"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_ip.gif" width="15" height="15" border="0" alt="View user's IP address" title="View user's IP address" align="absmiddle" hspace="6" /></a> <a href="JavaScript:openWindow('pop_delete.asp?mode=Reply&REPLY_ID=2&TOPIC_ID=2&FORUM_ID=1')"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_delete_reply.gif" width="15" height="15" border="0" alt="Delete Reply" title="Delete Reply" align="absmiddle" hspace="6" /></a> <hr noshade size="1"></td> </tr> <tr> <td valign="top" height="100%"><font face="Verdana, Arial, Helvetica" size="1" color="000000"><span class="spnMessageText" id="msg">svasdfasdfasdf</span id="msg"></font></td> </tr> <tr> <td valign="bottom" align="right" height="20"><a href="#top"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_go_up.gif" width="15" height="15" border="0" alt="Go to Top of Page" title="Go to Top of Page" align="right" /></a></td> </tr> </table> </td> </tr> <tr> <td bgcolor="DFDFDF" valign="top" width="100" nowrap> <p><font face="Verdana, Arial, Helvetica" size="1"><b><span class="spnMessageText"><a href="pop_profile.asp?mode=display&id=1" title="View kagan's Profile" onMouseOver="(window.status='View kagan\'s Profile'); return true" onMouseOut="(window.status=''); return true">kagan</a></span></b></font><br /> <br /> </p> <p> <font color="000000" face="Verdana, Arial, Helvetica" size="1"><small>12 Posts</small></font></p></td> <td bgcolor="DFDFDF" height="100%" width="100%" colspan="2" valign="top"><a name="3"></a> <table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td valign="top"> <img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_posticon.gif" width="15" height="15" border="0" alt="" title="" hspace="3" /><font color="000000" face="Verdana, Arial, Helvetica" size="1">Posted - 07/21/2003 : 16:21:10</font> <a href="pop_profile.asp?mode=display&id=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_profile.gif" width="15" height="15" border="0" alt="Show Profile" title="Show Profile" align="absmiddle" hspace="6" /></a> <a href="JavaScript:openWindow('pop_mail.asp?id=1')"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_email.gif" width="15" height="15" border="0" alt="Email Poster" title="Email Poster" align="absmiddle" hspace="6" /></a> <a href="post.asp?method=Edit&REPLY_ID=3&TOPIC_ID=2&FORUM_ID=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_edit_topic.gif" width="15" height="15" border="0" alt="Edit Reply" title="Edit Reply" align="absmiddle" hspace="6" /></a> <a href="post.asp?method=ReplyQuote&REPLY_ID=3&TOPIC_ID=2&FORUM_ID=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_reply_topic.gif" width="15" height="15" border="0" alt="Reply with Quote" title="Reply with Quote" align="absmiddle" hspace="6" /></a> <a href="JavaScript:openWindow('pop_viewip.asp?mode=getIP&REPLY_ID=3&FORUM_ID=1')"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_ip.gif" width="15" height="15" border="0" alt="View user's IP address" title="View user's IP address" align="absmiddle" hspace="6" /></a> <a href="JavaScript:openWindow('pop_delete.asp?mode=Reply&REPLY_ID=3&TOPIC_ID=2&FORUM_ID=1')"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_delete_reply.gif" width="15" height="15" border="0" alt="Delete Reply" title="Delete Reply" align="absmiddle" hspace="6" /></a> <hr noshade size="1"></td> </tr> <tr> <td valign="top" height="100%"><font face="Verdana, Arial, Helvetica" size="1" color="000000"><span class="spnMessageText" id="msg">afadfssaf</span id="msg"></font></td> </tr> <tr> <td valign="bottom" align="right" height="20"><a href="#top"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_go_up.gif" width="15" height="15" border="0" alt="Go to Top of Page" title="Go to Top of Page" align="right" /></a></td> </tr> </table> </td> </tr> <tr> <td bgcolor="EFEFEF" valign="top" width="100" nowrap> <p><font face="Verdana, Arial, Helvetica" size="1"><b><span class="spnMessageText"><a href="pop_profile.asp?mode=display&id=1" title="View kagan's Profile" onMouseOver="(window.status='View kagan\'s Profile'); return true" onMouseOut="(window.status=''); return true">kagan</a></span></b></font><br /> <br /> </p> <p> <font color="000000" face="Verdana, Arial, Helvetica" size="1"><small>12 Posts</small></font></p></td> <td bgcolor="EFEFEF" height="100%" width="100%" colspan="2" valign="top"><a name="4"></a> <table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td valign="top"> <img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_posticon.gif" width="15" height="15" border="0" alt="" title="" hspace="3" /><font color="000000" face="Verdana, Arial, Helvetica" size="1">Posted - 07/21/2003 : 16:22:31</font> <a href="pop_profile.asp?mode=display&id=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_profile.gif" width="15" height="15" border="0" alt="Show Profile" title="Show Profile" align="absmiddle" hspace="6" /></a> <a href="JavaScript:openWindow('pop_mail.asp?id=1')"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_email.gif" width="15" height="15" border="0" alt="Email Poster" title="Email Poster" align="absmiddle" hspace="6" /></a> <a href="post.asp?method=Edit&REPLY_ID=4&TOPIC_ID=2&FORUM_ID=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_edit_topic.gif" width="15" height="15" border="0" alt="Edit Reply" title="Edit Reply" align="absmiddle" hspace="6" /></a> <a href="post.asp?method=ReplyQuote&REPLY_ID=4&TOPIC_ID=2&FORUM_ID=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_reply_topic.gif" width="15" height="15" border="0" alt="Reply with Quote" title="Reply with Quote" align="absmiddle" hspace="6" /></a> <a href="JavaScript:openWindow('pop_viewip.asp?mode=getIP&REPLY_ID=4&FORUM_ID=1')"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_ip.gif" width="15" height="15" border="0" alt="View user's IP address" title="View user's IP address" align="absmiddle" hspace="6" /></a> <a href="JavaScript:openWindow('pop_delete.asp?mode=Reply&REPLY_ID=4&TOPIC_ID=2&FORUM_ID=1')"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_delete_reply.gif" width="15" height="15" border="0" alt="Delete Reply" title="Delete Reply" align="absmiddle" hspace="6" /></a> <hr noshade size="1"></td> </tr> <tr> <td valign="top" height="100%"><font face="Verdana, Arial, Helvetica" size="1" color="000000"><span class="spnMessageText" id="msg">adfa</span id="msg"></font></td> </tr> <tr> <td valign="bottom" align="right" height="20"><a href="#top"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_go_up.gif" width="15" height="15" border="0" alt="Go to Top of Page" title="Go to Top of Page" align="right" /></a></td> </tr> </table> </td> </tr> <tr> <td bgcolor="DFDFDF" valign="top" width="100" nowrap> <p><font face="Verdana, Arial, Helvetica" size="1"><b><span class="spnMessageText"><a href="pop_profile.asp?mode=display&id=1" title="View kagan's Profile" onMouseOver="(window.status='View kagan\'s Profile'); return true" onMouseOut="(window.status=''); return true">kagan</a></span></b></font><br /> <br /> </p> <p> <font color="000000" face="Verdana, Arial, Helvetica" size="1"><small>12 Posts</small></font></p></td> <td bgcolor="DFDFDF" height="100%" width="100%" colspan="2" valign="top"><a name="5"></a> <table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td valign="top"> <img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_posticon.gif" width="15" height="15" border="0" alt="" title="" hspace="3" /><font color="000000" face="Verdana, Arial, Helvetica" size="1">Posted - 07/23/2003 : 10:51:37</font> <a href="pop_profile.asp?mode=display&id=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_profile.gif" width="15" height="15" border="0" alt="Show Profile" title="Show Profile" align="absmiddle" hspace="6" /></a> <a href="JavaScript:openWindow('pop_mail.asp?id=1')"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_email.gif" width="15" height="15" border="0" alt="Email Poster" title="Email Poster" align="absmiddle" hspace="6" /></a> <a href="post.asp?method=Edit&REPLY_ID=5&TOPIC_ID=2&FORUM_ID=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_edit_topic.gif" width="15" height="15" border="0" alt="Edit Reply" title="Edit Reply" align="absmiddle" hspace="6" /></a> <a href="post.asp?method=ReplyQuote&REPLY_ID=5&TOPIC_ID=2&FORUM_ID=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_reply_topic.gif" width="15" height="15" border="0" alt="Reply with Quote" title="Reply with Quote" align="absmiddle" hspace="6" /></a> <a href="JavaScript:openWindow('pop_viewip.asp?mode=getIP&REPLY_ID=5&FORUM_ID=1')"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_ip.gif" width="15" height="15" border="0" alt="View user's IP address" title="View user's IP address" align="absmiddle" hspace="6" /></a> <a href="JavaScript:openWindow('pop_delete.asp?mode=Reply&REPLY_ID=5&TOPIC_ID=2&FORUM_ID=1')"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_delete_reply.gif" width="15" height="15" border="0" alt="Delete Reply" title="Delete Reply" align="absmiddle" hspace="6" /></a> <hr noshade size="1"></td> </tr> <tr> <td valign="top" height="100%"><font face="Verdana, Arial, Helvetica" size="1" color="000000"><span class="spnMessageText" id="msg">awefasdfasdf</span id="msg"></font></td> </tr> <tr> <td valign="bottom" align="right" height="20"><a href="#top"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_go_up.gif" width="15" height="15" border="0" alt="Go to Top of Page" title="Go to Top of Page" align="right" /></a></td> </tr> </table> </td> </tr> <tr> <td bgcolor="EFEFEF" valign="top" width="100" nowrap> <p><font face="Verdana, Arial, Helvetica" size="1"><b><span class="spnMessageText"><a href="pop_profile.asp?mode=display&id=1" title="View kagan's Profile" onMouseOver="(window.status='View kagan\'s Profile'); return true" onMouseOut="(window.status=''); return true">kagan</a></span></b></font><br /> <br /> </p> <p> <font color="000000" face="Verdana, Arial, Helvetica" size="1"><small>12 Posts</small></font></p></td> <td bgcolor="EFEFEF" height="100%" width="100%" colspan="2" valign="top"><a name="6"></a> <table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td valign="top"> <img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_posticon.gif" width="15" height="15" border="0" alt="" title="" hspace="3" /><font color="000000" face="Verdana, Arial, Helvetica" size="1">Posted - 07/23/2003 : 11:04:51</font> <a href="pop_profile.asp?mode=display&id=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_profile.gif" width="15" height="15" border="0" alt="Show Profile" title="Show Profile" align="absmiddle" hspace="6" /></a> <a href="JavaScript:openWindow('pop_mail.asp?id=1')"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_email.gif" width="15" height="15" border="0" alt="Email Poster" title="Email Poster" align="absmiddle" hspace="6" /></a> <a href="post.asp?method=Edit&REPLY_ID=6&TOPIC_ID=2&FORUM_ID=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_edit_topic.gif" width="15" height="15" border="0" alt="Edit Reply" title="Edit Reply" align="absmiddle" hspace="6" /></a> <a href="post.asp?method=ReplyQuote&REPLY_ID=6&TOPIC_ID=2&FORUM_ID=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_reply_topic.gif" width="15" height="15" border="0" alt="Reply with Quote" title="Reply with Quote" align="absmiddle" hspace="6" /></a> <a href="JavaScript:openWindow('pop_viewip.asp?mode=getIP&REPLY_ID=6&FORUM_ID=1')"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_ip.gif" width="15" height="15" border="0" alt="View user's IP address" title="View user's IP address" align="absmiddle" hspace="6" /></a> <a href="JavaScript:openWindow('pop_delete.asp?mode=Reply&REPLY_ID=6&TOPIC_ID=2&FORUM_ID=1')"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_delete_reply.gif" width="15" height="15" border="0" alt="Delete Reply" title="Delete Reply" align="absmiddle" hspace="6" /></a> <hr noshade size="1"></td> </tr> <tr> <td valign="top" height="100%"><font face="Verdana, Arial, Helvetica" size="1" color="000000"><span class="spnMessageText" id="msg"> <blockquote id="quote"><font size="1" face="Verdana, Arial, Helvetica" id="quote">quote:<hr height="1" noshade id="quote">Originally posted by kagan<br /> svasdfasdfasdf<br /><hr height="1" noshade id="quote"></blockquote id="quote"></font id="quote"></span id="msg"></font></td> </tr> <tr> <td valign="bottom" align="right" height="20"><a href="#top"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_go_up.gif" width="15" height="15" border="0" alt="Go to Top of Page" title="Go to Top of Page" align="right" /></a></td> </tr> </table> </td> </tr> <tr> <td bgcolor="DFDFDF" valign="top" width="100" nowrap> <p><font face="Verdana, Arial, Helvetica" size="1"><b><span class="spnMessageText"><a href="pop_profile.asp?mode=display&id=1" title="View kagan's Profile" onMouseOver="(window.status='View kagan\'s Profile'); return true" onMouseOut="(window.status=''); return true">kagan</a></span></b></font><br /> <br /> </p> <p> <font color="000000" face="Verdana, Arial, Helvetica" size="1"><small>12 Posts</small></font></p></td> <td bgcolor="DFDFDF" height="100%" width="100%" colspan="2" valign="top"><a name="7"></a> <table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td valign="top"> <img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_posticon.gif" width="15" height="15" border="0" alt="" title="" hspace="3" /><font color="000000" face="Verdana, Arial, Helvetica" size="1">Posted - 07/23/2003 : 11:06:56</font> <a href="pop_profile.asp?mode=display&id=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_profile.gif" width="15" height="15" border="0" alt="Show Profile" title="Show Profile" align="absmiddle" hspace="6" /></a> <a href="JavaScript:openWindow('pop_mail.asp?id=1')"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_email.gif" width="15" height="15" border="0" alt="Email Poster" title="Email Poster" align="absmiddle" hspace="6" /></a> <a href="post.asp?method=Edit&REPLY_ID=7&TOPIC_ID=2&FORUM_ID=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_edit_topic.gif" width="15" height="15" border="0" alt="Edit Reply" title="Edit Reply" align="absmiddle" hspace="6" /></a> <a href="post.asp?method=ReplyQuote&REPLY_ID=7&TOPIC_ID=2&FORUM_ID=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_reply_topic.gif" width="15" height="15" border="0" alt="Reply with Quote" title="Reply with Quote" align="absmiddle" hspace="6" /></a> <a href="JavaScript:openWindow('pop_viewip.asp?mode=getIP&REPLY_ID=7&FORUM_ID=1')"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_ip.gif" width="15" height="15" border="0" alt="View user's IP address" title="View user's IP address" align="absmiddle" hspace="6" /></a> <a href="JavaScript:openWindow('pop_delete.asp?mode=Reply&REPLY_ID=7&TOPIC_ID=2&FORUM_ID=1')"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_delete_reply.gif" width="15" height="15" border="0" alt="Delete Reply" title="Delete Reply" align="absmiddle" hspace="6" /></a> <hr noshade size="1"></td> </tr> <tr> <td valign="top" height="100%"><font face="Verdana, Arial, Helvetica" size="1" color="000000"><span class="spnMessageText" id="msg"><i>asdfasdfasdf</i></span id="msg"></font></td> </tr> <tr> <td valign="bottom" align="right" height="20"><a href="#top"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_go_up.gif" width="15" height="15" border="0" alt="Go to Top of Page" title="Go to Top of Page" align="right" /></a></td> </tr> </table> </td> </tr> <tr> <td bgcolor="EFEFEF" valign="top" width="100" nowrap> <p><font face="Verdana, Arial, Helvetica" size="1"><b><span class="spnMessageText"><a href="pop_profile.asp?mode=display&id=1" title="View kagan's Profile" onMouseOver="(window.status='View kagan\'s Profile'); return true" onMouseOut="(window.status=''); return true">kagan</a></span></b></font><br /> <br /> </p> <p> <font color="000000" face="Verdana, Arial, Helvetica" size="1"><small>12 Posts</small></font></p></td> <td bgcolor="EFEFEF" height="100%" width="100%" colspan="2" valign="top"><a name="8"></a> <table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td valign="top"> <img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_posticon.gif" width="15" height="15" border="0" alt="" title="" hspace="3" /><font color="000000" face="Verdana, Arial, Helvetica" size="1">Posted - 07/23/2003 : 14:52:09</font> <a href="pop_profile.asp?mode=display&id=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_profile.gif" width="15" height="15" border="0" alt="Show Profile" title="Show Profile" align="absmiddle" hspace="6" /></a> <a href="JavaScript:openWindow('pop_mail.asp?id=1')"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_email.gif" width="15" height="15" border="0" alt="Email Poster" title="Email Poster" align="absmiddle" hspace="6" /></a> <a href="post.asp?method=Edit&REPLY_ID=8&TOPIC_ID=2&FORUM_ID=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_edit_topic.gif" width="15" height="15" border="0" alt="Edit Reply" title="Edit Reply" align="absmiddle" hspace="6" /></a> <a href="post.asp?method=ReplyQuote&REPLY_ID=8&TOPIC_ID=2&FORUM_ID=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_reply_topic.gif" width="15" height="15" border="0" alt="Reply with Quote" title="Reply with Quote" align="absmiddle" hspace="6" /></a> <a href="JavaScript:openWindow('pop_viewip.asp?mode=getIP&REPLY_ID=8&FORUM_ID=1')"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_ip.gif" width="15" height="15" border="0" alt="View user's IP address" title="View user's IP address" align="absmiddle" hspace="6" /></a> <a href="JavaScript:openWindow('pop_delete.asp?mode=Reply&REPLY_ID=8&TOPIC_ID=2&FORUM_ID=1')"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_delete_reply.gif" width="15" height="15" border="0" alt="Delete Reply" title="Delete Reply" align="absmiddle" hspace="6" /></a> <hr noshade size="1"></td> </tr> <tr> <td valign="top" height="100%"><font face="Verdana, Arial, Helvetica" size="1" color="000000"><span class="spnMessageText" id="msg">DfasdASDSAD</span id="msg"></font></td> </tr> <tr> <td valign="bottom" align="right" height="20"><a href="#top"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_go_up.gif" width="15" height="15" border="0" alt="Go to Top of Page" title="Go to Top of Page" align="right" /></a></td> </tr> </table> </td> </tr> <tr> <td align="center" bgcolor="003333" width="100" nowrap><b><font face="Verdana, Arial, Helvetica" size="1" color="FFFFFF"> </font></b></td> <td align="center" bgcolor="003333" width="100%"><b><font face="Verdana, Arial, Helvetica" size="1" color="FFFFFF"> Topic</font></b></td> <td align="right" bgcolor="003333" nowrap> <font face="Verdana, Arial, Helvetica" size="1"> <a href="JavaScript:openWindow('pop_lock.asp?mode=Topic&TOPIC_ID=2&FORUM_ID=1&CAT_ID=1')"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_folder_locked.gif" width="15" height="15" border="0" alt="Lock Topic" title="Lock Topic" /></a> <a href="post.asp?method=EditTopic&REPLY_ID=2&TOPIC_ID=2&FORUM_ID=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_folder_pencil.gif" width="15" height="15" border="0" alt="Edit Topic" title="Edit Topic" hspace="0" /></a> <a href="JavaScript:openWindow('pop_delete.asp?mode=Topic&TOPIC_ID=2&FORUM_ID=1&CAT_ID=1')"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_folder_delete.gif" width="15" height="15" border="0" alt="Delete Topic" title="Delete Topic" /></a> <a href="post.asp?method=Topic&FORUM_ID=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_folder_new_topic.gif" width="15" height="15" border="0" alt="New Topic" title="New Topic" /></a> <a href="post.asp?method=Reply&TOPIC_ID=2&FORUM_ID=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_reply_topic.gif" width="15" height="15" border="0" alt="Reply to Topic" title="Reply to Topic" /></a> </font></td> </tr> </table> </td> </tr> </table> </td> </tr> </table> <table align="center" border="0" cellPadding="0" cellSpacing="0" width="95%"> <tr> <td> <table width="100%"> <tr> <td align="center" valign="top" width="50%"> <font face="Verdana, Arial, Helvetica" size="1"> <a href="post.asp?method=Topic&FORUM_ID=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_folder_new_topic.gif" width="15" height="15" border="0" alt="" title="" align="absmiddle" /></a> <a href="post.asp?method=Topic&FORUM_ID=1">New Topic</a> <a href="post.asp?poll=1&method=Topic&FORUM_ID=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_poll.gif" width="15" height="15" border="0" alt="New Poll" title="New Poll" align="absmiddle" /></a> <a href="post.asp?poll=1&method=Topic&FORUM_ID=1">New Poll</a><br /> <a href="post.asp?method=Reply&TOPIC_ID=2&FORUM_ID=1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_reply_topic.gif" width="15" height="15" border="0" alt="" title="" align="absmiddle" /></a> <a href="post.asp?method=Reply&TOPIC_ID=2&FORUM_ID=1">Reply to Topic</a> <br /><a href="JavaScript:openWindow5('pop_printer_friendly.asp?TOPIC_ID=2')"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_print.gif" width="16" height="17" border="0" alt="" title="" align="absmiddle" /></a> <a href="JavaScript:openWindow5('pop_printer_friendly.asp?TOPIC_ID=2')">Printer Friendly</a> </font></td> <td align="right" valign="top" width="50%" nowrap> <!-- START JUMP TO --> <form name="Stuff"> <font face="Verdana, Arial, Helvetica" size="1"><b>Jump To:</b></font> <select name="SelectMenu" size="1" onchange="if(this.options[this.selectedIndex].value != '' ){ jumpTo(this) }"> <option value="">Select Forum</option> <option value="default.asp?CAT_ID=1">The Temple of Elemental Evil</option> <option value="forum.asp?FORUM_ID=1"> Hommlet</option> <option value=""> --------------------</option> <option value="HarvestersHeroes.com">Home</option> <option value="active.asp">Active Topics</option> <option value="faq.asp">Frequently Asked Questions</option> <option value="members.asp">Member Information</option> <option value="search.asp">Search Page</option> </select> </form> <!-- END JUMP TO --> </td> </tr> </table> <script language="JavaScript" type="text/javascript" src="inc_code.js"></script> <table width="100%" border="0" cellspacing="0" cellpadding="0" align="center"> <tr> <td bgcolor="000000"> <table width="100%" border="0" cellspacing="1" cellpadding="1"> <form name="PostTopic" method="post" action="post_info.asp" onSubmit="return validate();"> <input name="ARCHIVE" type="hidden" value=""> <input name="Method_Type" type="hidden" value="Reply"> <input name="TOPIC_ID" type="hidden" value="2"> <input name="FORUM_ID" type="hidden" value="1"> <input name="CAT_ID" type="hidden" value="1"> <input name="Refer" type="hidden" value="/cgi-bin/sf2k_v34_03/topic.asp?TOPIC_ID=2"> <input name="UserName" type="hidden" value="kagan"> <input name="Password" type="hidden" value="bf74e4a280affafbdf6692bc6a9f3d66b03094fbfb4a91589bc7fd6b32664fdb"> <tr> <td bgColor="003333" noWrap vAlign="top" colspan="2"><font face="Verdana, Arial, Helvetica" size="1" color="FFFFFF"><b>Quick Reply</b></font></td> </tr> <tr> <td bgColor="EFEFEF" noWrap vAlign="top" align="right"><font face="Verdana, Arial, Helvetica" size="1" color="000000"><span class="spnMessageText"><b>Message: </b><br /> <br /> <table border="0"> <tr> <td align="left" nowrap><font face="Verdana, Arial, Helvetica" size="1" color="000000"> * HTML is OFF<br /> * Forum Code is OFF<br /> </font></td> </tr> </table> </span></font></td> <td width="100%" bgColor="EFEFEF"> <table cellSpacing="4" cellPadding="0" align="center" summary="post entry form" border="0" height="96" width="464"> <tr> <td height="32" width="91"><b>Die Rolls:</b></td> <td colSpan="2" height="32" width="409"> <textarea onfocus="document.postForm.post_name.focus()" name="die_rolls" wrap="virtual" cols="42" noTab rows="3"></textarea> </td> </tr> <tr> <td height="26" width="91"><font face="Verdana, Arial, Helvetica">
<b>Click&Roll:</b></font></td> <td height="26" width="8"> </td> <td height="26" width="397"> <input onclick="addDieRoll(1, 100, 0, document.postForm.die_rolls)" type="button" value="d100"> <input onclick="addDieRoll(1, 20, 0, document.postForm.die_rolls)" type="button" value="d20"> <input onclick="addDieRoll(1, 12, 0, document.postForm.die_rolls)" type="button" value="d12"> <input onclick="addDieRoll(1, 10, 0, document.postForm.die_rolls)" type="button" value="d10"> <input onclick="addDieRoll(1, 8, 0, document.postForm.die_rolls)" type="button" value="d8"> <input onclick="addDieRoll(1, 6, 0, document.postForm.die_rolls)" type="button" value="d6"> <input onclick="addDieRoll(1, 4, 0, document.postForm.die_rolls)" type="button" value="d4"> <input onclick="addDieRoll(1, 3, 0, document.postForm.die_rolls)" type="button" value="d3"> <input onclick="addDieRoll(1, 2, 0, document.postForm.die_rolls)" type="button" value="d2"> </td> </tr> <tr> <td height="26" width="91"><font face="Verdana, Arial, Helvetica">
<b>MultiRoll:</b></font></td> <td height="26" width="8"> </td> <td height="26" width="397"><input size="3" value="1" name="numDie"> <select size="1" name="dieSides"> <option value="100">d100</option> <option value="20" selected>d20</option> <option value="12">d12</option> <option value="10">d10</option> <option value="8">d8</option> <option value="6">d6</option> <option value="4">d4</option> <option value="3">d3</option> <option value="2">d2</option> </select> <select size="1" name="dieMod"> <option value="-20">-20</option> <option value="-19">-19</option> <option value="-18">-18</option> <option value="-17">-17</option> <option value="-16">-16</option> <option value="-15">-15</option> <option value="-14">-14</option> <option value="-13">-13</option> <option value="-12">-12</option> <option value="-11">-11</option> <option value="-10">-10</option> <option value="-9">-9</option> <option value="-8">-8</option> <option value="-7">-7</option> <option value="-6">-6</option> <option value="-5">-5</option> <option value="-4">-4</option> <option value="-3">-3</option> <option value="-2">-2</option> <option value="-1">-1</option> <option value="+0" selected>+0</option> <option value="+1">+1</option> <option value="+2">+2</option> <option value="+3">+3</option> <option value="+4">+4</option> <option value="+5">+5</option> <option value="+6">+6</option> <option value="+7">+7</option> <option value="+8">+8</option> <option value="+9">+9</option> <option value="+10">+10</option> <option value="+11">+11</option> <option value="+12">+12</option> <option value="+13">+13</option> <option value="+14">+14</option> <option value="+15">+15</option> <option value="+16">+16</option> <option value="+17">+17</option> <option value="+18">+18</option> <option value="+19">+19</option> <option value="+20">+20</option> <option value="+21">+21</option> <option value="+22">+22</option> <option value="+23">+23</option> <option value="+24">+24</option> <option value="+25">+25</option> <option value="+26">+26</option> <option value="+27">+27</option> <option value="+28">+28</option> <option value="+29">+29</option> <option value="+30">+30</option> <option value="+31">+31</option> <option value="+32">+32</option> <option value="+33">+33</option> <option value="+34">+34</option> <option value="+35">+35</option> <option value="+36">+36</option> <option value="+37">+37</option> <option value="+38">+38</option> <option value="+39">+39</option> <option value="+40">+40</option> <option value="+41">+41</option> <option value="+42">+42</option> <option value="+43">+43</option> <option value="+44">+44</option> <option value="+45">+45</option> <option value="+46">+46</option> <option value="+47">+47</option> <option value="+48">+48</option> <option value="+49">+49</option> <option value="+50">+50</option> </select> <input onclick="addDieRoll(postForm.numDie.value, postForm.dieSides.options[postForm.dieSides.selectedIndex].value, postForm.dieMod.options[postForm.dieMod.selectedIndex].value, postForm.die_rolls)" type="button" value="Roll"> </td> </tr> </table> <textarea name="Message" cols="50" rows="6" wrap="VIRTUAL" style="width:100%"></textarea><br /></td> </tr> <tr> <td bgColor="EFEFEF" noWrap align="center" colspan="2"><font face="Verdana, Arial, Helvetica" size="1" color="FFFFFF"><input name="Submit" type="submit" value="Submit Reply"> <input name="Preview" type="button" value="Preview Reply" onclick="OpenPreview()"> <input name="Reset" type="reset" value="Reset Form"></font></td> </tr> </form> </table> </td> </tr> </table> <br /> </td> </tr> </table> <table width="95%" align="center" border="0" bgcolor="EFEFEF" cellpadding="0" cellspacing="1"> <tr> <td> <table border="0" width="100%" align="center" cellpadding="4" cellspacing="0"> <tr> <td bgcolor="EFEFEF" align="left" valign="top" nowrap><font face="Verdana, Arial, Helvetica" size="1" color="000000">Harvester's Heroes</font></td> <td bgcolor="EFEFEF" align="right" valign="top" nowrap><font face="Verdana, Arial, Helvetica" size="1" color="000000">© 2000-02 Snitz Communications</font></td> <td bgcolor="EFEFEF" width="10" nowrap><a href="#top" onMouseOver="(window.status='Go To Top Of Page...'); return true" onMouseOut="(window.status=''); return true" tabindex="-1"><img src="http://www.harvestersheroes.com/cgi-bin/sf2k_v34_03/icon_go_up.gif" width="15" height="15" border="0" alt="Go To Top Of Page" title="Go To Top Of Page" align="right" /></a></td> </tr> </table> </td> </tr> </table> <table border="0" width="95%" align="center" cellpadding="4" cellspacing="0"> <tr valign="top"> <td align="right"><font face="Verdana, Arial, Helvetica" size="1"><a href="http://forum.snitz.com" target="_blank" tabindex="-1"><acronym title="Powered By: Snitz Forums 2000 Version 3.4.03">Snitz Forums 2000</acronym></a></font></td> </tr> </table> </font> </body> </html>
|
|
|
|
Topic |
|
|
|