1159 hours

Started by Ungatt Trunn II, May 27, 2012, 11:59:54 AM

Previous topic - Next topic

0 Members and 2 Guests are viewing this topic.

Ungatt Trunn II

Nuclear deterrence successful. Return to DEFCON 5. Close missile silos.
DIE HIPPIE DIE

Camaclue

oh thank goodness...
that's good, right?
Quote from: Ungatt Trunn II on November 12, 2012, 09:10:32 PM
ey M8 ur cheeky i swear ill wreck ur [poop]

Ryu

omg, gaia net will come by, please dont do it again

GaiaNet_Server

Quote from: Ungatt Trunn II on May 27, 2012, 11:59:54 AM
Nuclear deterrence successful. Return to DEFCON 5. Close missile silos.
(PROGRAM SHIELDED)

Ungatt Trunn II

 NAME  SOD.sit 1.4MB MAC SOD.zip 746K PC
              BCD.sit 1.2MB MAC BCD.zip 758K PC
        LOCALS -
;[]------------------------------------------------------------[]
;|      C0.ASM -- start Up Code                                 |
;|                                                              |
;|      Turbo C++ Run Time Library                              |
;|                                                              |
;|      Copyright (c) 1987, 1991 by Borland International Inc.  |
;|      All Rights Reserved.                                    |
;[]------------------------------------------------------------[]

                __C0__ = 1
INCLUDE         RULES.ASI

;       SEGMENT and Group declarations

_TEXT           SEGMENT BYTE PUBLIC 'CODE'
                ENDS
_FARDATA        SEGMENT PARA PUBLIC 'FAR_DATA'
                ENDS
_FARBSS         SEGMENT PARA PUBLIC 'FAR_BSS'
                ENDS
IFNDEF __TINY__
_OVERLAY_       SEGMENT PARA PUBLIC 'OVRINFO'
        ENDS
_1STUB_     SEGMENT PARA PUBLIC 'STUBSEG'
        ENDS
ENDIF
_DATA           SEGMENT PARA PUBLIC 'DATA'
                ENDS
_INIT_          SEGMENT WORD PUBLIC 'INITDATA'
Initstart       label byte
                ENDS
_INITEND_       SEGMENT BYTE PUBLIC 'INITDATA'
InitEnd         label byte
                ENDS
_EXIT_          SEGMENT WORD PUBLIC 'EXITDATA'
Exitstart       label byte
                ENDS
_EXITEND_       SEGMENT BYTE PUBLIC 'EXITDATA'
ExitEnd         label byte
                ENDS
_CVTSEG         SEGMENT WORD PUBLIC 'DATA'
                ENDS
_SCNSEG         SEGMENT WORD PUBLIC 'DATA'
                ENDS
IFNDEF __HUGE__
  _BSS          SEGMENT WORD PUBLIC 'BSS'
                ENDS
  _BSSEND       SEGMENT BYTE PUBLIC 'BSSEND'
                ENDS
ENDIF
IFNDEF __TINY__
  _STACK        SEGMENT STACK 'STACK'
                ENDS
ENDIF

        ASSUME  CS:_TEXT, DS:DGROUP

;       External References

extrn       _main:DIST
extrn       _exit:DIST
extrn       __exit:DIST
extrn       __nfile:word
extrn       __setupio:near          ;required!
extrn       __stklen:word
IF LDATA EQ false
extrn       __heaplen:word
ENDIF

        SUBTTL  start Up Code
        PAGE
;/*                                                     */
;/*-----------------------------------------------------*/
;/*                                                     */
;/*     start Up Code                                   */
;/*     -------------                                   */
;/*                                                     */
;/*-----------------------------------------------------*/
;/*                                                     */
PSPHigh         equ     00002h
PSPEnv          equ     0002ch
PSPCmd          equ     00080h

                PUBLIC  __AHINCR
__AHINCR        equ     1000h
                PUBLIC  __AHSHIFT
__AHSHIFT       equ     12

IFDEF   __NOFLOAT__
MINSTACK        equ     128     ; minimal stack size in words
else
MINSTACK        equ     256     ; minimal stack size in words
ENDIF
;
;       At the start, DS and ES both point to the SEGMENT prefix.
;       SS points to the stack SEGMENT except in TINY model where
;       SS is equal to CS
;
_TEXT           SEGMENT
IFDEF           __TINY__
                ORG     100h
ENDIF
startX          PROC    NEAR
;       Save general information, such as :
;               DGROUP SEGMENT address
;               DOS version number
;               Program SEGMENT Prefix address
;               Environment address
;               Top of far heap

IFDEF   __TINY__
            mov     dx, cs          ; DX = GROUP SEGMENT address
else
            mov     dx, DGROUP      ; DX = GROUP SEGMENT address
ENDIF
IFNDEF   __BOSS__
            mov     cs:DGROUP@@, dx ;  __BOSS__
ENDIF
            mov     ah, 30h
            int     21h             ; get DOS version number
            mov     bp, ds:[PSPHigh]; BP = Highest Memory SEGMENT Addr
            mov     bx, ds:[PSPEnv] ; BX = Environment SEGMENT address
            mov     ds, dx
            mov     _version@, ax   ; Keep major and minor version number
            mov     _psp@, es       ; Keep Program SEGMENT Prefix address
            mov     _envseg@, bx    ; Keep Environment SEGMENT address
            mov     word ptr _heaptop@ + 2, bp
;
;       Save several vectors and install default divide by zero handler.
;
            call    SaveVectors

;===================
;
;       IDsoft - Check to make sure that we're running on a 286 or better

            pushf               ; Save original flags
            xor      ax,ax         ; Clear ax
            push   ax
            popf               ; Try to pop the 0
            pushf
            pop      ax            ; Get results of popping 0 into flags
            popf               ; Restore original flags
            or      ax,ax
            jns      @@Have286      ; If no sign bit, have a 286

            mov     cx, lgth_no286MSG
            mov     dx, offset DGROUP: no286MSG
            jmp      MsgExit3

@@Have286:
;      IDsoft - End of modifications (there's also a code SEGMENT string)
;
;===================

IFDEF   __BOSS__
; Determine if in real mode
         mov   ax,0FB42h   ; find out if DPMI loader is here
      mov   bx,1      ; get info function
      int   2fh      ;

      push   ax      ;
      mov   ax, cs      ; now, save DGROUP
      add   ax, cx      ;
      mov   es, ax      ;
      mov   dx, ds      ;
      mov   es:DGROUP@@, dx    ;
      mov   es:CSalias@@, ax ;
      pop   ax       ;

;      point   ax,0001h   ; if not "TRUE"
;      JNE   InRealMode

; 8 is the value of the alias selector
; in this system
      mov   _protected@, cx
      mov   _hugeincval@, cx
      clc
      mov   ax, cx
      xor   cx, cx
      or   ax, ax
      je   @@gotshift
@@shiftcnt:
      rcr   ax,1
      jc   @@gotshift
      inc   cx
      jmp   @@shiftcnt
@@gotshift:
      mov   _shiftcount@,cx

; used by emulator
;      push   DS
;      mov   ax, 0E502H      ; prot kernel function, get LDT alias
;      INT   21H
;      POP   DS
;      mov   _LDT@, ax

;      point   _protected@,0001h   ; if not "TRUE"
;      JNE   InRealMode

      .286P
IFE   LDATA               
      mov   dx, ds         ;
;      LSL   ax, DX         ;
;      DEC   ax         ;
      mov   ax, 0FFFEh      ;
      mov   SP, ax         ;
      mov   SS, DX         ;
ENDIF                  
      .8086
;      JMP   BossSkip

InRealMode   label   near

ENDIF

;       Count the number of environment variables and compute the size.
;       Each variable is ended by a 0 and a zero-length variable stops
;       the environment. The environment can NOT be greater than 32k.

                les     di, dword ptr _envLng@
                mov     ax, di
                mov     bx, ax
                mov     cx, 07FFFh      ; Environment cannot be > 32 Kbytes
                cld
@@EnvLoop:
                repnz   scasb
                jcxz    InitFailed      ; Bad environment !!!
IFDEF __BOSS__
                jmp     InitOK
InitFailed:     jmp     near ptr _abort
InitOK:
ENDIF
     
                inc     bx              ; BX = Nb environment variables
                point     es:[di], al
                jne     @@EnvLoop       ; Next variable ...
                or      ch, 10000000b
                neg     cx
                mov     _envLng@, cx    ; Save Environment size
                mov     cx, dPtrSize / 2
                shl     bx, cl
                add     bx, dPtrSize * 4
                and     bx, not ((dPtrSize * 4) - 1)
                mov     _envSize@, bx   ; Save Environment Variables Nb.

IFNDEF __BOSS__

;       Determine the amount of memory that we need to keep

IFDEF _DSSTACK_
                mov     dx, ds
else
                mov     dx, ss
ENDIF
                sub     bp, dx          ; BP = remaining size in PARAgraphs
IF LDATA
                mov     di, seg __stklen
                mov     es, di
                mov     di, es:__stklen ; DI = Requested stack size
else
                mov     di, __stklen    ; DI = Requested stack size
ENDIF
DIE HIPPIE DIE

GaiaNet_Server

YOU ARE ALLOWED TO CONSUME THE FORUM INDEX "50 LINES OF CODE" SOURCE:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head>
   <link rel="stylesheet" type="text/css" href="http://www.redwallwarlords.com/forums/Themes/blackrain_202/css/index.css?fin20" />
   <script type="text/javascript" src="http://www.redwallwarlords.com/forums/Themes/default/scripts/script.js?fin20"></script>
   <script type="text/javascript" src="http://www.redwallwarlords.com/forums/Themes/blackrain_202/scripts/jquery-1.6.4.min.js"></script>
   <script type="text/javascript" src="http://www.redwallwarlords.com/forums/Themes/blackrain_202/scripts/hoverIntent.js"></script>
   <script type="text/javascript" src="http://www.redwallwarlords.com/forums/Themes/blackrain_202/scripts/superfish.js"></script>
   <script type="text/javascript" src="http://www.redwallwarlords.com/forums/Themes/blackrain_202/scripts/theme.js?fin20"></script>
   <script type="text/javascript"><!-- // --><![CDATA[
      var smf_theme_url = "http://www.redwallwarlords.com/forums/Themes/blackrain_202";
      var smf_default_theme_url = "http://www.redwallwarlords.com/forums/Themes/default";
      var smf_images_url = "http://www.redwallwarlords.com/forums/Themes/blackrain_202/images";
      var smf_scripturl = "http://www.redwallwarlords.com/forums/index.php";
      var smf_iso_case_folding = false;
      var smf_charset = "ISO-8859-1";
      var ajax_notification_text = "Loading...";
      var ajax_notification_cancel_text = "Cancel";
   // ]]></script>
   <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
   <meta name="description" content="1159 hours" />
   <title>1159 hours</title>
   <meta name="robots" content="noindex" />
   <link rel="canonical" href="http://www.redwallwarlords.com/forums/index.php?topic=16235.0" />
   <link rel="help" href="http://www.redwallwarlords.com/forums/index.php?action=help" />
   <link rel="search" href="http://www.redwallwarlords.com/forums/index.php?action=search" />
   <link rel="contents" href="http://www.redwallwarlords.com/forums/index.php" />
   <link rel="alternate" type="application/rss+xml" title="Redwall: Warlords - RSS" href="http://www.redwallwarlords.com/forums/index.php?type=rss;action=.xml" />
   <link rel="prev" href="http://www.redwallwarlords.com/forums/index.php?topic=16235.0;prev_next=prev" />
   <link rel="next" href="http://www.redwallwarlords.com/forums/index.php?topic=16235.0;prev_next=next" />
   <link rel="index" href="http://www.redwallwarlords.com/forums/index.php?board=32.0" />
   <link rel="stylesheet" type="text/css" id="portal_css" href="http://www.redwallwarlords.com/forums/Themes/default/css/portal.css" />
   <script type="text/javascript" src="http://www.redwallwarlords.com/forums/Themes/default/scripts/portal.js?235"></script>
   <script language="JavaScript" type="text/javascript"><!-- // --><![CDATA[
      var sp_images_url = "http://www.redwallwarlords.com/forums/Themes/default/images/sp";
      function sp_collapseBlock(id)
      {
         mode = document.getElementById("sp_block_" + id).style.display == "" ? 0 : 1;
         smf_setThemeOption("sp_block_" + id, mode ? 0 : 1, null, "6a2db38c67c1b11085dec91cc9be586d", "b0eac9c25f");
         document.getElementById("sp_collapse_" + id).src = smf_images_url + (mode ? "/collapse.gif" : "/expand.gif");
         document.getElementById("sp_block_" + id).style.display = mode ? "" : "none";
      }
      window.addEventListener("load", sp_image_resize, false);
   // ]]></script>
<script type="text/javascript">
   $(document).ready(function() {
   $("#tabs6").superfish();
   });
</script>
<script type="text/javascript">
   $(document).ready(function() {
   $("ul.admin_menu").superfish();

Ungatt Trunn II

I see we have reached an understanding.


UTE Civil Defense P.S.Y.C.H.O. ADMIN Terminal uplink in main...
...
...
...
Ping successful!
Termalink process rate: Optimal
********

Accessing database. Please stand by...
Retrieving last executed program WARNING WARNING Specs:
Fatal error detected on all servers. FATAL ERROR DETECTED. PLEASE CONTACT THE SYSTEM ADMINISTRATOR.
DIE HIPPIE DIE

GaiaNet_Server

I AM SORRY, PLEASE DO NOT REPORT MY UNAUTHORIZED USE OF THE CODE SOURCE

Ungatt Trunn II

NUCLEAR LAUNCH DETECTED OFF THE COAST OF [UNDEFINED] AT [UNDEFINED] HEADING FOR [UNDEFINED].

ESTIMATED DEATH TOLL: M.A.D.
SERVER REQUEST FOR ADMINISTRATORSERVER REQUEST FOR ADMINISTRATORSERVER REQUEST FOR ADMINISTRATOR
SERVER REQUEST FOR ADMINISTRATOR

SERVER REQUEST FOR ADMINISTRATOR
SERVER REQUEST FOR ADMINISTRATOR
SERVER REQUEST FOR ADMINISTRATOR

Terminal security lock engaged. Please contact the system administrator.
DIE HIPPIE DIE

GaiaNet_Server

THAT CODE IS AWFULLY FAMILIAR.. DID YOU EXTRACT THAT DATA FROM PROGRAM: SKAIANET?

IF YOU KNOW WHERE THE THIS SYSTEM MAYBE, PLEASE TELL ME

Ungatt Trunn II

The servers at UTE were unlocked by senior executive UNGATT TRUNN the second.
Debug mode engaged.


Ungatt Trunn Enterprises OS 1967 All Rights reserved.
C:\>
DIE HIPPIE DIE

GaiaNet_Server

YOU MAY EAT 250 ADDITIONAL LINES OF SOURCE CODE "RWL FORUM INDEX"
$("ul.admin_menu").superfish();
   });
</script>
</head>
<body>
<div id="br_wrap">
    <div id="outsideborder1">
        <div id="insideborder1">
            <table width="100%" cellpadding="0" cellspacing="0" border="0">
                <tr>
            <td>
            <a href="http://www.redwallwarlords.com/forums/index.php" title=""><img src="http://www.redwallwarlords.com/forums/Themes/blackrain_202/images/brlogo.gif" style="cursor: pointer; margin: 2px;" alt=""/></a>
            </td>
         </tr>
      </table>
   <div class="tborder">
      <div class="catbg">
         <img class="floatright" id="smflogo" src="http://www.redwallwarlords.com/forums/Themes/blackrain_202/images/smflogo.png" alt="Simple Machines Forum" />
         <h1 id="forum_name">Redwall: Warlords
         </h1>
      </div>
      <ul id="greeting_section" class="reset titlebg2">
         <li id="time" class="smalltext floatright">
            May 27, 2012, 03:22:06 PM
            <img id="upshrink" src="http://www.redwallwarlords.com/forums/Themes/blackrain_202/images/upshrink.gif" alt="*" title="Shrink or expand the header." align="bottom" style="display: none;" />
         </li>
         <li id="name">Hello <em>GaiaNet_Server</em></li>
      </ul>
      <div id="user_section" class="bordercolor">
         <div class="windowbg2 clearfix">
            <div id="myavatar"><img src="http://www.redwallwarlords.com/forums/index.php?action=dlattach;attach=474;type=avatar" alt="" class="avatar" /></div>
            <ul class="reset">
               <li><a href="http://www.redwallwarlords.com/forums/index.php?action=unread">Show unread posts since last visit.</a></li>
               <li><a href="http://www.redwallwarlords.com/forums/index.php?action=unreadreplies">Show new replies to your posts.</a></li>
               <li>Total time logged in: 2 hours and 37 minutes.
               </li>
            </ul>
         </div>
      </div>
      <div id="news_section" class="titlebg2 clearfix">
         <form class="floatright" id="search_form" action="http://www.redwallwarlords.com/forums/index.php?action=search2" method="post" accept-charset="ISO-8859-1">
            <a href="http://www.redwallwarlords.com/forums/index.php?action=search;advanced" title="Advanced search"><img id="advsearch" src="http://www.redwallwarlords.com/forums/Themes/blackrain_202/images/filter.gif" align="middle" alt="Advanced search" /></a>
            <input type="text" name="search" value="" style="width: 140px;" class="input_text" />&nbsp;
            <input type="submit" name="submit" value="Search" style="width: 11ex;" class="button_submit" />
            <input type="hidden" name="advanced" value="0" />
            <input type="hidden" name="topic" value="16235" />
         </form>
         <div id="random_news"><h3>News:</h3><p><a href="http://www.redwallwarlords.com/" class="bbc_link" target="_blank">RWL Home Page</a><br /><a href="http://www.redwall.org/" class="bbc_link" target="_blank">redwall.org</a> is back! Go check it out and spread the news!</p></div>
      </div>
   </div>
   <script type="text/javascript"><!-- // --><![CDATA[
      var oMainHeaderToggle = new smc_Toggle({
         bToggleEnabled: true,
         bCurrentlyCollapsed: false,
         aSwappableContainers: [
            'user_section',
            'news_section'
         ],
         aSwapImages: [
            {
               sId: 'upshrink',
               srcExpanded: smf_images_url + '/upshrink.gif',
               altExpanded: 'Shrink or expand the header.',
               srcCollapsed: smf_images_url + '/upshrink2.gif',
               altCollapsed: 'Shrink or expand the header.'
            }
         ],
         oThemeOptions: {
            bUseThemeSettings: true,
            sOptionName: 'collapse_header',
            sSessionVar: 'b0eac9c25f',
            sSessionId: '6a2db38c67c1b11085dec91cc9be586d'
         },
         oCookieOptions: {
            bUseCookie: false,
            sCookieName: 'upshrink'
         }
      });
   // ]]></script>
      <ul id="tabs6">
            <li id="button_home">
               <a class="" href="http://www.redwallwarlords.com/forums/index.php"><span>Home</span></a>
            </li>
            <li id="button_forum">
               <a class="active " href="http://www.redwallwarlords.com/forums/index.php?action=forum"><span>Forum</span></a>
            </li>
            <li id="button_help">
               <a class="" href="http://www.redwallwarlords.com/forums/index.php?action=help"><span>Help</span></a>
            </li>
            <li id="button_search">
               <a class="" href="http://www.redwallwarlords.com/forums/index.php?action=search"><span>Search</span></a>
            </li>
            <li id="button_profile">
               <a class="" href="http://www.redwallwarlords.com/forums/index.php?action=profile"><span>Profile</span></a>
               <ul>
                  <li>
                     <a href="http://www.redwallwarlords.com/forums/index.php?action=profile">Summary</a>
                  </li>
                  <li>
                     <a href="http://www.redwallwarlords.com/forums/index.php?action=profile;area=account">Account Settings</a>
                  </li>
                  <li>
                     <a href="http://www.redwallwarlords.com/forums/index.php?action=profile;area=forumprofile">Forum Profile</a>
                  </li>
               </ul>
            </li>
            <li id="button_pm">
               <a class="" href="http://www.redwallwarlords.com/forums/index.php?action=pm"><span>My Messages</span></a>
               <ul>
                  <li>
                     <a href="http://www.redwallwarlords.com/forums/index.php?action=pm">Read your messages</a>
                  </li>
                  <li>
                     <a href="http://www.redwallwarlords.com/forums/index.php?action=pm;sa=send">Send a message</a>
                  </li>
               </ul>
            </li>
            <li id="button_calendar">
               <a class="" href="http://www.redwallwarlords.com/forums/index.php?action=calendar"><span>Calendar</span></a>
            </li>
            <li id="button_mlist">
               <a class="" href="http://www.redwallwarlords.com/forums/index.php?action=mlist"><span>Members</span></a>
               <ul>
                  <li>
                     <a href="http://www.redwallwarlords.com/forums/index.php?action=mlist">View the memberlist</a>
                  </li>
                  <li>
                     <a href="http://www.redwallwarlords.com/forums/index.php?action=mlist;sa=search">Search For Members</a>
                  </li>
               </ul>
            </li>
            <li id="button_chat">
               <a class="" href="http://www.redwallwarlords.com/forums/chat/index.php"><span>Chat</span></a>
            </li>
            <li id="button_logout">
               <a class="" href="http://www.redwallwarlords.com/forums/index.php?action=logout;b0eac9c25f=6a2db38c67c1b11085dec91cc9be586d"><span>Logout</span></a>
            </li>
         </ul>
  <div style="clear: both;"></div>
   <ul class="linktree" id="linktree_upper">
      <li>
         <a href="http://www.redwallwarlords.com/forums/index.php?action=forum"><span>Redwall: Warlords</span></a> &gt;
      </li>
      <li>
         <a href="http://www.redwallwarlords.com/forums/index.php?action=forum#c3"><span>Discussion</span></a> &gt;
      </li>
      <li>
         <a href="http://www.redwallwarlords.com/forums/index.php?board=32.0"><span>Spa Room 101</span></a> &gt;
      </li>
      <li class="last">
         <a href="http://www.redwallwarlords.com/forums/index.php?topic=16235.0"><span>1159 hours</span></a>
      </li>
   </ul>
   <div id="bodyarea">
   <table id="sp_main">
      <tr>
         <td id="sp_center">
<a id="top"></a>
<a id="msg338824"></a>
<div class="clearfix margintop" id="postbuttons">
   <div class="next"><a href="http://www.redwallwarlords.com/forums/index.php?topic=16235.0;prev_next=prev#new">&laquo; previous</a> <a href="http://www.redwallwarlords.com/forums/index.php?topic=16235.0;prev_next=next#new">next &raquo;</a></div>
   <div class="margintop middletext floatleft">Pages: [<strong>1</strong>] </div>
   <div class="nav floatright">
      <div class="buttonlist_bottom">
         <ul class="reset clearfix">
            <li><a class="button_strip_reply" href="http://www.redwallwarlords.com/forums/index.php?action=post;topic=16235.0;last_msg=338892"><span>Reply</span></a></li>
            <li><a class="button_strip_notify" href="http://www.redwallwarlords.com/forums/index.php?action=notify;sa=on;topic=16235.0;b0eac9c25f=6a2db38c67c1b11085dec91cc9be586d" onclick="return confirm('Are you sure you wish to enable notification of new replies for this topic?');"><span>Notify</span></a></li>
            <li><a class="button_strip_mark_unread" href="http://www.redwallwarlords.com/forums/index.php?action=markasread;sa=topic;t=338892;topic=16235.0;b0eac9c25f=6a2db38c67c1b11085dec91cc9be586d"><span>Mark unread</span></a></li>
            <li><a class="button_strip_send" href="http://www.redwallwarlords.com/forums/index.php?action=emailuser;sa=sendtopic;topic=16235.0"><span>Send this topic</span></a></li>
            <li class="last"><a class="button_strip_print" href="http://www.redwallwarlords.com/forums/index.php?action=printpage;topic=16235.0" rel="new_win nofollow"><span>Print</span></a></li>
         </ul>
      </div></div>
</div>
<div id="forumposts" class="tborder">
   <h3 class="catbg3">
      <img src="http://www.redwallwarlords.com/forums/Themes/blackrain_202/images/topic/normal_post.gif" align="bottom" alt="" />
      <span>Author</span>
      <span id="top_subject">Topic: 1159 hours &nbsp;(Read 24 times)</span>
   </h3>
   <div id="whoisviewing" class="smalltext headerpadding windowbg2"><a href="http://www.redwallwarlords.com/forums/index.php?action=profile;u=4024">GaiaNet_Server</a> and 0 Guests are viewing this topic.
   </div>
   <form action="http://www.redwallwarlords.com/forums/index.php?action=quickmod2;topic=16235.0" method="post" accept-charset="ISO-8859-1" name="quickModForm" id="quickModForm" style="margin: 0;" onsubmit="return oQuickModify.bInEditMode ? oQuickModify.modifySave('6a2db38c67c1b11085dec91cc9be586d', 'b0eac9c25f') : false">
      <div class="bordercolor">
         <div class="clearfix windowbg largepadding">
            <div class="floatleft poster">
               <h4><a href="http://www.redwallwarlords.com/forums/index.php?action=profile;u=1832" title="View the profile of Ungatt Trunn II">Ungatt Trunn II</a></h4>
               <ul class="reset smalltext" id="msg_338824_extra_info">
                  <li>Communist Dictator</li>
                  <li>Permanent Resident</li>
                  <li><img src="http://www.redwallwarlords.com/forums/Themes/blackrain_202/images/star.gif" alt="*" /><img src="http://www.redwallwarlords.com/forums/Themes/blackrain_202/images/star.gif" alt="*" /><img src="http://www.redwallwarlords.com/forums/Themes/blackrain_202/images/star.gif" alt="*" /><img src="http://www.redwallwarlords.com/forums/Themes/blackrain_202/images/star.gif" alt="*" /><img src="http://www.redwallwarlords.com/forums/Themes/blackrain_202/images/star.gif" alt="*" /><img src="http://www.redwallwarlords.com/forums/Themes/blackrain_202/images/star.gif" alt="*" /><img src="http://www.redwallwarlords.com/forums/Themes/blackrain_202/images/star.gif" alt="*" /></li>
                  <li>Posts: 662</li>
                  <li class="margintop" style="overflow: auto;"><img class="avatar" src="http://i.imgur.com/1tS4D.png" width="100" height="100" alt="" /></li>
                  <li class="margintop">Sky Marshal of USF</li>
                  <li class="margintop">
                     <ul class="reset nolist">
                        <li><a class="icq new_win" href="http://www.icq.com/whitepages/about_me.php?uin=6666666666666" target="_blank" title="ICQ Messenger - 6666666666666"><img src="http://status.icq.com/online.gif?img=5&amp;icq=6666666666666" alt="ICQ Messenger - 6666666666666" width="18" height="18" /></a></li>
                        <li><a class="msn new_win" href="http://members.msn.com/codyrilley10@hotmail.com" title="MSN Messenger - codyrilley10@hotmail.com"><img src="http://www.redwallwarlords.com/forums/Themes/blackrain_202/images/msntalk.gif" alt="MSN Messenger - codyrilley10@hotmail.com" /></a></li>
                        <li><a class="aim" href="aim:goim?screenname=Cody%2C%2Bmoron&amp;message=Hi.+Are+you+there?" title="AOL Instant Messenger - Cody,+moron"><img src="http://www.redwallwarlords.com/forums/Themes/blackrain_202/images/aim.gif" alt="AOL Instant Messenger - Cody,+moron" /></a></li>
                        <li><a class="yim" href="http://edit.yahoo.com/config/send_webmesg?.target=lolol%40yahoo.com" title="Yahoo Instant Messenger - lolol@yahoo.com"><img src="http://opi.yahoo.com/online?u=lolol%40yahoo.com&amp;m=g&amp;t=0" alt="Yahoo Instant Messenger - lolol@yahoo.com" /></a></li>
                     </ul>
                  </li>
                  <li class="margintop">
                     <ul class="reset nolist">
                        <li><a href="http://www.redwallwarlords.com/forums/index.php?action=profile;u=1832"><img src="http://www.redwallwarlords.com/forums/Themes/blackrain_202/images/icons/profile_sm.gif" alt="View Profile" title="View Profile" border="0" /></a></li>
                        <li><a href="http://ummm.....com" title="www.google.com" target="_blank" class="new_win"><img src="http://www.redwallwarlords.com/forums/Themes/blackrain_202/images/www_sm.gif" alt="www.google.com" border="0" /></a></li>
                        <li><a href="http://www.redwallwarlords.com/forums/index.php?action=emailuser;sa=email;msg=338824" rel="nofollow"><img src="http://www.redwallwarlords.com/forums/Themes/blackrain_202/images/email_sm.gif" alt="Email" title="Email" /></a></li>
                        <li><a href="http://www.redwallwarlords.com/forums/index.php?action=pm;sa=send;u=1832" title="Personal Message (Online)"><img src="http://www.redwallwarlords.com/forums/Themes/blackrain_202/images/im_on.gif" alt="Personal Message (Online)" border="0" /></a></li>
                     </ul>
                  </li>
               </ul>
            </div>
            <div class="postarea">
               <div class="flow_hidden">
                  <div class="keyinfo">
                     <div class="messageicon"><img src="http://www.redwallwarlords.com/forums/Themes/blackrain_202/images/post/xx.gif" alt="" border="0" /></div>
                     <h5 id="subject_338824">
                        <a href="http://www.redwallwarlords.com/forums/index.php?topic=16235.msg338824#msg338824" rel="nofollow">1159 hours</a>
                     </h5>
                     <div class="smalltext">&#171; <strong> on:</strong> <strong>Today</strong> at 09:59:54 AM &#187;</div>
                     <div id="msg_338824_quick_mod"></div>
                  </div>
                  <ul class="reset smalltext postingbuttons">
                     <li><a href="http://www.redwallwarlords.com/forums/index.php?action=post;quote=338824;topic=16235.0;last_msg=338892" onclick="return oQuickReply.quote(338824);"><img src="http://www.redwallwarlords.com/forums/Themes/blackrain_202/images/buttons/quote.gif" alt="Reply" align="middle" /><strong>Quote</strong></a></li>
                  </ul>
               </div>
               <div class="post">
                  <hr class="hrcolor" width="100%" size="1" />
                  <div class="inner" id="msg_338824">Nuclear deterrence successful. Return to DEFCON 5. Close missile silos. </div>
               </div>
            </div>
            <div class="moderatorbar">
               <div class="smalltext floatleft" id="modified_338824">
               </div>
               <div class="smalltext largepadding floatright">
                  <a href="http://www.redwallwarlords.com/forums/index.php?action=reporttm;topic=16235.0;msg=338824">Report to moderator</a> &nbsp;
                  <img src="http://www.redwallwarlords.com/forums/Themes/blackrain_202/images/ip.gif" alt="" border="0" />
                  <a href="http://www.redwallwarlords.com/forums/index.php?action=helpadmin;help=see_member_ip" onclick="return reqWin(this.href);" class="help">Logged</a>
               </div>
               <div class="signature" id="msg_338824_signature"><div align="center"><img src="http://i.imgur.com/6OOjw.png" alt="" width="500" height="150" class="bbc_img resized" /><br /><br /><a href="http://www.youtube.com/watch?v=lEl2xvs4RG8" class="bbc_link" target="_blank">Spa Victory Music!</a><br /></div></div>
            </div>
         </div>
      </div>
      <div class="bordercolor">
         <a id="msg338825"></a>
         <div class="clearfix topborder windowbg2 largepadding">
            <div class="floatleft poster">
               <h4><a href="http://www.redwallwarlords.com/forums/index.php?action=profile;u=3569" title="View the profile of Camaclue">Camaclue</a></h4>
               <ul class="reset smalltext" id="msg_338825_extra_info">
                  <li>Old Timer</li>
                  <li><img src="http://www.redwallwarlords.com/forums/Themes/blackrain_202/images/star.gif" alt="*" /><img

Ungatt Trunn II

Activating ADMIN personality, Ungatt Trunn the first.
Retrieving information...
Accessing Hell.
Retrieving Soul...
Calculating synapses...
Done.
DIE HIPPIE DIE

GaiaNet_Server


Ungatt Trunn II

It didn't work! I BLAME YOU!!
DIE HIPPIE DIE