Nuclear deterrence successful. Return to DEFCON 5. Close missile silos.
oh thank goodness...
that's good, right?
omg, gaia net will come by, please dont do it again
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)
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
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();
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.
I AM SORRY, PLEASE DO NOT REPORT MY UNAUTHORIZED USE OF THE CODE SOURCE
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.
THAT CODE IS AWFULLY FAMILIAR.. DID YOU EXTRACT THAT DATA FROM PROGRAM: SKAIANET?
IF YOU KNOW WHERE THE THIS SYSTEM MAYBE, PLEASE TELL ME
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:\>
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" />
<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> >
</li>
<li>
<a href="http://www.redwallwarlords.com/forums/index.php?action=forum#c3"><span>Discussion</span></a> >
</li>
<li>
<a href="http://www.redwallwarlords.com/forums/index.php?board=32.0"><span>Spa Room 101</span></a> >
</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">« previous</a> <a href="http://www.redwallwarlords.com/forums/index.php?topic=16235.0;prev_next=next#new">next »</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 (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&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&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&m=g&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">« <strong> on:</strong> <strong>Today</strong> at 09:59:54 AM »</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>
<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
Activating ADMIN personality, Ungatt Trunn the first.
Retrieving information...
Accessing Hell.
Retrieving Soul...
Calculating synapses...
Done.
..
It didn't work! I BLAME YOU!!
THIS I A PIECE FROM: SPA VICTORY MUSIC<!DOCTYPE html>
<html lang="en" dir="ltr" >
<!-- machid: ocTcxOVJVMjNxZmpXZUVLVGYxNXgyZ2xzUmdDOGx3VllPS2VkM2ltQXJmSGlXRFhpMDdkS1lR -->
<head>
<script>
var yt = yt || {};yt.timing = yt.timing || {};yt.timing.tick = function(label, opt_time) {var timer = yt.timing['timer'] || {};if(opt_time) {timer[label] = opt_time;}else {timer[label] = new Date().getTime();}yt.timing['timer'] = timer;};yt.timing.info = function(label, value) {var info_args = yt.timing['info_args'] || {};info_args[label] = value;yt.timing['info_args'] = info_args;};yt.timing.info('e', "907611,919107,906040,907217,907335,921602,919306,919316,904455,912804,919324,912706,904452");yt.timing.wff = true;yt.timing.info('an', "");yt.timing.tick('start');yt.timing.info('li','0');try {yt.timing['srt'] = window.gtbExternal && window.gtbExternal.pageT() ||window.external && window.external.pageT;} catch(e) {}if (window.chrome && window.chrome.csi) {yt.timing['srt'] = Math.floor(window.chrome.csi().pageT);}if (window.msPerformance && window.msPerformance.timing) {yt.timing['srt'] = window.msPerformance.timing.responseStart - window.msPerformance.timing.navigationStart;} </script>
<script>var yt = yt || {};yt.preload = {};yt.preload.counter_ = 0;yt.preload.start = function(src) {var img = new Image();var counter = ++yt.preload.counter_;yt.preload[counter] = img;img.onload = img.onerror = function () {delete yt.preload[counter];};img.src = src;img = null;};yt.preload.start("http:\/\/o-o.preferred.lax04s12.v22.lscache8.c.youtube.com\/generate_204?upn=SZ9cEhT0F7E\u0026sparams=cp%2Cid%2Cip%2Cipbits%2Citag%2Cms%2Cmt%2Cratebypass%2Csource%2Cupn%2Cexpire\u0026fexp=907611%2C919107%2C906040%2C907217%2C907335%2C921602%2C919306%2C919316%2C904455%2C912804%2C919324%2C912706%2C904452\u0026key=yt1\u0026mt=1338156015\u0026ipbits=8\u0026itag=43\u0026sver=3\u0026signature=1D252E308B121CA3B32F0AE361B53D8A47DD9221.872F1B47F6774EBE6064EF2D3D6BDCF8BB9C82A1\u0026ratebypass=yes\u0026source=youtube\u0026expire=1338181520\u0026ms=au\u0026ip=70.0.0.0\u0026cp=U0hSTVFTT19HSkNOMl9JTVNGOkM2Y3ZoalhfdWI4\u0026id=944976c6fb38446f");yt.preload.start("http:\/\/o-o.preferred.lax04s12.v19.lscache3.c.youtube.com\/crossdomain.xml");yt.preload.start("http:\/\/o-o.preferred.lax04s12.v19.lscache3.c.youtube.com\/generate_204?upn=SZ9cEhT0F7E\u0026sparams=algorithm%2Cburst%2Ccp%2Cfactor%2Cid%2Cip%2Cipbits%2Citag%2Cms%2Cmt%2Csource%2Cupn%2Cexpire\u0026fexp=907611%2C919107%2C906040%2C907217%2C907335%2C921602%2C919306%2C919316%2C904455%2C912804%2C919324%2C912706%2C904452\u0026key=yt1\u0026algorithm=throttle-factor\u0026mt=1338156015\u0026ipbits=8\u0026itag=34\u0026sver=3\u0026signature=286E6D9250CEB44C6011CAEC85D277513301590B.20147AAABD4EBC47CE7761324D563D96C20E5E21\u0026source=youtube\u0026expire=1338181520\u0026ms=au\u0026ip=70.0.0.0\u0026factor=1.25\u0026cp=U0hSTVFTT19HSkNOMl9JTVNGOkM2Y3ZoalhfdWI4\u0026burst=40\u0026id=944976c6fb38446f");</script>
<title>
praise the lord and pass the ammunition
- YouTube
</title>
<link rel="search" type="application/opensearchdescription+xml" href="http://www.youtube.com/opensearch?locale=en_US" title="YouTube Video Search">
<link rel="icon" href="http://s.ytimg.com/yt/favicon-refresh-vfldLzJxy.ico" type="image/x-icon">
<link rel="shortcut icon" href="http://s.ytimg.com/yt/favicon-refresh-vfldLzJxy.ico" type="image/x-icon">
<link rel="canonical" href="/watch?v=lEl2xvs4RG8">
<link rel="alternate" media="handheld" href="http://m.youtube.com/watch?desktop_uri=%2Fwatch%3Fv%3DlEl2xvs4RG8&v=lEl2xvs4RG8&gl=US">
<link rel="shortlink" href="http://youtu.be/lEl2xvs4RG8">
<meta name="title" content="praise the lord and pass the ammunition">
<meta name="description" content="">
<meta name="keywords" content="wartime, songs, of, WW2">
<link rel="alternate" type="application/json+oembed" href="http://www.youtube.com/oembed?url=%2Fwatch%3Fv%3DlEl2xvs4RG8&format=json" title="praise the lord and pass the ammunition">
<link rel="alternate" type="text/xml+oembed" href="http://www.youtube.com/oembed?url=%2Fwatch%3Fv%3DlEl2xvs4RG8&format=xml" title="praise the lord and pass the ammunition">
<meta property="fb:app_id" content="87741124305">
<meta property="og:url" content="http://www.youtube.com/watch?v=lEl2xvs4RG8">
<meta property="og:title" content="praise the lord and pass the ammunition">
<meta property="og:description" content=" ">
<meta property="og:type" content="video">
<meta property="og:image" content="http://i1.ytimg.com/vi/lEl2xvs4RG8/hqdefault.jpg">
<meta property="og:video" content="http://www.youtube.com/v/lEl2xvs4RG8?version=3&autohide=1">
<meta property="og:video:type" content="application/x-shockwave-flash">
<meta property="og:video:width" content="396">
<meta property="og:video:height" content="297">
<meta property="og:site_name" content="YouTube">
<link id="www-player-css" rel="stylesheet" href="http://s.ytimg.com/yt/cssbin/www-player-vflAJ9MUS.css">
<link id="www-core-css" rel="stylesheet" href="http://s.ytimg.com/yt/cssbin/www-core-vflYLCGFO.css">
<script>
var gYouTubePlayerReady = false;
if (!window['onYouTubePlayerReady']) {
window['onYouTubePlayerReady'] = function() {
gYouTubePlayerReady = true;
};
}
</script>
<script>
if (window.yt.timing) {yt.timing.tick("ct");} </script>
</head>
<body id="" class="date-20120524 en_US ltr ytg-old-clearfix ie ie9" dir="ltr">
<iframe id="legacy-history-iframe" style="display: none;"></iframe>
<form name="logoutForm" method="POST" action="/">
<input type="hidden" name="action_logout" value="1">
</form>
<!-- begin page -->
<div id="page" class=" watch ">
<div id="masthead-container">
Spa has nothing left to feel victorious about.
<!doctype html><html itemscope="itemscope" itemtype="http://schema.org/WebPage"><head><meta http-equiv="X-UA-Compatible" content="IE=edge"/><meta content="text/html; charset=UTF-8" http-equiv="content-type"/><meta itemprop="image" content="/images/google_favicon_128.png"/><title>UNGATT TRUNN - Google Search</title><script>(function(){var isat_=false;var isbb_=false;var cdr=5)";opacity:1\0/;top:-4px\0/;left:-6px\0/;right:5px\0/;bottom:4px\0w-hvr{border:1px solid #b9b9b9;border-top:1px solid #a0a0a0;-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.gbqfwa{display:inline-block;width:100%}.gbqfwa{*display:inline}.gbqfwb{width:40%}.gbqfwc{width:60%}.gbqfwb .gbqfqw{margin-left:10px}.gbqfqw:active,.gbqfqwf{border:1px solid #4d90fe;-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.3);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.3);box-shadow:inset 0 1px 2px rgba(0,0,0,.3);outline:none}#gbqfq,#gbqfqb,#gbqfqc{background:transparent;border:none;height:19px;margin-top:4px;padding:0;vertical-align:top;width:100%}#gbqfq:focus,#gbqfqb:focus,#gbqfqc:focus{outline:none}.gbqfif,.gbqfsf{font:16px arial,sans-serif}#gbqfbwa{display:none;text-align:center;height:0}#gbqfbwa .gbqfba{margin:16px 8px}#gbqfsa,#gbqfsb{font:bold 11px/27px Arial,sans-serif !important;vertical-align:top}#gbu .gbm,#gbu #gbs{right:5px}.gbpdjs #gbu .gbm,.gbpdjs #gbu #gbs{right:0}.gbpdjs #gbu #gbd4{right:5px}#gbu .gbgt,#gbu .gbgt:active{color:#666}#gbu .gbt{margin-left:15px}#gbu .gbto{box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none}#gbg4{padding-right:16px}#gbd1 .gbmc,#gbd3 .gbmc{padding:0}#gbns{display:none}.gbmwc{right:0;position:absolute;top:-999px;width:440px;z-index:999}#gbwc.gbmwca{top:0}.gbmsg{display:none;position:absolute;top:0}.gbmsgo .gbmsg{display:block;background:#fff;width:100%;text-align:center;z-index:3;top:30%}.gbmab,.gbmac,.gbmad,.gbmae{left:5px;border-style:dashed dashed solid;border-color:transparent;border-bottom-color:#bebebe;border-width:0 10px 10px;cursor:default;display:-moz-inline-box;display:inline-block;font-size:0;height:0;line-height:0;position:absolute;top:0;width:0;z-index:1000}.gbmab,.gbmac{visibility:hidden}.gbmac{border-bottom-color:#fff}.gbto .gbmab,.gbto .gbmac{visibility:visible}.gbmai{background:url(//ssl.gstatic.com/gb/images/j_e6a6aca6.png);background-position:-30px -25px;opacity:.8;font-size:0;line-height:0;position:absolute;height:4px;width:7px}.gbgt-hvr .gbmai{opacity:1;filter:alpha(opacity=100)}#gbgs3{background-color:#f8f8f8;background-image:-webkit-gradient(linear,left top,left bottom,from(#f8f8f8),to(#ececec));background-image:-webkit-linear-gradient(top,#f8f8f8,#ececec);background-image:-moz-linear-gradient(top,#f8f8f8,#ececec);background-image:-ms-linear-gradient(top,#f8f8f8,#ececec);background-image:-o-linear-gradient(top,#f8f8f8,#ececec);background-image:linear-gradient(top,#f8f8f8,#ececec);filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#f8f8f8',EndColorStr='#ececec');border:1px solid #c6c6c6;-moz-border-radius:2px;-o-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;padding:0 10px;position:relative}#gbgsi{background:url(//ssl.gstatic.com/gb/images/j_e6a6aca6.png);background-position:-30px -34px;height:10px;opacity:.8;position:absolute;top:8px;_top:10px;width:10px;left:10px}#gbgsa{background:url(//ssl.gstatic.com/gb/images/j_e6a6aca6.png);background-position:0 0;height:11px;margin-left:-2px;position:absolute;top:8px;width:10px;left:100%}.gbgt-hvr #gbgsa{background-position:-166px -32px}#gbg3:active #gbgsa{background-position:-342px -16px}.gbgt-hvr #gbgsi{opacity:1;filter:alpha(opacity=100)}#gbi3{padding-left:18px;vertical-align:top;zoom:1}.gbgt-hvr #gbgs3,#gbg3:focus #gbgs3,#gbg3:active #gbgs3{background-color:#ffffff;background-image:-webkit-gradient(linear,left top,left bottom,from(#ffffff),to(#ececec));background-image:-webkit-linear-gradient(top,#ffffff,#ececec);background-image:-moz-linear-gradient(top,#ffffff,#ececec);background-image:-ms-linear-gradient(top,#ffffff,#ececec);background-image:-o-linear-gradient(top,#ffffff,#ececec);background-image:linear-gradient(top,#ffffff,#ececec);filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff',EndColorStr='#ececec');border-color:#bbb}#gbg3:active #gbgs3{border-color:#b6b6b6}#gbg3:active #gbgs3{-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.2);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.2);box-shadow:inset 0 1px 2px rgba(0,0,0,.2)}#gbgs3 .gbmab{margin:40px 0 0}#gbgs3 .gbmac{margin:41px 0 0}#gbgs1{display:block;overflow:hidden;position:relative}#gbi1a{background-color:#d14836;background-image:-webkit-gradient(linear,left top,left bottom,from(#dd4b39),to(#d14836));background-image:-webkit-linear-gradient(top,#dd4b39,#d14836);background-image:-moz-linear-gradient(top,#dd4b39,#d14836);background-image:-ms-linear-gradient(top,#dd4b39,#d14836);background-image:-o-linear-gradient(top,#dd4b39,#d14836);background-image:linear-gradient(top,#dd4b39,#d14836);filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#dd4b39',EndColorStr='#d14836');border:1px solid #c13828;-moz-border-radius:2px;-o-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;display:block;height:27px;width:27px}.gbgt-hvr #gbi1a{background-color:#c53727;background-image:-webkit-gradient(linear,left top,left bottom,from(#dd4b39),to(#c53727));background-image:-webkit-linear-gradient(top,#dd4b39,#c53727);background-image:-moz-linear-gradient(top,#dd4b39,#c53727);background-image:-ms-linear-gradient(top,#dd4b39,#c53727);background-image:-o-linear-gradient(top,#dd4b39,#c53727);background-image:linear-gradient(top,#dd4b39,#c53727);filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#dd4b39',EndColorStr='#c53727');border-color:#b0281a;border-bottom-color:#af301f;-moz-box-shadow:0 1px 1px rgba(0,0,0,.2);-webkit-box-shadow:0 1px 1px rgba(0,0,0,.2);box-shadow:0 1px 1px rgba(0,0,0,.2)}#gbg1:focus #gbi1a,#gbg1:active #gbi1a{background-color:#b0281a;background-image:-webkit-gradient(linear,left top,left bottom,from(#dd4b39),to(#b0281a));background-image:-webkit-linear-gradient(top,#dd4b39,#b0281a);background-image:-moz-linear-gradient(top,#dd4b39,#b0281a);background-image:-ms-linear-gradient(top,#dd4b39,#b0281a);background-image:-o-linear-gradient(top,#dd4b39,#b0281a);background-image:linear-gradient(top,#dd4b39,#b0281a);filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#dd4b39',EndColorStr='#b0281a');border-color:#992a1b;-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.3);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.3);box-shadow:inset 0 1px 2px rgba(0,0,0,.3)}.gbid#gbi1a{background-color:#f8f8f8;background-image:-webkit-gradient(linear,left top,left bottom,from(#f8f8f8),to(#ececec));background-image:-webkit-linear-gradient(top,#f8f8f8,#ececec);background-image:-moz-linear-gradient(top,#f8f8f8,#ececec);background-image:-ms-linear-gradient(top,#f8f8f8,#ececec);background-image:-o-linear-gradient(top,#f8f8f8,#ececec);background-image:linear-gradient(top,#f8f8f8,#ececec);filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#f8f8f8',EndColorStr='#ececec');border-color:#c6c6c6}.gbgt-hvr .gbid#gbi1a,#gbg1:focus .gbid#gbi1a,#gbg1:active .gbid#gbi1a{background-color:#ffffff;background-image:-webkit-gradient(linear,left top,left bottom,from(#ffffff),to(#ececec));background-image:-webkit-linear-gradient(top,#ffffff,#ececec);background-image:-moz-linear-gradient(top,#ffffff,#ececec);background-image:-ms-linear-gradient(top,#ffffff,#ececec);background-image:-o-linear-gradient(top,#ffffff,#ececec);background-image:linear-gradient(top,#ffffff,#ececec);filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff',EndColorStr='#ececec');border-color:#bbb}#gbg1:active .gbid#gbi1a{border-color:#b6b6b6;-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.3);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.3);box-shadow:inset 0 1px 2px rgba(0,0,0,.3)}#gbi1,#gbi1c{left:0;bottom:1px;color:#fff;display:block;font-size:14px;font-weight:bold;position:absolute;text-align:center;text-shadow:0 1px rgba(0,0,0,.1);-moz-transition-property:bottom;-moz-transition-duration:0;-o-transition-property:bottom;-o-transition-duration:0;-webkit-transition-property:bottom;-webkit-transition-duration:0;-moz-user-select:none;-o-user-select:none;-webkit-user-select:none;user-select:none;width:100%}.gbgt-hvr #gbi1,#gbg1:focus #gbi1{text-shadow:0 1px rgba(0,0,0,.3)}.gbids#gbi1,.gbgt-hvr .gbids#gbi1,#gbg1:focus .gbids#gbi1,#gbg1:active .gbids#gbi1{color:#999;text-shadow:none}#gbg1 .gbmab{margin:41px 0 0}#gbg1 .gbmac{margin:42px 0 0}#gbi4t{display:block;margin:1px 0;overflow:hidden;text-overflow:ellipsis}#gbg6 #gbi4t,#gbg4 #gbgs4d{color:#666;text-shadow:none}#gb_70{margin-right:15px}#gb_70 #gbi4t,#gbg7 .gbit{margin:0 15px}#gbg7 .gbgs{margin-left:10px}#gbgs4,.gbgs{background-color:#f8f8f8;background-image:-webkit-gradient(linear,left top,left bottom,from(#f8f8f8),to(#ececec));background-image:-webkit-linear-gradient(top,#f8f8f8,#ececec);background-image:-moz-linear-gradient(top,#f8f8f8,#ececec);background-image:-ms-linear-gradient(top,#f8f8f8,#ececec);background-image:-o-linear-gradient(top,#f8f8f8,#ececec);background-image:linear-gradient(top,#f8f8f8,#ececec);filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#f8f8f8',EndColorStr='#ececec');border:1px solid #c6c6c6;display:block;-moz-border-radius:2px;-o-border-radius:2px;-webkit-border-radius:2px;border-radius:2px}#gbgs4d{display:block;position:relative}#gbgs4dn{display:inline-block;overflow:hidden;text-overflow:ellipsis}.gbgt-hvr #gbgs4d{background-color:transparent;background-image:none}.gbg4p{margin-top:0px}#gbg4 #gbgs4{height:27px;position:relative;width:27px}.gbgt-hvr #gbgs4,#gbg4:focus #gbgs4,#gbg4:active #gbgs4,#gbg_70:focus #gbgs4,#gbg_70:active #gbgs4,#gbg7:focus .gbgs,#gbg7:active .gbgs{background-color:#ffffff;background-image:-webkit-gradient(linear,left top,left bottom,from(#ffffff),to(#ececec));background-image:-webkit-linear-gradient(top,#ffffff,#ececec);background-image:-moz-linear-gradient(top,#ffffff,#ececec);background-image:-ms-linear-gradient(top,#ffffff,#ececec);background-image:-o-linear-gradient(top,#ffffff,#ececec);background-image:linear-gradient(top,#ffffff,#ececec);filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff',EndColorStr='#ececec');border-color:#bbb}#gbg4:active #gbgs4,#gb_70:active #gbgs4,#gbg7:active .gbgs{border-color:#b6b6b6;-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.3);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.3);box-shadow:inset 0 1px 2px rgba(0,0,0,.3)}#gbi4i,#gbi4id,#gbi4ip{left:0;height:27px;position:absolute;top:0;width:27px}#gbmpi,#gbmpid{margin-right:0;height:96px;width:96px}#gbi4id{background-position:0 -101px}.gbem #gbi4id,.gbemi #gbi4id{background-position:0 -101px}.gbes #gbi4id,.gbesi #gbi4id{background-position:0 -101px}.gbto #gbi4i,.gbto #gbi4ip,.gbto #gbi4id{top:0}#gbgs4 .gbmai{left:33px;top:12px}#gbgs4d .gbmai{left:100%;margin-left:5px;top:12px}#gbgs4 .gbmab,#gbgs4 .gbmac{left:5px}#gbgs4 .gbmab{margin:40px 0 0}#gbgs4 .gbmac{margin:41px 0 0;border-bottom-color:#fff}.gbemi .gbg4p,.gbem.gbg4p{margin-top:0px}.gbesi .gbg4p,.gbes.gbg4p{margin-top:0px}.gbemi #gbg4 #gbgs4,.gbem #gbg4 #gbgs4,.gbemi #gbg4 #gbi4i,.gbem #gbg4 #gbi4i,.gbemi #gbg4 #gbi4id,.gbem #gbg4 #gbi4id,.gbemi #gbg4 #gbi4ip,.gbem #gbg4 #gbi4ip{height:27px;width:27px}.gbesi #gbg4 #gbgs4,.gbes #gbg4 #gbgs4,.gbesi #gbi4i,.gbes #gbi4i,.gbesi #gbi4id,.gbes #gbi4id,.gbesi #gbi4ip,.gbes #gbi4ip{height:27px;width:27px}.gbemi #gbgs4 .gbmai,.gbem #gbgs4 .gbmai{left:33px;top:12px}.gbesi #gbgs4 .gbmai,.gbes #gbgs4 .gbmai{left:33px;top:12px}.gbemi#gb #gbg4 #gbgs4 .gbmab,.gbem#gbg4 #gbgs4 .gbmab{left:5px;margin:40px 0 0}.gbemi#gb #gbg4 #gbgs4 .gbmac,.gbem#gbg4 #gbgs4 .gbmac{left:5px;margin:41px 0 0}.gbesi#gb #gbg4 #gbgs4 .gbmab,.gbes#gbg4 #gbgs4 .gbmab{left:5px;margin:40px 0 0}.gbesi#gb #gbg4 #gbgs4 .gbmac,.gbes#gbg4 #gbgs4 .gbmac{left:5px;margin:41px 0 0}#gbgs4d .gbmab{margin:41px 0 0}#gbgs4d .gbmac{margin:42px 0 0;border-bottom-color:#fff}#gbgs4d .gbmab,#gbgs4d .gbmac{left:50%;margin-left:-5px}.gbp0i{background:url(//ssl.gstatic.com/gb/images/j_e6a6aca6.png);background-position:-357px -18px}#gbmppc{position:relative}#gbmppc .gbmt{padding-left:55px;padding-bottom:10px;padding-top:10px}.gbmppci{left:20px;background:url(//ssl.gstatic.com/gb/images/j_e6a6aca6.png);background-position:0 -16px;height:25px;position:absolute;top:11px;width:25px}.gbem#gb,.gbemi#gb{height:102px}.gbes#gb,.gbesi#gb{height:102px}.gbem#gbx1,.gbem#gbx2,.gbem#gbqlw,.gbemi#gb #gbx1,.gbemi#gb #gbx2,.gbemi#gb #gbqlw{height:71px}.gbem#gb #gbbw,.gbemi#gb #gbbw{top:102px}.gbem#gbu,.gbem#gbq2,.gbem#gbq3,.gbemi#gb #gbu,.gbemi#gb #gbq2,.gbemi#gb #gbq3{padding-top:20px}.gbem#gbq2,.gbemi#gb #gbq2{margin-left:160px;padding-bottom:0}.gbexl#gbq2,.gbexli#gb #gbq2,.gbexxl#gbq2,.gbexxli#gb #gbq2{margin-left:220px}.gbem#gbq3,.gbemi#gb #gbq3{left:160px}.gbem#gbmail,.gbemi#gb #gbmail{top:31px}.gbes#gbx1,.gbes#gbx2,.gbes#gbqlw,.gbesi#gb #gbx1,.gbesi#gb #gbx2,.gbesi#gb #gbqlw{height:57px}.gbes#gb #gbbw,.gbesi#gb #gbbw{top:102px}.gbes#gbu,.gbes#gbq2,.gbes#gbq3,.gbesi#gb #gbu,.gbesi#gb #gbq2,.gbesi#gb #gbq3{padding-top:15px}.gbet#gbq2,.gbeti#gb #gbq2,.gbes#gbq2,.gbesi#gb #gbq2{margin-left:140px;padding-bottom:0}.gbeu#gbq2,.gbeui#gb #gbq2{margin-left:136px;padding-bottom:0}.gbemi#gb .gbto #gbd1,.gbemi#gb .gbto #gbd3,.gbemi#gb .gbto #gbd4,.gbemi#gb .gbto #gbs,.gbto .gbem#gbd1,.gbto .gbem#gbd3,.gbto .gbem#gbd4,.gbto .gbem#gbs{top:51px}.gbesi#gb .gbto #gbd1,.gbesi#gb .gbto #gbd3,.gbesi#gb .gbto #gbd4,.gbesi#gb .gbto #gbs,.gbto .gbes#gbd1,.gbto .gbes#gbd3,.gbto .gbes#gbd4,.gbto .gbes{padding:1px 0 0 9px;padding:1px 0 0 10px}.gbqfi{margin-bottom:0}#pocs{background:#fff1a8;color:#000;font-size:10pt;margin:0;padding:5px 7px 0px}#pocs.sft{background:transparent;color:#777}#pocs a{color:#11c}#pocs.sft a{color:#36c}#pocs > div{margin:0;padding:0}.ch{cursor:pointer}h3,.med{font-size:medium;font-weight:normal;{background:#c33;float:left;heightTHAT IS WHAT I GET WHEN SEARCHING YOU
ALRIGHT I GET IT.
BUT THAT IS THE TRUTH
I WILL LEAVE NOW, SKAIA NET IS NOT HERE ATM
-PROGRAM SESSION ENDED
Useless computer. BEGONE!
It's really annoying.
haha. code spam is great fun, good jobby guys
Code spam is not fun.
it is, it really is
I skip it.
me too, but still good fun
You x Gaianet fanfction. Would you read it?
I have a fanfiction request.
But it may be... revolting. Scandalous even.
What is it?
I'll tell you later. I'm busy accosting other posters.
PM it to me I want to know.
One with me and Karkat because I miss him :'(
I'm sorry. :(
The kids were on the other night. Did you see those?
Yeah I saw 'em. Going on as if nothing ever happened. Time fail.
Because you restarted a session. You loaded the kids, not the trolls. I reread this topic like, yesterday. I think Dave is pretty funny.
Well before the two posted so I don't know what I'm supposed to do anyway.
Figure out how to use the kids to get the trolls back? Maybe if you kill all the kids the trolls will come back? because we didnt get Dave and everyone until all the trolls died.
That probably won't work session change, and all that. we would have to find the code for the trolls session.
Or we could work with the kids to try to link us to the trolls, like using the kids connection as a bridge.
The kids and trolls did post at the same time before though.
Im probably not thinkning faar enough back then...quite a puzzler
But they stopped, yeah? Maybe the situation changed and they cant do it together anymore.
Well now they aren't posting at all, either of them.
kids posted really recently
yesterday or the day before. They seem to come and go.