<?xml version="1.0" encoding="UTF-8"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>St0rmNet Forums</title>
		<link>http://www.st0rm.net/forum/</link>
		<description>This is the St0rm Network Gaming Forums</description>
		<language>en</language>
		<lastBuildDate>Mon, 06 Sep 2010 18:45:25 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>1</ttl>
		<image>
			<url>http://www.st0rm.net/forum/cpstyles/darkvision/misc/rss.png</url>
			<title>St0rmNet Forums</title>
			<link>http://www.st0rm.net/forum/</link>
		</image>
		<item>
			<title>nijo777 has joined St0rm.Net!</title>
			<link>http://www.st0rm.net/forum/showthread.php?12009-nijo777-has-joined-St0rm.Net!&amp;goto=newpost</link>
			<pubDate>Mon, 06 Sep 2010 18:28:28 GMT</pubDate>
			<description>Glad you could find us nijo777 at St0rm.Net, 
 
You should join us on Teamspeak and IRC sometime! We would love to chat with you! 
 
 
 
 
Regards, 
...</description>
			<content:encoded><![CDATA[<div>Glad you could find us nijo777 at St0rm.Net,<br />
<br />
You should join us on Teamspeak and IRC sometime! We would love to chat with you!<br />
<br />
<br />
<br />
<br />
Regards,<br />
<br />
I R MAOW!</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?11-Introductions">Introductions</category>
			<dc:creator>Maow</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?12009-nijo777-has-joined-St0rm.Net!</guid>
		</item>
		<item>
			<title>Welcome m4myat!</title>
			<link>http://www.st0rm.net/forum/showthread.php?12006-Welcome-m4myat!&amp;goto=newpost</link>
			<pubDate>Mon, 06 Sep 2010 11:48:06 GMT</pubDate>
			<description>Glad you could find us m4myat at St0rm.Net, 
 
You should join us on Teamspeak and IRC sometime! We would love to chat with you! 
 
 
 
 
Regards, 
...</description>
			<content:encoded><![CDATA[<div>Glad you could find us m4myat at St0rm.Net,<br />
<br />
You should join us on Teamspeak and IRC sometime! We would love to chat with you!<br />
<br />
<br />
<br />
<br />
Regards,<br />
<br />
I R MAOW!</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?11-Introductions">Introductions</category>
			<dc:creator>Maow</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?12006-Welcome-m4myat!</guid>
		</item>
		<item>
			<title>3D Sierpinski Gasket (OpenGL)</title>
			<link>http://www.st0rm.net/forum/showthread.php?12001-3D-Sierpinski-Gasket-(OpenGL)&amp;goto=newpost</link>
			<pubDate>Mon, 06 Sep 2010 04:00:02 GMT</pubDate>
			<description>Me playing around with OpenGL. 
 
http://www.youtube.com/watch?v=WabfpVlf3RQ 
 
Here is the source code if you want to try it yourself... 
NOTE: You...</description>
			<content:encoded><![CDATA[<div>Me playing around with OpenGL.<br />
<br />

<object class="restrain" type="application/x-shockwave-flash" width="640" height="385" data="http://www.youtube.com/v/WabfpVlf3RQ">
	<param name="movie" value="http://www.youtube.com/v/WabfpVlf3RQ" />
	<param name="wmode" value="transparent" />
	<!--[if IE 6]>
	<embed width="640" height="385" type="application/x-shockwave-flash" src="http://www.youtube.com/v/WabfpVlf3RQ" />
	<![endif]--></object>
 <br />
<br />
Here is the source code if you want to try it yourself...<br />
NOTE: You need GLUT installed. Be sure to link the library as well and include the DLL.<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code"><br />
//includes<br />
#include &lt;iostream&gt;<br />
#include &lt;math.h&gt;<br />
#include &quot;glut.h&quot; //NOTE: This file may be included in the system.<br />
<br />
//functions<br />
void ReshapeGlutWindow(int _width, int _height);<br />
void IdleGlutFunction();<br />
void KeyboardGlutFunction(unsigned char _key, int _x, int _y);<br />
void KeyboardUpGlutFunction(unsigned char _key, int _x, int _y);<br />
void MouseButtonGlutFunction(int _button, int _state, int _x, int _y);<br />
void MouseMotionGlutFunction(int _x, int _y);<br />
void DisplayGlutWindow();<br />
void SierpinskiGasket3f(float _rad, int _count);<br />
void SierpinskiGasket3f_A(float _point0Arr[], float _point1Arr[], float _point2Arr[], float _point3Arr[], int _count);<br />
void SierpinskiGasket3f_LineMidPoint(float _midPointOut[], float _point0Arr[], float _point1Arr[]);<br />
<br />
//camera position and rotation<br />
float camPos[3] = {0.0f, 0.0f, 370.0f}; //x,y,z position<br />
float camRot[3] = {0.0f, 0.0f, 0.0f}; //x,y,z rotation<br />
float camPosKeyDown[3] = {0, 0, 0}; //strafe-left-right, move-forward-backward, rise-down-up<br />
bool camRotMouseMoveEnable = false;<br />
int camRotMouseCord[2] = {0, 0}; //rotate-horozontal, rotate-verical<br />
<br />
int main(int argc, char **argv)<br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; //initialize GLUT<br />
&nbsp; &nbsp; &nbsp; &nbsp; glutInit(&amp;argc, argv);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; //position of the viewport<br />
&nbsp; &nbsp; &nbsp; &nbsp; glutInitWindowPosition(10, 10);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; //size of viewable window<br />
&nbsp; &nbsp; &nbsp; &nbsp; glutInitWindowSize(800, 600);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; //what type of display to show<br />
&nbsp; &nbsp; &nbsp; &nbsp; // GLUT_DEPTH - enable depth buffer<br />
&nbsp; &nbsp; &nbsp; &nbsp; // GLUT_DOUBLE - set tp double buffering<br />
&nbsp; &nbsp; &nbsp; &nbsp; // GLUT_RGBA - set red, green, blue, and alpha color mode<br />
&nbsp; &nbsp; &nbsp; &nbsp; glutInitDisplayMode(GLUT_DEPTH | GLUT_DOUBLE | GLUT_RGBA);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; //create window with specified titile<br />
&nbsp; &nbsp; &nbsp; &nbsp; glutCreateWindow(&quot;Sierpinski Gasket&quot;);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; //reshaping function<br />
&nbsp; &nbsp; &nbsp; &nbsp; glutReshapeFunc(ReshapeGlutWindow);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; //idle function<br />
&nbsp; &nbsp; &nbsp; &nbsp; glutIdleFunc(IdleGlutFunction);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; //keyboard key-down function<br />
&nbsp; &nbsp; &nbsp; &nbsp; glutKeyboardFunc(KeyboardGlutFunction);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; //keyboard key-up function<br />
&nbsp; &nbsp; &nbsp; &nbsp; glutKeyboardUpFunc(KeyboardUpGlutFunction);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; //mouse-click function<br />
&nbsp; &nbsp; &nbsp; &nbsp; glutMouseFunc(MouseButtonGlutFunction);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; //mouse-clicked-move funtion<br />
&nbsp; &nbsp; &nbsp; &nbsp; glutMotionFunc(MouseMotionGlutFunction);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; //display function<br />
&nbsp; &nbsp; &nbsp; &nbsp; glutDisplayFunc(DisplayGlutWindow);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; //begin loop<br />
&nbsp; &nbsp; &nbsp; &nbsp; glutMainLoop();<br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; //end with success<br />
&nbsp; &nbsp; &nbsp; &nbsp; return 0;<br />
}<br />
<br />
void ReshapeGlutWindow(int _width, int _height)<br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; //fix width<br />
&nbsp; &nbsp; &nbsp; &nbsp; if(_width &lt; 1)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; _width = 1;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; //fix height<br />
&nbsp; &nbsp; &nbsp; &nbsp; if(_height &lt; 1)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; _height = 1;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; //determine the aspect ratio of viewport<br />
&nbsp; &nbsp; &nbsp; &nbsp; float ratio = ((float)_width)/((float)_height);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; //set our current working matrix to the projection matrix stack<br />
&nbsp; &nbsp; &nbsp; &nbsp; glMatrixMode(GL_PROJECTION);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; //replace the current matrix with the identity matrix<br />
&nbsp; &nbsp; &nbsp; &nbsp; glLoadIdentity();<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; //set our viewport<br />
&nbsp; &nbsp; &nbsp; &nbsp; glViewport(0, 0, _width, _height);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; //set up our perspective projection matrix<br />
&nbsp; &nbsp; &nbsp; &nbsp; // 45 - field of view degrees in y<br />
&nbsp; &nbsp; &nbsp; &nbsp; // ratio - field of view degrees in x<br />
&nbsp; &nbsp; &nbsp; &nbsp; // 0 - distance of viewer to near clipping plane<br />
&nbsp; &nbsp; &nbsp; &nbsp; // 1000 - distance of viewer to far clipping plane<br />
&nbsp; &nbsp; &nbsp; &nbsp; gluPerspective(45, ratio, 0, 1000);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; //set our current working matrix to the view matrix stack<br />
&nbsp; &nbsp; &nbsp; &nbsp; glMatrixMode(GL_MODELVIEW);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; //enable depth (i.e. z-buffer)<br />
&nbsp; &nbsp; &nbsp; &nbsp; glEnable(GL_DEPTH_TEST);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; //replace the current matrix with the identity matrix<br />
&nbsp; &nbsp; &nbsp; &nbsp; glLoadIdentity();<br />
}<br />
<br />
void IdleGlutFunction()<br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; glutPostRedisplay();<br />
}<br />
<br />
void KeyboardGlutFunction(unsigned char _key, int _x, int _y)<br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; switch(_key)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; case 'a': //strafe-left<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; camPosKeyDown[0] = -1.0f;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; case 'd': //strafe-right<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; camPosKeyDown[0] = 1.0f;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; case 's': //move-down<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; camPosKeyDown[1] = -1.0f;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; case 'w': //move-up<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; camPosKeyDown[1] = 1.0f;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; case 'c': //rise-down<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; camPosKeyDown[2] = -1.0f;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; case ' ': //rise-up<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; camPosKeyDown[2] = 1.0f;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
}<br />
<br />
void KeyboardUpGlutFunction(unsigned char _key, int _x, int _y)<br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; switch(_key)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; case 'a': //left<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; camPosKeyDown[0] = 0.0f;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; case 'd': //right<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; camPosKeyDown[0] = 0.0f;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; case 's': //down<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; camPosKeyDown[1] = 0.0f;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; case 'w': //up<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; camPosKeyDown[1] = 0.0f;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; case 'c': //lower<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; camPosKeyDown[2] = 0.0f;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; case ' ': //rise<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; camPosKeyDown[2] = 0.0f;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
}<br />
<br />
void MouseButtonGlutFunction(int _button, int _state, int _x, int _y)<br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; if(_button == 0)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if(_state == 0)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; camRotMouseMoveEnable = true;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; camRotMouseCord[0] = _x;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; camRotMouseCord[1] = _y;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; else if(_state == 1)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; camRotMouseMoveEnable = false;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
}<br />
<br />
void MouseMotionGlutFunction(int _x, int _y)<br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; if(camRotMouseMoveEnable)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; camRot[0] += (((float)(camRotMouseCord[1] - _y)) / 10);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; camRotMouseCord[1] = _y;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; camRot[2] += (((float)(camRotMouseCord[0] - _x)) / 10);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; camRotMouseCord[0] = _x;<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
}<br />
<br />
void DisplayGlutWindow()<br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; //update camera position<br />
&nbsp; &nbsp; &nbsp; &nbsp; //NOTE: camera rotation is already updated<br />
&nbsp; &nbsp; &nbsp; &nbsp; float zRowRad = camRot[2]*(3.141592653589793238462643f/180.0f);<br />
&nbsp; &nbsp; &nbsp; &nbsp; camPos[0] += 0.5f*camPosKeyDown[0]*cosf(zRowRad); //strafe-left-right on x<br />
&nbsp; &nbsp; &nbsp; &nbsp; camPos[1] += 0.5f*camPosKeyDown[0]*sinf(zRowRad); //strafe-left-right on y<br />
&nbsp; &nbsp; &nbsp; &nbsp; camPos[0] -= 0.5f*camPosKeyDown[1]*sinf(zRowRad);<br />
&nbsp; &nbsp; &nbsp; &nbsp; camPos[1] += 0.5f*camPosKeyDown[1]*cosf(zRowRad);<br />
&nbsp; &nbsp; &nbsp; &nbsp; camPos[2] += 0.5f*camPosKeyDown[2];<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; //load identity<br />
&nbsp; &nbsp; &nbsp; &nbsp; glLoadIdentity();<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; //set clear color<br />
&nbsp; &nbsp; &nbsp; &nbsp; glClearColor(0, 0, 0, 1);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; //clear specified buffers<br />
&nbsp; &nbsp; &nbsp; &nbsp; // GL_COLOR_BUFFER_BIT - color writing buffers<br />
&nbsp; &nbsp; &nbsp; &nbsp; // GL_DEPTH_BUFFER_BIT - depth buffer<br />
&nbsp; &nbsp; &nbsp; &nbsp; glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; //translate and rotate for camera<br />
&nbsp; &nbsp; &nbsp; &nbsp; glRotatef(-camRot[0], 1, 0, 0);<br />
&nbsp; &nbsp; &nbsp; &nbsp; glRotatef(-camRot[1], 0, 1, 0);<br />
&nbsp; &nbsp; &nbsp; &nbsp; glRotatef(-camRot[2], 0, 0, 1);<br />
&nbsp; &nbsp; &nbsp; &nbsp; glTranslatef(-camPos[0], -camPos[1], -camPos[2]);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; //push the current matrix<br />
&nbsp; &nbsp; &nbsp; &nbsp; //NOTE: This is useless for this particular application, since there<br />
&nbsp; &nbsp; &nbsp; &nbsp; //is ONLY 1 static object at the origin.<br />
&nbsp; &nbsp; &nbsp; &nbsp; glPushMatrix();<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; //move the position of the object<br />
&nbsp; &nbsp; &nbsp; &nbsp; //glTranslatef(200.0f, 0, 0);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; //draw<br />
&nbsp; &nbsp; &nbsp; &nbsp; SierpinskiGasket3f(300.0f, 7);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; //pop the current matrix<br />
&nbsp; &nbsp; &nbsp; &nbsp; glPopMatrix();<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; //swap buffers<br />
&nbsp; &nbsp; &nbsp; &nbsp; glutSwapBuffers();<br />
}<br />
<br />
void SierpinskiGasket3f(float _rad, int _count)<br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; float points0Arr[3] = {_rad, 0, 0};<br />
&nbsp; &nbsp; &nbsp; &nbsp; float points1Arr[3] = {_rad*(-0.5f), _rad*(0.866025404f), 0};<br />
&nbsp; &nbsp; &nbsp; &nbsp; float points2Arr[3] = {_rad*(-0.5f), _rad*(-0.866025404f), 0};<br />
&nbsp; &nbsp; &nbsp; &nbsp; float points3Arr[3] = {0, 0, _rad};<br />
&nbsp; &nbsp; &nbsp; &nbsp; glBegin(GL_TRIANGLES);<br />
&nbsp; &nbsp; &nbsp; &nbsp; SierpinskiGasket3f_A(points0Arr, points1Arr, points2Arr, points3Arr, _count);<br />
&nbsp; &nbsp; &nbsp; &nbsp; glEnd();<br />
}<br />
<br />
void SierpinskiGasket3f_A(float _point0Arr[], float _point1Arr[], float _point2Arr[], float _point3Arr[], int _count)<br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; if(_count &gt; 0)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //reduce count<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; _count -= 1;<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //new points array<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; float newPoint01Arr[3];<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; float newPoint12Arr[3];<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; float newPoint20Arr[3];<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; float newPoint03Arr[3];<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; float newPoint13Arr[3];<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; float newPoint23Arr[3];<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //fill points<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SierpinskiGasket3f_LineMidPoint(newPoint01Arr, _point0Arr, _point1Arr);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SierpinskiGasket3f_LineMidPoint(newPoint12Arr, _point1Arr, _point2Arr);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SierpinskiGasket3f_LineMidPoint(newPoint20Arr, _point2Arr, _point0Arr);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SierpinskiGasket3f_LineMidPoint(newPoint03Arr, _point0Arr, _point3Arr);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SierpinskiGasket3f_LineMidPoint(newPoint13Arr, _point1Arr, _point3Arr);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SierpinskiGasket3f_LineMidPoint(newPoint23Arr, _point2Arr, _point3Arr);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //&nbsp; sub-triangle 1<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SierpinskiGasket3f_A(newPoint01Arr, _point1Arr, newPoint12Arr, newPoint13Arr, _count);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //&nbsp; sub-triangle 2<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SierpinskiGasket3f_A(newPoint12Arr, _point2Arr, newPoint20Arr, newPoint23Arr, _count);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //&nbsp; sub-triangle 3<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SierpinskiGasket3f_A(newPoint01Arr, _point0Arr, newPoint20Arr, newPoint03Arr, _count);<br />
<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //&nbsp; sub-triangle 4<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; SierpinskiGasket3f_A(newPoint03Arr, newPoint13Arr, newPoint23Arr, _point3Arr, _count);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; else<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //draw faces<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //side 0 (bottom)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; glColor4f(1, 0, 0, 1); //0<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; glVertex3fv(_point0Arr);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; glColor4f(0, 1, 0, 1); //1<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; glVertex3fv(_point1Arr);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; glColor4f(0, 0, 1, 1); //2<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; glVertex3fv(_point2Arr);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //side 1<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; glColor4f(1, 0, 0, 1); //0<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; glVertex3fv(_point0Arr);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; glColor4f(0, 1, 0, 1); //1<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; glVertex3fv(_point1Arr);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; glColor4f(0.7, 0.7, 0.7, 1); //3<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; glVertex3fv(_point3Arr);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //side 2<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; glColor4f(0, 1, 0, 1); //1<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; glVertex3fv(_point1Arr);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; glColor4f(0, 0, 1, 1); //2<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; glVertex3fv(_point2Arr);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; glColor4f(0.7, 0.7, 0.7, 1); //3<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; glVertex3fv(_point3Arr);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; //side 3<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; glColor4f(0, 0, 1, 1); //2<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; glVertex3fv(_point2Arr);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; glColor4f(1, 0, 0, 1); //0<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; glVertex3fv(_point0Arr);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; glColor4f(0.7, 0.7, 0.7, 1); //3<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; glVertex3fv(_point3Arr);<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
}<br />
<br />
void SierpinskiGasket3f_LineMidPoint(float _midPointOut[], float _point0Arr[], float _point1Arr[])<br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; _midPointOut[0] = (_point0Arr[0] + _point1Arr[0]) / 2;<br />
&nbsp; &nbsp; &nbsp; &nbsp; _midPointOut[1] = (_point0Arr[1] + _point1Arr[1]) / 2;<br />
&nbsp; &nbsp; &nbsp; &nbsp; _midPointOut[2] = (_point0Arr[2] + _point1Arr[2]) / 2;<br />
}</code><hr />
</div> </div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?222-Graphics-Showcase-Area">Graphics Showcase Area</category>
			<dc:creator>abc843</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?12001-3D-Sierpinski-Gasket-(OpenGL)</guid>
		</item>
		<item>
			<title>We have a new member - krzyjarod!</title>
			<link>http://www.st0rm.net/forum/showthread.php?12000-We-have-a-new-member-krzyjarod!&amp;goto=newpost</link>
			<pubDate>Mon, 06 Sep 2010 01:44:37 GMT</pubDate>
			<description>Glad you could find us krzyjarod at St0rm.Net, 
 
You should join us on Teamspeak and IRC sometime! We would love to chat with you! 
 
 
 
 
Regards,...</description>
			<content:encoded><![CDATA[<div>Glad you could find us krzyjarod at St0rm.Net,<br />
<br />
You should join us on Teamspeak and IRC sometime! We would love to chat with you!<br />
<br />
<br />
<br />
<br />
Regards,<br />
<br />
I R MAOW!</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?11-Introductions">Introductions</category>
			<dc:creator>Maow</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?12000-We-have-a-new-member-krzyjarod!</guid>
		</item>
		<item>
			<title>Lizzies Wallpaper</title>
			<link>http://www.st0rm.net/forum/showthread.php?11999-Lizzies-Wallpaper&amp;goto=newpost</link>
			<pubDate>Sun, 05 Sep 2010 23:37:09 GMT</pubDate>
			<description>So I was browsing Renders, found Pokemon, had a conversation with Liz and thought hey, why not creating a bigass Pokemon Wallpaper for a bigass...</description>
			<content:encoded><![CDATA[<div>So I was browsing Renders, found Pokemon, had a conversation with Liz and thought hey, why not creating a bigass Pokemon Wallpaper for a bigass Pokemon fan?<br />
Here it is<br />
<a href="http://www.abload.de/image.php?img=lizziewallpaperdy6u.jpg" rel="lytebox[106726]"><img src="http://www.abload.de/image.php?img=lizziewallpaperdy6u.jpg" style="max-width: 400px; max-height: 400px; cursor: pointer;" border="0" alt="" /></a><a href="http://www.st0rm.net/forum/attachment.php?attachmentid=1706"  title="Name:  
Views: 
Size:  ">Attachment 1706</a><br />
(I know i screwed the Render on the right up, see the little fleshcolored dot, but I guess mistakes can happen ;))<br />
-Alex<br />
<br />
PS: Click on the picture. It is in 1920x1080.</div>


	<div style="padding:10px">

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Images</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/jpg.gif" alt="File Type: jpg" />
	<a href="http://www.st0rm.net/forum/attachment.php?attachmentid=1706&amp;d=1283729733">LizzieWallpaper.jpg</a> 
(434.6 KB)
</li> 
			</ul>
			</fieldset>
	

	

	</div>
 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?222-Graphics-Showcase-Area">Graphics Showcase Area</category>
			<dc:creator>Alex</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11999-Lizzies-Wallpaper</guid>
		</item>
		<item>
			<title>2012 Title Sequence (WIP)</title>
			<link>http://www.st0rm.net/forum/showthread.php?11998-2012-Title-Sequence-(WIP)&amp;goto=newpost</link>
			<pubDate>Sun, 05 Sep 2010 18:47:20 GMT</pubDate>
			<description>this is WIP= work in progress. 
 
I had some ideas about making a movie type trailer+title. 
Am getting plugins to do some other stuff for scene...</description>
			<content:encoded><![CDATA[<div>this is WIP= work in progress.<br />
<br />
I had some ideas about making a movie type trailer+title.<br />
Am getting plugins to do some other stuff for scene clips.Ex: Real clouds to do a tornado.<br />
<br />
Little did I know that after I posted this WIP I found there is a real trailer for a real movie....<br />
<br />
Any ideas,suggestions,comments welcome.<br />
100% After Effects<br />

<object class="restrain" type="application/x-shockwave-flash" width="640" height="385" data="http://www.youtube.com/v/F1EBJ8Mtnd0">
	<param name="movie" value="http://www.youtube.com/v/F1EBJ8Mtnd0" />
	<param name="wmode" value="transparent" />
	<!--[if IE 6]>
	<embed width="640" height="385" type="application/x-shockwave-flash" src="http://www.youtube.com/v/F1EBJ8Mtnd0" />
	<![endif]--></object>
 </div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?222-Graphics-Showcase-Area">Graphics Showcase Area</category>
			<dc:creator>queenhunter</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11998-2012-Title-Sequence-(WIP)</guid>
		</item>
		<item>
			<title>Welcome 96thstreet!</title>
			<link>http://www.st0rm.net/forum/showthread.php?11997-Welcome-96thstreet!&amp;goto=newpost</link>
			<pubDate>Sun, 05 Sep 2010 17:19:56 GMT</pubDate>
			<description>Welcome 96thstreet, Glad you have joined us at St0rm.Net 
 
Just wanted to let you know we also have Teamspeak and a IRC Server, think about joining...</description>
			<content:encoded><![CDATA[<div>Welcome 96thstreet, Glad you have joined us at St0rm.Net<br />
<br />
Just wanted to let you know we also have Teamspeak and a IRC Server, think about joining them today and meeting new users!<br />
<br />
<br />
<br />
Regards,<br />
<br />
I R MAOW!</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?11-Introductions">Introductions</category>
			<dc:creator>Maow</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11997-Welcome-96thstreet!</guid>
		</item>
		<item>
			<title>Welcome power1996rus!</title>
			<link>http://www.st0rm.net/forum/showthread.php?11995-Welcome-power1996rus!&amp;goto=newpost</link>
			<pubDate>Sun, 05 Sep 2010 13:35:56 GMT</pubDate>
			<description>Hi power1996rus, welcome to the St0rm.Net Forums! 
 
Please take the time to join our Teamspeak or even our IRC server and get to know more users! 
...</description>
			<content:encoded><![CDATA[<div>Hi power1996rus, welcome to the St0rm.Net Forums!<br />
<br />
Please take the time to join our Teamspeak or even our IRC server and get to know more users!<br />
<br />
<br />
Regards,<br />
<br />
I R MAOW!</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?11-Introductions">Introductions</category>
			<dc:creator>Maow</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11995-Welcome-power1996rus!</guid>
		</item>
		<item>
			<title>We have a new member - mobious!</title>
			<link>http://www.st0rm.net/forum/showthread.php?11994-We-have-a-new-member-mobious!&amp;goto=newpost</link>
			<pubDate>Sun, 05 Sep 2010 12:00:49 GMT</pubDate>
			<description>Glad you could find us mobious at St0rm.Net, 
 
You should join us on Teamspeak and IRC sometime! We would love to chat with you! 
 
 
 
 
Regards, 
...</description>
			<content:encoded><![CDATA[<div>Glad you could find us mobious at St0rm.Net,<br />
<br />
You should join us on Teamspeak and IRC sometime! We would love to chat with you!<br />
<br />
<br />
<br />
<br />
Regards,<br />
<br />
I R MAOW!</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?11-Introductions">Introductions</category>
			<dc:creator>Maow</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11994-We-have-a-new-member-mobious!</guid>
		</item>
		<item>
			<title>Necro has joined St0rm.Net!</title>
			<link>http://www.st0rm.net/forum/showthread.php?11993-Necro-has-joined-St0rm.Net!&amp;goto=newpost</link>
			<pubDate>Sun, 05 Sep 2010 11:21:50 GMT</pubDate>
			<description>Welcome Necro, Glad you have joined us at St0rm.Net 
 
Just wanted to let you know we also have Teamspeak and a IRC Server, think about joining them...</description>
			<content:encoded><![CDATA[<div>Welcome Necro, Glad you have joined us at St0rm.Net<br />
<br />
Just wanted to let you know we also have Teamspeak and a IRC Server, think about joining them today and meeting new users!<br />
<br />
<br />
<br />
Regards,<br />
<br />
I R MAOW!</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?11-Introductions">Introductions</category>
			<dc:creator>Maow</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11993-Necro-has-joined-St0rm.Net!</guid>
		</item>
		<item>
			<title>Welcome GDI!</title>
			<link>http://www.st0rm.net/forum/showthread.php?11992-Welcome-GDI!&amp;goto=newpost</link>
			<pubDate>Sun, 05 Sep 2010 11:07:54 GMT</pubDate>
			<description>GDI! Thank you for joining St0rm.Net, 
 
Take the time to check out our other services and games including Teamspeak and IRC. 
 
 
 
 
Regards, 
 
I...</description>
			<content:encoded><![CDATA[<div>GDI! Thank you for joining St0rm.Net,<br />
<br />
Take the time to check out our other services and games including Teamspeak and IRC.<br />
<br />
<br />
<br />
<br />
Regards,<br />
<br />
I R MAOW!</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?11-Introductions">Introductions</category>
			<dc:creator>Maow</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11992-Welcome-GDI!</guid>
		</item>
		<item>
			<title>hi</title>
			<link>http://www.st0rm.net/forum/showthread.php?11991-hi&amp;goto=newpost</link>
			<pubDate>Sat, 04 Sep 2010 17:15:34 GMT</pubDate>
			<description>hello all i just wanted to stop bye and say hi i am JELLO i have been playing ren for 4 years know and started playing in st0rm maybe a year or so so...</description>
			<content:encoded><![CDATA[<div>hello all i just wanted to stop bye and say hi i am JELLO i have been playing ren for 4 years know and started playing in st0rm maybe a year or so so for those who know me i am a sniper and love to pwnso i cya ingame :D</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?11-Introductions">Introductions</category>
			<dc:creator>smokeout</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11991-hi</guid>
		</item>
		<item>
			<title>RA_Allied_M01 Map for APB</title>
			<link>http://www.st0rm.net/forum/showthread.php?11989-RA_Allied_M01-Map-for-APB&amp;goto=newpost</link>
			<pubDate>Sat, 04 Sep 2010 11:49:42 GMT</pubDate>
			<description><![CDATA[http://apb.game-maps.net/index.php?act=view&id=1325 
 
Image: http://www.game-maps.net/downloads/apb/maps/screens/allied_m01_t.png ...]]></description>
			<content:encoded><![CDATA[<div><a href="http://apb.game-maps.net/index.php?act=view&amp;id=1325" target="_blank">http://apb.game-maps.net/index.php?act=view&amp;id=1325</a><br />
<br />
<a href="http://www.game-maps.net/downloads/apb/maps/screens/allied_m01.png" target="_blank"><a href="http://www.game-maps.net/downloads/apb/maps/screens/allied_m01_t.png" rel="lytebox[106677]"><img src="http://www.game-maps.net/downloads/apb/maps/screens/allied_m01_t.png" style="max-width: 400px; max-height: 400px; cursor: pointer;" border="0" alt="" /></a></a><br />
<br />
Rescue Einstein from soviet hands, held hostage in the Radar Dome, take him to the naval transport at the start of map.<br />
<br />
Many thanks to cuddling for helping with getting the Einstein model ingame :)<br />
<br />
Greetz zunnie<br />
<br />
(download RA:APB here: <a href="http://apb.game-maps.net/?act=view&amp;id=359" target="_blank">http://apb.game-maps.net/?act=view&amp;id=359</a> )</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?2-Discussions">Discussions</category>
			<dc:creator>zunnie</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11989-RA_Allied_M01-Map-for-APB</guid>
		</item>
		<item>
			<title>ULTRA - is it working</title>
			<link>http://www.st0rm.net/forum/showthread.php?11988-ULTRA-is-it-working&amp;goto=newpost</link>
			<pubDate>Sat, 04 Sep 2010 11:46:05 GMT</pubDate>
			<description>?? cant seem to log on to ultra lately.......    screen hangs up .. only option is ABORT</description>
			<content:encoded><![CDATA[<div>?? cant seem to log on to ultra lately.......    screen hangs up .. only option is ABORT</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?7-Technical-Help">Technical Help</category>
			<dc:creator>trumpetbum</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11988-ULTRA-is-it-working</guid>
		</item>
		<item>
			<title>Banned from co-op</title>
			<link>http://www.st0rm.net/forum/showthread.php?11987-Banned-from-co-op&amp;goto=newpost</link>
			<pubDate>Sat, 04 Sep 2010 11:25:14 GMT</pubDate>
			<description><![CDATA[Hi this is kinda wierd I'm banned from joining your co-op server when using WOL but using RR I can join :O why am i banned anyway?]]></description>
			<content:encoded><![CDATA[<div>Hi this is kinda wierd I'm banned from joining your co-op server when using WOL but using RR I can join :O why am i banned anyway?</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?5-Ban-Disputes">Ban Disputes</category>
			<dc:creator>OSTKBacon</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11987-Banned-from-co-op</guid>
		</item>
		<item>
			<title><![CDATA[Can't connect to St0rm IRC]]></title>
			<link>http://www.st0rm.net/forum/showthread.php?11986-Can-t-connect-to-St0rm-IRC&amp;goto=newpost</link>
			<pubDate>Sat, 04 Sep 2010 10:34:57 GMT</pubDate>
			<description><![CDATA[Well, the thing is this just happened when I was away and left my comp on, so I just decided to get the log and yes I've clicked that link-- doesn't...]]></description>
			<content:encoded><![CDATA[<div>Well, the thing is this just happened when I was away and left my comp on, so I just decided to get the log and yes I've clicked that link-- doesn't really help. Got any ideas?<br />
<br />
* Disconnected<br />
-<br />
* Connect retry #1 IRC.St0rm.Net (6667)<br />
-<br />
Closing Link: [124.121.243.185] Z:Lined (Pine, You have a host listed as a Open Proxy. <a href="http://cbl.abuseat.org/lookup.cgi?ip=124.121.243.185" target="_blank">http://cbl.abuseat.org/lookup.cgi?ip=124.121.243.185</a> for more information.)<br />
-<br />
* [10053] Software caused connection abort<br />
-<br />
* Disconnected<br />
-<br />
* Connect retry #2 IRC.St0rm.Net (6667)<br />
-<br />
Closing Link: [124.121.243.185] Z:Lined (Pine, You have a host listed as a Open Proxy. <a href="http://cbl.abuseat.org/lookup.cgi?ip=124.121.243.185" target="_blank">http://cbl.abuseat.org/lookup.cgi?ip=124.121.243.185</a> for more information.)<br />
-<br />
* Disconnected</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?8-IRC-Teamspeak-and-Ventrilo">IRC, Teamspeak, and Ventrilo</category>
			<dc:creator>Pine</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11986-Can-t-connect-to-St0rm-IRC</guid>
		</item>
		<item>
			<title>Welcome kenzy!</title>
			<link>http://www.st0rm.net/forum/showthread.php?11985-Welcome-kenzy!&amp;goto=newpost</link>
			<pubDate>Sat, 04 Sep 2010 09:45:33 GMT</pubDate>
			<description>Welcome kenzy, Glad you have joined us at St0rm.Net 
 
Just wanted to let you know we also have Teamspeak and a IRC Server, think about joining them...</description>
			<content:encoded><![CDATA[<div>Welcome kenzy, Glad you have joined us at St0rm.Net<br />
<br />
Just wanted to let you know we also have Teamspeak and a IRC Server, think about joining them today and meeting new users!<br />
<br />
<br />
<br />
Regards,<br />
<br />
I R MAOW!</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?11-Introductions">Introductions</category>
			<dc:creator>Maow</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11985-Welcome-kenzy!</guid>
		</item>
		<item>
			<title>Battlefield Bad Company 2 - Promo Video?</title>
			<link>http://www.st0rm.net/forum/showthread.php?11984-Battlefield-Bad-Company-2-Promo-Video&amp;goto=newpost</link>
			<pubDate>Sat, 04 Sep 2010 04:09:40 GMT</pubDate>
			<description>So I am basicly stealing buddys idea (:rolleyes::rolleyes:) to create a little Promo video for the St0rm BFBC2 server. At a time as many poeple as...</description>
			<content:encoded><![CDATA[<div>So I am basicly stealing buddys idea (:rolleyes::rolleyes:) to create a little Promo video for the St0rm BFBC2 server. At a time as many poeple as possible can play for an hour or 2, we should make various recordings, let me cut them together and upload the rendered video to YouTube. I have some friends with well populated channels, I might persuade them to forward to ours and have some more players (and hopefully members) in there.<br />
<br />
So I thought of the following stuff we should record<br />
<br />
- Infantry rushing positions. Possibly an evened squad, 1 or 2 medics, few assault guys, engineers.<br />
<br />
- Sniper Duels. Or just some footage of snipers spotting/tracering vehicles and spotting infantry, as well as taking the shot!<br />
<br />
- Tank action! Nothing better than a nice Abrams tearing up the entire village, crushing buildings and infantry as well blowing up the evil tanks of the enemy.<br />
<br />
- Air superiority! This should be fun for Klote and Wilo, our local Helicopter Duo! While Klote takes care of controling the helicopter (or tries to) Wilo wipes the map clean of enemies using the 30mm Cannon of the Apache! Sounds good?<br />
<br />
Various other things. We should especially focus on bringing the teamwork in the first place, as Battlefield BC2 is BASED on good teamwork.<br />
<br />
Yes, it's not about the most kills, but the most teamwork!<br />
<br />
I highly doubt many poeple will volunteer but just a few would be enough to do some epic footage and get some players in here after all.<br />
<br />
-Alex</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?175-Battlefield-Bad-Company-2">Battlefield: Bad Company 2</category>
			<dc:creator>Alex</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11984-Battlefield-Bad-Company-2-Promo-Video</guid>
		</item>
		<item>
			<title>We have a new member - pwn3r!</title>
			<link>http://www.st0rm.net/forum/showthread.php?11982-We-have-a-new-member-pwn3r!&amp;goto=newpost</link>
			<pubDate>Fri, 03 Sep 2010 23:17:35 GMT</pubDate>
			<description>Hi pwn3r, welcome to the St0rm.Net Forums! 
 
Please take the time to join our Teamspeak or even our IRC server and get to know more users! 
 
...</description>
			<content:encoded><![CDATA[<div>Hi pwn3r, welcome to the St0rm.Net Forums!<br />
<br />
Please take the time to join our Teamspeak or even our IRC server and get to know more users!<br />
<br />
<br />
Regards,<br />
<br />
I R MAOW!</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?11-Introductions">Introductions</category>
			<dc:creator>Maow</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11982-We-have-a-new-member-pwn3r!</guid>
		</item>
		<item>
			<title>Letting about illegal downloading</title>
			<link>http://www.st0rm.net/forum/showthread.php?11979-Letting-about-illegal-downloading&amp;goto=newpost</link>
			<pubDate>Fri, 03 Sep 2010 19:28:18 GMT</pubDate>
			<description>Okay so my wifes cousin got this letter in the mail from paramount pictures about illegal downloading. bascially it says that they tracked her ip...</description>
			<content:encoded><![CDATA[<div>Okay so my wifes cousin got this letter in the mail from paramount pictures about illegal downloading. bascially it says that they tracked her ip address when she downloaded some movie. and that they would press charges against her if she downloads anything else. is there a way around this short of changing her ip address?</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?2-Discussions">Discussions</category>
			<dc:creator>Slayer21</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11979-Letting-about-illegal-downloading</guid>
		</item>
		<item>
			<title>Abc has joined St0rm.Net!</title>
			<link>http://www.st0rm.net/forum/showthread.php?11977-Abc-has-joined-St0rm.Net!&amp;goto=newpost</link>
			<pubDate>Fri, 03 Sep 2010 14:23:06 GMT</pubDate>
			<description>Glad you could find us Abc at St0rm.Net, 
 
You should join us on Teamspeak and IRC sometime! We would love to chat with you! 
 
 
 
 
Regards, 
 
I...</description>
			<content:encoded><![CDATA[<div>Glad you could find us Abc at St0rm.Net,<br />
<br />
You should join us on Teamspeak and IRC sometime! We would love to chat with you!<br />
<br />
<br />
<br />
<br />
Regards,<br />
<br />
I R MAOW!</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?11-Introductions">Introductions</category>
			<dc:creator>Maow</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11977-Abc-has-joined-St0rm.Net!</guid>
		</item>
		<item>
			<title>mer0vingian has joined St0rm.Net!</title>
			<link>http://www.st0rm.net/forum/showthread.php?11975-mer0vingian-has-joined-St0rm.Net!&amp;goto=newpost</link>
			<pubDate>Fri, 03 Sep 2010 12:15:09 GMT</pubDate>
			<description>Hi mer0vingian, welcome to the St0rm.Net Forums! 
 
Please take the time to join our Teamspeak or even our IRC server and get to know more users! 
 
...</description>
			<content:encoded><![CDATA[<div>Hi mer0vingian, welcome to the St0rm.Net Forums!<br />
<br />
Please take the time to join our Teamspeak or even our IRC server and get to know more users!<br />
<br />
<br />
Regards,<br />
<br />
I R MAOW!</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?11-Introductions">Introductions</category>
			<dc:creator>Maow</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11975-mer0vingian-has-joined-St0rm.Net!</guid>
		</item>
		<item>
			<title>Welcome David Warner!</title>
			<link>http://www.st0rm.net/forum/showthread.php?11974-Welcome-David-Warner!&amp;goto=newpost</link>
			<pubDate>Fri, 03 Sep 2010 06:26:10 GMT</pubDate>
			<description>Welcome David Warner, Glad you have joined us at St0rm.Net 
 
Just wanted to let you know we also have Teamspeak and a IRC Server, think about...</description>
			<content:encoded><![CDATA[<div>Welcome David Warner, Glad you have joined us at St0rm.Net<br />
<br />
Just wanted to let you know we also have Teamspeak and a IRC Server, think about joining them today and meeting new users!<br />
<br />
<br />
<br />
Regards,<br />
<br />
I R MAOW!</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?11-Introductions">Introductions</category>
			<dc:creator>Maow</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11974-Welcome-David-Warner!</guid>
		</item>
		<item>
			<title>Why I suck.</title>
			<link>http://www.st0rm.net/forum/showthread.php?11972-Why-I-suck.&amp;goto=newpost</link>
			<pubDate>Fri, 03 Sep 2010 05:41:27 GMT</pubDate>
			<description>So on frield akilla is pming me spaming me racist shit i know mods cant do shit about that ... But the fact that were on the same team and he used...</description>
			<content:encoded><![CDATA[<div>So on frield akilla is pming me spaming me racist shit i know mods cant do shit about that ... But the fact that were on the same team and he used the glitch to kill me well thats bs<br />
im gona fucking type in caps :|</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?4-Renegade">Renegade</category>
			<dc:creator>he4dshot</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11972-Why-I-suck.</guid>
		</item>
		<item>
			<title>Lord-Lindsey has joined St0rm.Net!</title>
			<link>http://www.st0rm.net/forum/showthread.php?11971-Lord-Lindsey-has-joined-St0rm.Net!&amp;goto=newpost</link>
			<pubDate>Fri, 03 Sep 2010 01:06:50 GMT</pubDate>
			<description>Welcome Lord-Lindsey, Glad you have joined us at St0rm.Net 
 
Just wanted to let you know we also have Teamspeak and a IRC Server, think about...</description>
			<content:encoded><![CDATA[<div>Welcome Lord-Lindsey, Glad you have joined us at St0rm.Net<br />
<br />
Just wanted to let you know we also have Teamspeak and a IRC Server, think about joining them today and meeting new users!<br />
<br />
<br />
<br />
Regards,<br />
<br />
I R MAOW!</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?11-Introductions">Introductions</category>
			<dc:creator>Maow</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11971-Lord-Lindsey-has-joined-St0rm.Net!</guid>
		</item>
		<item>
			<title>We have a new member - BallisticPain!</title>
			<link>http://www.st0rm.net/forum/showthread.php?11970-We-have-a-new-member-BallisticPain!&amp;goto=newpost</link>
			<pubDate>Thu, 02 Sep 2010 23:36:57 GMT</pubDate>
			<description>Welcome BallisticPain, Glad you have joined us at St0rm.Net 
 
Just wanted to let you know we also have Teamspeak and a IRC Server, think about...</description>
			<content:encoded><![CDATA[<div>Welcome BallisticPain, Glad you have joined us at St0rm.Net<br />
<br />
Just wanted to let you know we also have Teamspeak and a IRC Server, think about joining them today and meeting new users!<br />
<br />
<br />
<br />
Regards,<br />
<br />
I R MAOW!</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?11-Introductions">Introductions</category>
			<dc:creator>Maow</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11970-We-have-a-new-member-BallisticPain!</guid>
		</item>
		<item>
			<title>Welcome yesrememberme!</title>
			<link>http://www.st0rm.net/forum/showthread.php?11969-Welcome-yesrememberme!&amp;goto=newpost</link>
			<pubDate>Thu, 02 Sep 2010 20:03:04 GMT</pubDate>
			<description>yesrememberme! Thank you for joining St0rm.Net, 
 
Take the time to check out our other services and games including Teamspeak and IRC. 
 
 
 
...</description>
			<content:encoded><![CDATA[<div>yesrememberme! Thank you for joining St0rm.Net,<br />
<br />
Take the time to check out our other services and games including Teamspeak and IRC.<br />
<br />
<br />
<br />
<br />
Regards,<br />
<br />
I R MAOW!</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?11-Introductions">Introductions</category>
			<dc:creator>Maow</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11969-Welcome-yesrememberme!</guid>
		</item>
		<item>
			<title>Mines</title>
			<link>http://www.st0rm.net/forum/showthread.php?11968-Mines&amp;goto=newpost</link>
			<pubDate>Thu, 02 Sep 2010 15:47:18 GMT</pubDate>
			<description>Why do the mines in New York, not disappear after you blow them up? I sat there and watched a mine blow up 4 times then I flew away..... MAKE THEM...</description>
			<content:encoded><![CDATA[<div>Why do the mines in New York, not disappear after you blow them up? I sat there and watched a mine blow up 4 times then I flew away..... MAKE THEM DISAPPEAR!</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?239-Technical-Support">Technical Support</category>
			<dc:creator>Tecness2</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11968-Mines</guid>
		</item>
		<item>
			<title>Welcome marwa!</title>
			<link>http://www.st0rm.net/forum/showthread.php?11967-Welcome-marwa!&amp;goto=newpost</link>
			<pubDate>Thu, 02 Sep 2010 13:20:24 GMT</pubDate>
			<description>Welcome marwa, Glad you have joined us at St0rm.Net 
 
Just wanted to let you know we also have Teamspeak and a IRC Server, think about joining them...</description>
			<content:encoded><![CDATA[<div>Welcome marwa, Glad you have joined us at St0rm.Net<br />
<br />
Just wanted to let you know we also have Teamspeak and a IRC Server, think about joining them today and meeting new users!<br />
<br />
<br />
<br />
Regards,<br />
<br />
I R MAOW!</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?11-Introductions">Introductions</category>
			<dc:creator>Maow</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11967-Welcome-marwa!</guid>
		</item>
		<item>
			<title>banned?</title>
			<link>http://www.st0rm.net/forum/showthread.php?11966-banned&amp;goto=newpost</link>
			<pubDate>Thu, 02 Sep 2010 11:17:35 GMT</pubDate>
			<description>i been banned for imposter. My bad for changing nicks. I am new on resurrection</description>
			<content:encoded><![CDATA[<div>i been banned for imposter. My bad for changing nicks. I am new on resurrection</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?5-Ban-Disputes">Ban Disputes</category>
			<dc:creator>Aobsgtpai</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11966-banned</guid>
		</item>
		<item>
			<title>JELLO app</title>
			<link>http://www.st0rm.net/forum/showthread.php?11965-JELLO-app&amp;goto=newpost</link>
			<pubDate>Thu, 02 Sep 2010 09:33:43 GMT</pubDate>
			<description><![CDATA[Title :: Mod Application [your real first name] michael 
 
Renegade Name ::JELLO,smokey, and smokeout 
 
Age :: [Actual Age] 28 
 
Rank In Server ::...]]></description>
			<content:encoded><![CDATA[<div>Title :: Mod Application [your real first name] michael<br />
<br />
Renegade Name ::JELLO,smokey, and smokeout<br />
<br />
Age :: [Actual Age] 28<br />
<br />
Rank In Server :: [If None Then Please Exclude] idk<br />
<br />
Times Normally Played/Available :: [Please Include TIMEZONE ~ Example: GMT+2. Also Include how often you plan on playing!] i play mostly at night and in the evening for about 3 or 4 hours at a time<br />
<br />
Experience Being A Mod :: [If None Then Please Exclude] yes<br />
<br />
&quot;Why I Would Like To Be A Mod&quot; :: [Please Write MORE Than ONE Sentence] cause i hate cheats and it seems when i am on there is someone allways breaking rules and ppl afk for a few maps at a time<br />
<br />
Do you know the St0rm rules? :: [You should know the rules you're enforcing ~.o] yes<br />
<br />
<br />
How long have you been a mod for St0rm? (Reapplicants Only) :: [Rough estimate in months or years]<br />
<br />
<br />
Questions ::<br />
Do you have Teamspeak and/or mIRC? (Y/N) yes<br />
Do you know the rules on the server? (Y/N) yes <br />
Are you able to detect cheaters very well? (Y/N - Give Explanation) yes<br />
<br />
<br />
Remember to try and post a good application for yourself. Tell us what you have done or what you would hope to do. The more you have to offer about yourself the better.<br />
<br />
Please be 100% truthful. We have caught applicants lying before and in that case things don't work out!<br />
<br />
Your application will be reviewed by the current Renegade administration and St0rm administration. After review your status will be determined by the placing of a thumbs up or thumbs down icon on your application along with a post at the end explaining.<br />
<br />
Please do not feel offended if you do not make the team. We do open applications periodically and just because you don't make it this time that doesn't mean you won't make it next time!<br />
<br />
Thank you and good luck!<br />
<br />
<br />
. <br />
<br />
 <br />
 <br />
 <br />
<br />
.</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?6-Moderator-Applications-(OPEN)">Moderator Applications (OPEN)</category>
			<dc:creator>smokeout</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11965-JELLO-app</guid>
		</item>
		<item>
			<title>2012 48 Hours till doom</title>
			<link>http://www.st0rm.net/forum/showthread.php?11964-2012-48-Hours-till-doom&amp;goto=newpost</link>
			<pubDate>Thu, 02 Sep 2010 06:28:12 GMT</pubDate>
			<description>I think you will like this.... 
 
http://www.vimeo.com/14632614 
 
 
Dont mind start image its you tube being dippish.till edit takes. 
...</description>
			<content:encoded><![CDATA[<div>I think you will like this....<br />
<br />

<object class="restrain" type="application/x-shockwave-flash" width="640" height="360" data="http://vimeo.com/moogaloop.swf?clip_id=14632614">
	<param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=14632614" />
	<param name="wmode" value="transparent" />
	<!--[if IE 6]>
	<embed width="640" height="360" type="application/x-shockwave-flash" src="http://vimeo.com/moogaloop.swf?clip_id=14632614" />
	<![endif]--></object>
 <br />
<br />
<br />
Dont mind start image its you tube being dippish.till edit takes.<br />
<br />

<object class="restrain" type="application/x-shockwave-flash" width="640" height="385" data="http://www.youtube.com/v/KZGusJK3MMU">
	<param name="movie" value="http://www.youtube.com/v/KZGusJK3MMU" />
	<param name="wmode" value="transparent" />
	<!--[if IE 6]>
	<embed width="640" height="385" type="application/x-shockwave-flash" src="http://www.youtube.com/v/KZGusJK3MMU" />
	<![endif]--></object>
 <br />
<br />
<br />
(note) IF you have never heard Rush's 2112 overture I Recommend you do.<br />
<br />
dam I got to get up,....,,,..,,,... it's late,,,....,,,....,,..</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?222-Graphics-Showcase-Area">Graphics Showcase Area</category>
			<dc:creator>queenhunter</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11964-2012-48-Hours-till-doom</guid>
		</item>
		<item>
			<title><![CDATA[Vancer'2 app]]></title>
			<link>http://www.st0rm.net/forum/showthread.php?11963-Vancer-2-app&amp;goto=newpost</link>
			<pubDate>Thu, 02 Sep 2010 02:45:35 GMT</pubDate>
			<description><![CDATA[*                     Image: http://www.st0rm.net/forum/images/icons/icon1.gif   Vancer2's Mod app                 * 
                            ...]]></description>
			<content:encoded><![CDATA[<div><b>                     <a href="http://www.st0rm.net/forum/images/icons/icon1.gif" rel="lytebox[106534]"><img src="http://www.st0rm.net/forum/images/icons/icon1.gif" style="max-width: 400px; max-height: 400px; cursor: pointer;" border="0" alt="" /></a>  Vancer2's Mod app                 </b><br />
<blockquote>                             <b><font color="DarkOrange">Title ::</font></b> Vance Miller<br />
 <br />
 <b><font color="DarkOrange">Renegade Name ::</font></b> Vancer2<br />
 <br />
 <font color="DarkOrange"><b>Age :: </b></font>19<br />
 <br />
 <font color="DarkOrange"><b>Rank In Server ::</b></font> 2121<br />
 <br />
 <font color="DarkOrange"><b>Times Normally Played/Available ::</b></font>    Mon - Friday 5 am - 10 pm] [Sat-Sun] 4pm - 11 AM] -6 CMT<br />
 <br />
 <font color="DarkOrange"><b>Experience Being A Mod ::</b></font> GTA San   Andreas, Garry's mod<br />
 <br />
 <font color="DarkOrange"><b>&quot;Why I Would Like To Be A Mod&quot; ::</b></font>    [I am Very dedicated to finding people who cheat, Im very persistant,   And I have already caught 2 cheaters. I would like to be a mod because I   would like to be catch cheaters who dont deserve to play renegade<br />
 <br />
 <br />
 <font color="DarkOrange"><b>Do you know the St0rm rules? :: </b></font>Yes<br />
 <br />
 <br />
 <font color="DarkOrange"><b>Questions ::</b></font><br />
 Do you have Teamspeak and/or mIRC? (Yes<br />
 Do you know the rules on the server? Yes<br />
 Are you able to detect cheaters very well? I can catch RoF hackers I   have caught 2 so far                         </blockquote></div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?6-Moderator-Applications-(OPEN)">Moderator Applications (OPEN)</category>
			<dc:creator>Vancer2</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11963-Vancer-2-app</guid>
		</item>
		<item>
			<title>St0rm Renegade Events: Ideas. FEEDBACK TOPIC</title>
			<link>http://www.st0rm.net/forum/showthread.php?11961-St0rm-Renegade-Events-Ideas.-FEEDBACK-TOPIC&amp;goto=newpost</link>
			<pubDate>Wed, 01 Sep 2010 21:17:23 GMT</pubDate>
			<description><![CDATA[Well, I told Wilo I would help him out, but he's being lazy about it. Regardless, I have thought of some stuff to do for fun events. These are some...]]></description>
			<content:encoded><![CDATA[<div>Well, I told Wilo I would help him out, but he's being lazy about it. Regardless, I have thought of some stuff to do for fun events. These are some things I thoguht up, and are open for discussion. I'd love to have good or constructive feedback about these ideas, as well as some cool ideas of your own if you guys can think of anything.<br />
<br />
Oh yea, massive Rank will be given out for a lot of these Events. Explanations will be under each category.<br />
<br />
<br />
<b>#1 - Mod Game</b><br />
This would be a game with the St0rm Moderators and up on one team playing against the rest of the community. Of course, there will be -some- exceptions and possible player swapping. This would be the first thing to happen, since it's awesome. Everything after this, the dates and times are all up for debate.<br />
--- The Mod Game rank will be decided on the spot. Last time Wilo gave everybody 500 Rank if they killed him.<br />
<br />
<br />
<b>#2 - Friday Map Event (FME)</b><br />
Every Friday, or every other Friday, we will host one or more of Wilo's special maps. These include, but are not limited to: St0rm_Arac, St0rm_Escape, St0rm_Raid, Death_Rally (racing map) and some others... This would happen at roughly 3pm EST / 8pm GMT, and will likely replace the Ultra Server.<br />
--- Event maps like these, IIRC, Wilo gave anywhere between 50 and 200 Rank. For Death_Rally, #1 got 500, #2 got 250, #3 got 100, and everybody else go 50... or something.<br />
<br />
<br />
<b>#3 - Supreme Commander (SC)</b><br />
This will be remnant of the Wilo vs Pyro games. Each SC will have special commands they can use to help improve their team in many facets of the game. Wilo, if he so chooses, will be one of the two SCs, or he may choose one other member to represent him.<br />
<br />
The FIRST time this is run, Wilos opponent, the second SC, will be chosen by a sign-up topic and a series of POLLS. In the Sign-Up topic, people will have two options:<br />
1) Pick any player that they think would make a good SC.<br />
2) Sign THEMSELVES up as well as picking another player for the SC position.<br />
.....<br />
No, AndyGerm SBH !cammo does not count as skilled. After we get a decent amount of Sign-Ups, the first POLL will be open. It will be a public poll. Depending on the amount of players Signed-Up to be SCs, the Top X players (I would guess either 3, 4, 5, or 8 finalists):cool: will be chosen to enter the final Poll. This will be a MODERATOR ONLY Poll and will be help in the Mod Section. There, they will vote on or choose the best player to be the second Supreme Commander to fight against Wilo (or his representative).<br />
--- I've no idea what we could do for Rank with this, if we could even get this set up. Likely a large rank increase for the winning team, and half for the losers.<br />
<br />
<br />
<b>#4 - Weekend Server Change (WSC)</b><br />
I'm proposing changing the Ultra Server settings over the weekend. This will happen directly after the FME and will remain that way until roughly Midnight GMT. There are 3 game modes that I had in mind for the WSC:<br />
<br />
a) Original CTF - This will be your standard CTF. Snipers will cost 1.5x their normal price to encourage the use of more unique Infantry. After all, this is not meant to be a Sniper Server... Two implemented rules would be NO FLAG MINING and NO SPAWN KILLING. I recommend having the Minelimit extremely limited.<br />
<br />
b) Crazy CTF - A crazy ass version of CTF. This would include the purchase of some light vehicles, flying infantry, and other things. Flying inf would be equipped with the AGT Gun. All 1000 Infantry will have unique abilities, such Tiberium healing, improved movement speed, Regeneration, and more. Flag Mining is up for debate, however I recommend a change in the limit.<br />
<br />
c) Infantry Only - Yes, Infantry Only. Base kill WILL be on. Ped Beacon will likely be OFF. There will be quite a few changes to make it more &quot;balanced.&quot; I do remember ALL of the old &quot;XpHaZe Infantry Only&quot; settings, since me (and a few other guys here) played that server religiously. There was usually a minelimit of 40, however Proxy mines did about 2x damage. Both sides had an SBH (replaced Gunner) and both sides Rocket Infantry each had an Improved Rocket Launcher. Plus, there were a numbah of other things... I'll speak with Wilo or a coder with his approval, and we will iron out details.<br />
--- I would guess either 5 or 10 rank points for each map.</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?4-Renegade">Renegade</category>
			<dc:creator>VashTheStampede</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11961-St0rm-Renegade-Events-Ideas.-FEEDBACK-TOPIC</guid>
		</item>
		<item>
			<title>Welcome Tzar469!</title>
			<link>http://www.st0rm.net/forum/showthread.php?11959-Welcome-Tzar469!&amp;goto=newpost</link>
			<pubDate>Wed, 01 Sep 2010 16:25:23 GMT</pubDate>
			<description>Welcome Tzar469, Glad you have joined us at St0rm.Net 
 
Just wanted to let you know we also have Teamspeak and a IRC Server, think about joining...</description>
			<content:encoded><![CDATA[<div>Welcome Tzar469, Glad you have joined us at St0rm.Net<br />
<br />
Just wanted to let you know we also have Teamspeak and a IRC Server, think about joining them today and meeting new users!<br />
<br />
<br />
<br />
Regards,<br />
<br />
I R MAOW!</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?11-Introductions">Introductions</category>
			<dc:creator>Maow</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11959-Welcome-Tzar469!</guid>
		</item>
		<item>
			<title>St0rm.net Freelancer Promo video</title>
			<link>http://www.st0rm.net/forum/showthread.php?11957-St0rm.net-Freelancer-Promo-video&amp;goto=newpost</link>
			<pubDate>Wed, 01 Sep 2010 13:18:30 GMT</pubDate>
			<description>here is a video of our newly supported game Freelancer. 
enjoy and spread around as much as possible. 
 
http://www.youtube.com/watch?v=Ww6bb9Iacs8</description>
			<content:encoded><![CDATA[<div>here is a video of our newly supported game Freelancer.<br />
enjoy and spread around as much as possible.<br />
<br />

<object class="restrain" type="application/x-shockwave-flash" width="640" height="385" data="http://www.youtube.com/v/Ww6bb9Iacs8">
	<param name="movie" value="http://www.youtube.com/v/Ww6bb9Iacs8" />
	<param name="wmode" value="transparent" />
	<!--[if IE 6]>
	<embed width="640" height="385" type="application/x-shockwave-flash" src="http://www.youtube.com/v/Ww6bb9Iacs8" />
	<![endif]--></object>
 </div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?238-News-and-Updates">News and Updates</category>
			<dc:creator>buddy1913</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11957-St0rm.net-Freelancer-Promo-video</guid>
		</item>
		<item>
			<title>Singularity</title>
			<link>http://www.st0rm.net/forum/showthread.php?11956-Singularity&amp;goto=newpost</link>
			<pubDate>Wed, 01 Sep 2010 09:05:28 GMT</pubDate>
			<description>I have since few days the game Singularity and i just can say its a awesome game =)  
I already made a little video.  
Gameplay by me :) Video...</description>
			<content:encoded><![CDATA[<div>I have since few days the game Singularity and i just can say its a awesome game =) <br />
I already made a little video. <br />
Gameplay by me :) Video editing programm: Sony Vegas<br />
<br />
Check it out :)<br />
<br />
<a href="http://www.youtube.com/watch?v=u58bev8ppDA" target="_blank">http://www.youtube.com/watch?v=u58bev8ppDA</a><br />
Watch in HD and turn your speakers a bit up :p<br />
<br />
<br />
the first video part is a bit lagging :)<br />
<br />
,<br />
crysis992</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?2-Discussions">Discussions</category>
			<dc:creator>crysis992</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11956-Singularity</guid>
		</item>
		<item>
			<title><![CDATA[[Vid] Blinded by a lie- Crappy video]]></title>
			<link>http://www.st0rm.net/forum/showthread.php?11955-Vid-Blinded-by-a-lie-Crappy-video&amp;goto=newpost</link>
			<pubDate>Wed, 01 Sep 2010 04:57:52 GMT</pubDate>
			<description>After what recently occurred, I kept thinking of this song, which I did have a request to make one for the tune. 
 
It has no meaning, purpose or...</description>
			<content:encoded><![CDATA[<div>After what recently occurred, I kept thinking of this song, which I did have a request to make one for the tune.<br />
<br />
It has no meaning, purpose or anything. Just a bunch of Effects I made in AE<br />
and threw into a video.<br />
<br />
Only real purpose was to play in AE .<br />
<br />
Seems I have some issues with anti-aliasing or other things like pixelation.<br />
<br />

<object class="restrain" type="application/x-shockwave-flash" width="640" height="385" data="http://www.youtube.com/v/Gb6eQ1bS6B4">
	<param name="movie" value="http://www.youtube.com/v/Gb6eQ1bS6B4" />
	<param name="wmode" value="transparent" />
	<!--[if IE 6]>
	<embed width="640" height="385" type="application/x-shockwave-flash" src="http://www.youtube.com/v/Gb6eQ1bS6B4" />
	<![endif]--></object>
 <br />
<br />
So dont say its crap I already DID!!!</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?222-Graphics-Showcase-Area">Graphics Showcase Area</category>
			<dc:creator>queenhunter</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11955-Vid-Blinded-by-a-lie-Crappy-video</guid>
		</item>
		<item>
			<title>me be banned</title>
			<link>http://www.st0rm.net/forum/showthread.php?11954-me-be-banned&amp;goto=newpost</link>
			<pubDate>Wed, 01 Sep 2010 03:52:07 GMT</pubDate>
			<description><![CDATA[Now I know that I have a great Ass as my wife points out. But is this really a good reason to ban someone from IRC? Please don't ban me because of my...]]></description>
			<content:encoded><![CDATA[<div>Now I know that I have a great Ass as my wife points out. But is this really a good reason to ban someone from IRC? Please don't ban me because of my beautiful butt.</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?9-Ban-Disputes">Ban Disputes</category>
			<dc:creator>bigost0rm</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11954-me-be-banned</guid>
		</item>
		<item>
			<title>Manhunt Event</title>
			<link>http://www.st0rm.net/forum/showthread.php?11952-Manhunt-Event&amp;goto=newpost</link>
			<pubDate>Tue, 31 Aug 2010 22:17:11 GMT</pubDate>
			<description>Hey guys just a quick thrown together vid of the Manhunt event, 
enjoy~ 
 
http://www.youtube.com/watch?v=MH1jBfy-GiU</description>
			<content:encoded><![CDATA[<div>Hey guys just a quick thrown together vid of the Manhunt event,<br />
enjoy~<br />
<br />

<object class="restrain" type="application/x-shockwave-flash" width="640" height="385" data="http://www.youtube.com/v/MH1jBfy-GiU">
	<param name="movie" value="http://www.youtube.com/v/MH1jBfy-GiU" />
	<param name="wmode" value="transparent" />
	<!--[if IE 6]>
	<embed width="640" height="385" type="application/x-shockwave-flash" src="http://www.youtube.com/v/MH1jBfy-GiU" />
	<![endif]--></object>
 </div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?238-News-and-Updates">News and Updates</category>
			<dc:creator>buddy1913</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11952-Manhunt-Event</guid>
		</item>
		<item>
			<title>A Friendly Challenge.</title>
			<link>http://www.st0rm.net/forum/showthread.php?11950-A-Friendly-Challenge.&amp;goto=newpost</link>
			<pubDate>Tue, 31 Aug 2010 20:41:46 GMT</pubDate>
			<description><![CDATA[Renegade isn't what it's like. But i happened to see the st0rm vs RCS, very nice games. 
 
I would like to see  if you would would like to play {Os}...]]></description>
			<content:encoded><![CDATA[<div>Renegade isn't what it's like. But i happened to see the st0rm vs RCS, very nice games.<br />
<br />
I would like to see  if you would would like to play {Os} <a href="http://www.onlyskillzz.friendhood.net" target="_blank">www.onlyskillzz.friendhood.net</a><br />
<br />
I'm willing to post all the details if you agree to have a few fun maps. <br />
<br />
What do you all think? I don't think we've ever played against st0rm, would be fun.</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?71-Community-Wars">Community Wars</category>
			<dc:creator>Majid123</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11950-A-Friendly-Challenge.</guid>
		</item>
		<item>
			<title>Welcome cft67890!</title>
			<link>http://www.st0rm.net/forum/showthread.php?11949-Welcome-cft67890!&amp;goto=newpost</link>
			<pubDate>Tue, 31 Aug 2010 16:04:33 GMT</pubDate>
			<description>Hi cft67890, welcome to the St0rm.Net Forums! 
 
Please take the time to join our Teamspeak or even our IRC server and get to know more users! 
 
...</description>
			<content:encoded><![CDATA[<div>Hi cft67890, welcome to the St0rm.Net Forums!<br />
<br />
Please take the time to join our Teamspeak or even our IRC server and get to know more users!<br />
<br />
<br />
Regards,<br />
<br />
I R MAOW!</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?11-Introductions">Introductions</category>
			<dc:creator>Maow</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11949-Welcome-cft67890!</guid>
		</item>
		<item>
			<title>Forum Moderator Application :: Mark A. Taylor (FreakySt0rm)</title>
			<link>http://www.st0rm.net/forum/showthread.php?11948-Forum-Moderator-Application-Mark-A.-Taylor-(FreakySt0rm)&amp;goto=newpost</link>
			<pubDate>Tue, 31 Aug 2010 12:24:42 GMT</pubDate>
			<description>Title :: Forum Moderator Application :: Mark A. Taylor (Freaky) 
 
Renegade Name :: Freaky-Malokai 
 
Age :: 34 
 
Rank In Server :: N/A 
 
Times...</description>
			<content:encoded><![CDATA[<div>Title :: Forum Moderator Application :: Mark A. Taylor (Freaky)<br />
<br />
Renegade Name :: Freaky-Malokai<br />
<br />
Age :: 34<br />
<br />
Rank In Server :: N/A<br />
<br />
Times Normally Played/Available :: N/A<br />
<br />
Experience Being A Mod :: Currently an Administrator at St0rm<br />
<br />
&quot;Why I Would Like To Be A Forum Moderator&quot; :: I always try to contribute to forum threads where I feel my input would be of importance. I do feel however that more attention needs to be paid to threads and their validity on our forums. Also, not leaving threads open that have been resolved and are just being commented upon &quot;for the sake of it&quot;, with this in mind, I would like to offer my services as a forum moderator to St0rm. I feel my level of professionalism and my high level of articulation are skills required from a forum moderator.<br />
<br />
Do you know the St0rm rules? :: N/A<br />
<br />
<br />
How long have you been a mod for St0rm? (Reapplicants Only) :: I started as a trainee in March 2010</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?6-Moderator-Applications-(OPEN)">Moderator Applications (OPEN)</category>
			<dc:creator>FreakySt0rm</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11948-Forum-Moderator-Application-Mark-A.-Taylor-(FreakySt0rm)</guid>
		</item>
		<item>
			<title>Welcome ruto!</title>
			<link>http://www.st0rm.net/forum/showthread.php?11947-Welcome-ruto!&amp;goto=newpost</link>
			<pubDate>Tue, 31 Aug 2010 09:36:38 GMT</pubDate>
			<description>Hi ruto, welcome to the St0rm.Net Forums! 
 
Please take the time to join our Teamspeak or even our IRC server and get to know more users! 
 
...</description>
			<content:encoded><![CDATA[<div>Hi ruto, welcome to the St0rm.Net Forums!<br />
<br />
Please take the time to join our Teamspeak or even our IRC server and get to know more users!<br />
<br />
<br />
Regards,<br />
<br />
I R MAOW!</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?11-Introductions">Introductions</category>
			<dc:creator>Maow</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11947-Welcome-ruto!</guid>
		</item>
		<item>
			<title>St0rm.Net Freelancer Events Day.</title>
			<link>http://www.st0rm.net/forum/showthread.php?11946-St0rm.Net-Freelancer-Events-Day.&amp;goto=newpost</link>
			<pubDate>Tue, 31 Aug 2010 04:43:37 GMT</pubDate>
			<description>St0rm.Net Freelancer Events Day 
 
To help advertise the server we also have a Promo Video...</description>
			<content:encoded><![CDATA[<div>St0rm.Net Freelancer Events Day<br />
<br />
To help advertise the server we also have a <a href="http://www.st0rm.net/forum/showthread.php?11957-St0rm.net-Freelancer-Promo-video" target="_blank">Promo Video</a><br />
<br />
A day full of events we will be offering prizes to winners and the aptly named &quot;Fail prize&quot; to everyone else that participates.<br />
<br />
So far the events we have played in the server include :<br />
<br />
- Hide and Seek (I hide and everyone hunts me down)<br />
- Trollin for Gold (Suggested gold raid on bretonia)<br />
- Random Bounty by the Mysterious Mr.E<br />
- Recorded Fleet battle to advertise our server<br />
<br />
If you do not have this game but wish to download it, check the connection info page made by buddy1913 at this link - <a href="http://www.st0rm.net/forum/showthread.php?11691-Connecting-to-the-server" target="_blank">Connection info</a><br />
<br />
If you wanna know more about the game, you can see some of the images from the starting days of the server - <a href="http://www.st0rm.net/forum/showthread.php?11693-Freelancer-Fun" target="_blank">Images</a><br />
<br />
A quick description for you all...Freelancer is a space RPG that allows you to earn money and do missions for different factions, the game area is spread over approximately 60 systems each unique in their own different ways.  You can move around in groups of people or you can be a sole hunter and fight by yourself.  NPCs in this game can range from normal fighters all the way up to fleet leading capital ships.  If fighting is not your style, you can step back and take a neutral role by mining the helium clouds and scrap fields of Liberty, the Radioactive Nebulas of Rheinland or even the heavily defended asteroid fields of Bretonia.  Or if you dont feel like mining then you can be the ultimate trader and take the easy routes within liberty, or the high risk/high profit routes from bretonia to rhenland.  You can uphold the law, or break the laws, hunt down targets as a bounty hunter or take a step back and join the neutral zoners.  There is a role for every style of play that can be thought of.<br />
<br />
I hope you join us on Friday for our all day event <br />
<br />
<br />
SnowSt0rm<br />
Freelancer Head Admin</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?198-Events">Events</category>
			<dc:creator>SnowSt0rm</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11946-St0rm.Net-Freelancer-Events-Day.</guid>
		</item>
		<item>
			<title><![CDATA[[Vid] Clip of Gas Giant]]></title>
			<link>http://www.st0rm.net/forum/showthread.php?11945-Vid-Clip-of-Gas-Giant&amp;goto=newpost</link>
			<pubDate>Tue, 31 Aug 2010 03:39:11 GMT</pubDate>
			<description>Not the flatulent kind. LOL 
 
All done in after effects- Sound minimoogV synth. 
 
Made this clip for another music type video someone has...</description>
			<content:encoded><![CDATA[<div>Not the flatulent kind. LOL<br />
<br />
All done in after effects- Sound minimoogV synth.<br />
<br />
Made this clip for another music type video someone has requested.<br />
<br />

<object class="restrain" type="application/x-shockwave-flash" width="640" height="385" data="http://www.youtube.com/v/TCmVZ-t7Ino">
	<param name="movie" value="http://www.youtube.com/v/TCmVZ-t7Ino" />
	<param name="wmode" value="transparent" />
	<!--[if IE 6]>
	<embed width="640" height="385" type="application/x-shockwave-flash" src="http://www.youtube.com/v/TCmVZ-t7Ino" />
	<![endif]--></object>
 </div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?222-Graphics-Showcase-Area">Graphics Showcase Area</category>
			<dc:creator>queenhunter</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11945-Vid-Clip-of-Gas-Giant</guid>
		</item>
		<item>
			<title>Bounty Petition - Grigori_Rasputin</title>
			<link>http://www.st0rm.net/forum/showthread.php?11944-Bounty-Petition-Grigori_Rasputin&amp;goto=newpost</link>
			<pubDate>Tue, 31 Aug 2010 03:33:30 GMT</pubDate>
			<description>Name of Petitioner : Mr.E 
Name of Target : Grigori_Rasputin 
 
Additional Info : Seen using a Coalition Gunboat, tends to be drawn to other players....</description>
			<content:encoded><![CDATA[<div>Name of Petitioner : Mr.E<br />
Name of Target : Grigori_Rasputin<br />
<br />
Additional Info : Seen using a Coalition Gunboat, tends to be drawn to other players.<br />
<br />
Payout : 50,000,000<br />
<br />
Reason : This is a random bounty post by the Freelancer Bounty Petitioner</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?243-Bounty-Board">Bounty Board</category>
			<dc:creator>SnowSt0rm</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11944-Bounty-Petition-Grigori_Rasputin</guid>
		</item>
		<item>
			<title>Who is Mr.E</title>
			<link>http://www.st0rm.net/forum/showthread.php?11941-Who-is-Mr.E&amp;goto=newpost</link>
			<pubDate>Tue, 31 Aug 2010 01:11:26 GMT</pubDate>
			<description>Mr.E is a Bounty Petitioner.  Whenever he is in the server, there will be a bounty one a random target of his choosing.  The rewards for killing will...</description>
			<content:encoded><![CDATA[<div>Mr.E is a Bounty Petitioner.  Whenever he is in the server, there will be a bounty one a random target of his choosing.  The rewards for killing will be a reputation gain with a random faction and a small cash prize based on the rank of the target.</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?238-News-and-Updates">News and Updates</category>
			<dc:creator>SnowSt0rm</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11941-Who-is-Mr.E</guid>
		</item>
		<item>
			<title><![CDATA[[Read Please] ...]]></title>
			<link>http://www.st0rm.net/forum/showthread.php?11940-Read-Please-...&amp;goto=newpost</link>
			<pubDate>Mon, 30 Aug 2010 23:19:33 GMT</pubDate>
			<description><![CDATA[Dear st0rm community, 
 
*I'm not naming any names. 
 
Back like almost a year ago st0rm, in my view, was a great server to be played on than any...]]></description>
			<content:encoded><![CDATA[<div>Dear st0rm community,<br />
<br />
*I'm not naming any names.<br />
<br />
Back like almost a year ago st0rm, in my view, was a great server to be played on than any other server, But now i'm having second thoughts and i'm literally dissappointed. Why? because I KNOW there are hackers out there playing on this server and they are not getting banned or watched at even if i request a mod to heed my attention. Yet i'm mostly ignored. I can't stress enough how many people I actually think hacks. For example, people killing others behind walls, taking down mass amount of HP in a blink of an eye. Back nz was still with us, only HE had actually helped me in catching criminals and only he had actually pays attention to what i'm saying. But i'm sorry, you really have to step-up your game imo. <br />
<br />
To add on, someone was playing on your server today, from an OSTK clan, who i thought hacked and it was pretty much obvious. Everyone was screaming that he was hacking and was there a mod to help then? no, we just had to put up with his bs. I don't like hopping from server to servers but when i played jelly today, the gameplay was totally different and more like what st0rm had used to be bak in the old days. I'm not saying st0rm is gone downhill because i still love this server and is one of my favs.<br />
<br />
please dont take all this personally but it's time ive actually said something. this is probably why most of the mods here have left.<br />
<br />
best regards,<br />
<br />
itoxic/s</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?4-Renegade">Renegade</category>
			<dc:creator>itoxics</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11940-Read-Please-...</guid>
		</item>
		<item>
			<title>gonna be away for a while</title>
			<link>http://www.st0rm.net/forum/showthread.php?11939-gonna-be-away-for-a-while&amp;goto=newpost</link>
			<pubDate>Mon, 30 Aug 2010 20:04:18 GMT</pubDate>
			<description>hi, 
  i am sorry to say i am gonna be gone for 1,2 years i got college again and i need to start focusing in the most important areas in my life,...</description>
			<content:encoded><![CDATA[<div>hi,<br />
  i am sorry to say i am gonna be gone for 1,2 years i got college again and i need to start focusing in the most important areas in my life, ill still be around from time to time to see what you are up to.<br />
<br />
besides from that i am gonna miss you all <br />
<br />
         cya</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?2-Discussions">Discussions</category>
			<dc:creator>Winter1991</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11939-gonna-be-away-for-a-while</guid>
		</item>
		<item>
			<title>Renegade Stats Posters</title>
			<link>http://www.st0rm.net/forum/showthread.php?11938-Renegade-Stats-Posters&amp;goto=newpost</link>
			<pubDate>Mon, 30 Aug 2010 18:03:17 GMT</pubDate>
			<description><![CDATA[I'm doing a little programming project for St0rm to maker player stat posters (see link below) for Renegade. If you look at the image, it basically...]]></description>
			<content:encoded><![CDATA[<div>I'm doing a little programming project for St0rm to maker player stat posters (see link below) for Renegade. If you look at the image, it basically contains your kills/deaths/wins/losses/etc. The images are automatically generated and updated by a program using StormServ's player stats database (i.e. our Renegade bot).<br />
<br />
EXAMPLE: My stat poster for Bad Company 2. Ours will look something like this, but contain Renegade themes.<br />
<a href="http://cache.www.gametracker.com/games/bc2/stats/abc843/b_560_95.png" target="_blank">http://cache.www.gametracker.com/gam...3/b_560_95.png</a><br />
<br />
The program is done! What I need help with is the images, which is something I'm not too good at. That is where you guys come in!<br />
<br />
Anyone may design as many styles of posters they want. The data on each poster style is soft-coded, so you decide (in a configuration file) what data you want to appear, in what location, what font, color, size, etc...<br />
<br />
I would like to see at least two styles (with dimensions like the image above), one GDI themed, and one NOD themed.<br />
<br />
Each style creator will be given <b>FULL CREDIT</b> (with the name of their choice) for each poster. You name will appear automatically in lower-right corner of the image on each render, as will mine for creating the program.<br />
<br />
If you are interested, you may contact me by replying here, IRC, or TS. I will explain the details in-person.<br />
<br />
<br />
Don't worry if you don't understand this; come to me if you are interested in helping out with this project, I will explain everything.<br />
<br />
 Available data. The indexes are comments to right.<br />
        //data members<br />
        public string Name = null; //1<br />
        //--<br />
        public int? IgRankNumber = null; //2<br />
        public string IgRankTitle = null; //3<br />
        //--<br />
        public float? TotalRenPoints = null; //4<br />
        public int? TotalRenPointsRank = null; //5<br />
        //--<br />
        public int? GameWinsGdi = null; //6<br />
        public int? GameWinsGdiRank = null; //7<br />
        public int? GameWinsNod = null; //8<br />
        public int? GameWinsNodRank = null; //9<br />
        public int? GameWinsTotal = null; //10<br />
        public int? GameWinsTotalRank = null; //11<br />
        public int? GameLossesGdi = null; //12<br />
        public int? GameLossesGdiRank = null; //13<br />
        public int? GameLossesNod = null; //14<br />
        public int? GameLossesNodRank = null; //15<br />
        public int? GameLossesTotal = null; //16<br />
        public int? GameLossesTotalRank = null; //17<br />
        //--<br />
        public int? HumanKills = null; //18<br />
        public int? HumanKillsRank = null; //19<br />
        public int? HumanDeaths = null; //20<br />
        public int? HumanDeathsRank = null; //21<br />
        public float? HumanKd = null; //22<br />
        public int? HumanKdRank = null; //23<br />
        //--<br />
        public int? VehicleKills = null; //24<br />
        public int? VehicleKillsRank = null; //25<br />
        public int? VehicleDeaths = null; //26<br />
        public int? VehicleDeathsRank = null; //27<br />
        public float? VehicleKd = null; //28<br />
        public int? VehicleKdRank = null; //29<br />
        //--<br />
        public int? BeaconPlantsIon = null; //30<br />
        public int? BeaconPlantsIonRank = null; //31<br />
        public int? BeaconPlantsNuke = null; //32<br />
        public int? BeaconPlantsNukeRank = null; //33<br />
        public int? BeaconPlantsTotal = null; //34<br />
        public int? BeaconPlantsTotalRank = null; //35<br />
        public int? BeaconDisarmsIon = null; //36<br />
        public int? BeaconDisarmsIonRank = null; //37<br />
        public int? BeaconDisarmsNuke = null; //38<br />
        public int? BeaconDisarmsNukeRank = null; //39<br />
        public int? BeaconDisarmsTotal = null; //40<br />
        public int? BeaconDisarmsTotalRank = null; //41<br />
        //--<br />
        public bool? IsOnLine = null; //42<br />
        public string IsOnLineServerName = null; //43<br />
<br />
 Here is an example style sheet.<br />
  &lt;Style ID=&quot;EXA&quot;&gt;<br />
    &lt;Name&gt;Example Style A&lt;/Name&gt;<br />
    &lt;Credits&gt;<br />
      &lt;Credit&gt;Example Author's Name&lt;/Credit&gt;<br />
      &lt;Credit&gt;Co-Author's Name&lt;/Credit&gt;<br />
    &lt;/Credits&gt;<br />
    &lt;!-- This particular image is 570 by 100. They can be ANY size. --&gt;<br />
    &lt;BaseImageFilePath&gt;ExA_Background.jpg&lt;/BaseImageFilePath&gt;<br />
    &lt;UnknownInfoString&gt;?&lt;/UnknownInfoString&gt;<br />
    &lt;FloatFormatString&gt;0.00&lt;/FloatFormatString&gt;<br />
    &lt;Elements&gt;<br />
      &lt;Element Type=&quot;Text&quot;&gt;<br />
        &lt;!-- The positional values are specified as follows: {0}, {1}, etc... --&gt;<br />
        &lt;Text&gt;Some Text. The player's name is '{1}'. The player's rank is '{3}'.&lt;/Text&gt;<br />
        &lt;FontFamily&gt;Arial&lt;/FontFamily&gt;<br />
        &lt;!-- The size is measured in pixls NOT in points. --&gt;<br />
        &lt;Size&gt;10&lt;/Size&gt;<br />
        &lt;Color&gt;Black&lt;/Color&gt;<br />
        &lt;Bold&gt;True&lt;/Bold&gt;<br />
        &lt;Italic&gt;False&lt;/Italic&gt;<br />
        &lt;Strikeout&gt;False&lt;/Strikeout&gt;<br />
        &lt;Underline&gt;False&lt;/Underline&gt;<br />
        &lt;Position&gt;<br />
          &lt;X&gt;135&lt;/X&gt;<br />
          &lt;Y&gt;55&lt;/Y&gt;<br />
        &lt;/Position&gt;<br />
      &lt;/Element&gt;<br />
    &lt;/Elements&gt;<br />
    &lt;Elements&gt;<br />
      &lt;Element Type=&quot;Text&quot;&gt;<br />
        &lt;!-- The positional values are specified as follows: {0}, {1}, etc... --&gt;<br />
        &lt;Text&gt;This is just an example.&lt;/Text&gt;<br />
        &lt;FontFamily&gt;Arial&lt;/FontFamily&gt;<br />
        &lt;!-- The size is measured in pixls NOT in points. --&gt;<br />
        &lt;Size&gt;10&lt;/Size&gt;<br />
        &lt;Color&gt;Black&lt;/Color&gt;<br />
        &lt;Bold&gt;True&lt;/Bold&gt;<br />
        &lt;Italic&gt;False&lt;/Italic&gt;<br />
        &lt;Strikeout&gt;False&lt;/Strikeout&gt;<br />
        &lt;Underline&gt;False&lt;/Underline&gt;<br />
        &lt;Position&gt;<br />
          &lt;X&gt;135&lt;/X&gt;<br />
          &lt;Y&gt;70&lt;/Y&gt;<br />
        &lt;/Position&gt;<br />
      &lt;/Element&gt;<br />
    &lt;/Elements&gt;<br />
  &lt;/Style&gt;</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?224-Public-Graphic-Request-Room">Public Graphic Request Room</category>
			<dc:creator>abc843</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11938-Renegade-Stats-Posters</guid>
		</item>
		<item>
			<title>Thank you too....</title>
			<link>http://www.st0rm.net/forum/showthread.php?11937-Thank-you-too....&amp;goto=newpost</link>
			<pubDate>Mon, 30 Aug 2010 16:50:46 GMT</pubDate>
			<description><![CDATA[*I don't see enough of these and it mostly goes with out saying it, but I am saying it here out loud............ Thank you to the powers here that...]]></description>
			<content:encoded><![CDATA[<div><b><font color="cyan">I don't see enough of these and it mostly goes with out saying it, but I am saying it here out loud............ <font size="7">Thank you</font> to the powers here that keep St0rm the awesome community it is. Special recent thanks to Appl, Troy, Freaky, Slayer, Tiny, and of course Wilo who have been putting in yeoman's work lately. I personally appreciate it and know you all have lives outside of st0rm and I value the time you take away from those lives for my benefit.</font></b><br />
<br />
<b><font color="cyan">If I could personally deliver cookies to each of your doorsteps I would. </font></b><b><font color="cyan">I salute you gentlemen. :)</font></b></div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?2-Discussions">Discussions</category>
			<dc:creator>Wyldst0rm</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11937-Thank-you-too....</guid>
		</item>
		<item>
			<title>Mod App for GenOBrien</title>
			<link>http://www.st0rm.net/forum/showthread.php?11936-Mod-App-for-GenOBrien&amp;goto=newpost</link>
			<pubDate>Mon, 30 Aug 2010 16:01:34 GMT</pubDate>
			<description>Title :: Mod Application  Sean 
 
Renegade Name :: GenOBrien 
 
Age :: 18 
 
Rank In Server :: 1430ish 
 
Times Normally Played/Available :: when...</description>
			<content:encoded><![CDATA[<div>Title :: Mod Application  Sean<br />
<br />
Renegade Name :: GenOBrien<br />
<br />
Age :: 18<br />
<br />
Rank In Server :: 1430ish<br />
<br />
Times Normally Played/Available :: when ever i get the chance not sure about the timezone<br />
Experience Being A Mod :: yes it Mp-Gaming MissionDM Half Mod<br />
&quot;Why I Would Like To Be A Mod&quot; :: to be enable to enforce the rule and to make players have a good time<br />
<br />
Do you know the St0rm rules? :: yes<br />
<br />
<br />
<br />
<br />
<br />
Questions ::<br />
Do you have Teamspeak and/or mIRC? yes mirc<br />
Do you know the rules on the server? yes<br />
Are you able to detect cheaters very well? good enough to find cheaters</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?6-Moderator-Applications-(OPEN)">Moderator Applications (OPEN)</category>
			<dc:creator>genobrien</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11936-Mod-App-for-GenOBrien</guid>
		</item>
		<item>
			<title>Join Join Join</title>
			<link>http://www.st0rm.net/forum/showthread.php?11935-Join-Join-Join&amp;goto=newpost</link>
			<pubDate>Mon, 30 Aug 2010 14:37:02 GMT</pubDate>
			<description><![CDATA[WE need people to join this server, even if you don't intend to play this game for long just being in the server helps the St0rm freelancer community...]]></description>
			<content:encoded><![CDATA[<div>WE need people to join this server, even if you don't intend to play this game for long just being in the server helps the St0rm freelancer community out. if we can get up to around 20 - 25 members the server will start attracting people from other servers particularly the people who are in the other servers but are too weak to get real powerful.<br />
<br />
Also we need Event ideas anyone who has a good one can come to snowman buddy or me<br />
<br />
<br />
Thx for the Support of St0rm Freelancer in Advance<br />
<br />
Regards  <br />
      General55</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?238-News-and-Updates">News and Updates</category>
			<dc:creator>general55</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11935-Join-Join-Join</guid>
		</item>
		<item>
			<title>World domination</title>
			<link>http://www.st0rm.net/forum/showthread.php?11934-World-domination&amp;goto=newpost</link>
			<pubDate>Mon, 30 Aug 2010 13:45:56 GMT</pubDate>
			<description>You are all a bunch of useless f-cking tools. 
 
Image: http://img.printfection.com/14/86680/Ift89.jpg</description>
			<content:encoded><![CDATA[<div>You are all a bunch of useless f-cking tools.<br />
<br />
<a href="http://img.printfection.com/14/86680/Ift89.jpg" rel="lytebox[106294]"><img src="http://img.printfection.com/14/86680/Ift89.jpg" style="max-width: 400px; max-height: 400px; cursor: pointer;" border="0" alt="" /></a></div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?33-News-and-Announcements">News and Announcements</category>
			<dc:creator>Pyro</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11934-World-domination</guid>
		</item>
		<item>
			<title>Welcome OSTKBacon!</title>
			<link>http://www.st0rm.net/forum/showthread.php?11933-Welcome-OSTKBacon!&amp;goto=newpost</link>
			<pubDate>Mon, 30 Aug 2010 12:52:20 GMT</pubDate>
			<description>Glad you could find us OSTKBacon at St0rm.Net, 
 
You should join us on Teamspeak and IRC sometime! We would love to chat with you! 
 
 
 
 
Regards,...</description>
			<content:encoded><![CDATA[<div>Glad you could find us OSTKBacon at St0rm.Net,<br />
<br />
You should join us on Teamspeak and IRC sometime! We would love to chat with you!<br />
<br />
<br />
<br />
<br />
Regards,<br />
<br />
I R MAOW!</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?11-Introductions">Introductions</category>
			<dc:creator>Maow</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11933-Welcome-OSTKBacon!</guid>
		</item>
		<item>
			<title>Suggestion for Crates</title>
			<link>http://www.st0rm.net/forum/showthread.php?11932-Suggestion-for-Crates&amp;goto=newpost</link>
			<pubDate>Mon, 30 Aug 2010 11:42:03 GMT</pubDate>
			<description>Maybe some crate ideas are seen on other servers but i still think more crates are better :p  
 
Good crates: 
 
Team Money crate(fix):  
The Team...</description>
			<content:encoded><![CDATA[<div>Maybe some crate ideas are seen on other servers but i still think more crates are better :p <br />
<br />
<font color="lime">Good crates:</font><br />
<br />
<font color="darkorange">Team Money crate(fix): </font><br />
The Team money crate dont work correctly. Sometimes it says your team get 1500 but they get nothing. <br />
<br />
<font color="darkorange">position switch:</font><br />
The player who pick up the crate switch the position with a random player from the playerlist.<br />
<br />
<font color="darkorange">TeamChange:</font><br />
The player who pick up the crate switch the team with a random player from the enemy team. (crate spawn max: 1 or 2 per map )<br />
<br />
<br />
<font color="darkorange">TiberiumShield: </font><br />
If you pick up the crate you get a tiberium shield and you can walk over the Tiberium without taking damage until you die.<br />
<br />
<br />
<font color="darkorange">FlyCrate:</font><br />
If you get this FlyCrate your able to fly for 5 or 10 seconds. <br />
<br />
<br />
<font color="darkorange">Speedy Crate: </font><br />
If you pickup the crate your walk speed increase 50% until you die. <br />
<br />
<font color="red">Bad Crates:</font><br />
<br />
<font color="darkorange">Radio command scrambler:</font><br />
If you pick this crate up a &quot;radio preset&quot; spawn on your back. For a certain time like 5-10 minutes the enemy team cant use teamchat or Radio Commands. Example if you type something in teamchat:<br />
Normal:<br />
[Team] crysis992: Move out! <br />
With Crate it get scrambled:<br />
[team] crysis992: !tou veom<br />
<br />
sam for radio commands. example if you press Alt+7 the team hear a other (random choosen command)<br />
<br />
This crate force the team to talk in all chat for 10 minutes<br />
<br />
<font color="darkorange">earthquake crate: </font><br />
The screen get shaky and for a random choosen time the team have this shaky effect and damage. Example Random damage between 5 and 50. <br />
<br />
<font color="darkorange">HoldHarvester:</font><br />
If you get this crate the Harvester will stop for 3-5 Minutes. ( = no money )<br />
<br />
<font color="darkorange">Field Explosion crate:</font><br />
If you get this crate then fog will appear and in the Field ( NOT BASES ) will come down 2 ion explosions and 2 nuke explosions.</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?27-Suggestions">Suggestions</category>
			<dc:creator>crysis992</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11932-Suggestion-for-Crates</guid>
		</item>
		<item>
			<title>All Weapons Crate</title>
			<link>http://www.st0rm.net/forum/showthread.php?11931-All-Weapons-Crate&amp;goto=newpost</link>
			<pubDate>Mon, 30 Aug 2010 10:36:00 GMT</pubDate>
			<description>Not sure if this has already been suggested/tried or thought about, If so please trash topic.  
 
A crate that gives you EVERY weapon available in...</description>
			<content:encoded><![CDATA[<div>Not sure if this has already been suggested/tried or thought about, If so please trash topic. <br />
<br />
A crate that gives you EVERY weapon available in the game</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?27-Suggestions">Suggestions</category>
			<dc:creator>Benzini</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11931-All-Weapons-Crate</guid>
		</item>
		<item>
			<title>iK4l3l has joined St0rm.Net!</title>
			<link>http://www.st0rm.net/forum/showthread.php?11930-iK4l3l-has-joined-St0rm.Net!&amp;goto=newpost</link>
			<pubDate>Mon, 30 Aug 2010 08:30:24 GMT</pubDate>
			<description>iK4l3l! Thank you for joining St0rm.Net, 
 
Take the time to check out our other services and games including Teamspeak and IRC. 
 
 
 
 
Regards, 
...</description>
			<content:encoded><![CDATA[<div>iK4l3l! Thank you for joining St0rm.Net,<br />
<br />
Take the time to check out our other services and games including Teamspeak and IRC.<br />
<br />
<br />
<br />
<br />
Regards,<br />
<br />
I R MAOW!</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?11-Introductions">Introductions</category>
			<dc:creator>Maow</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11930-iK4l3l-has-joined-St0rm.Net!</guid>
		</item>
		<item>
			<title>rafaelb... has joined St0rm.Net!</title>
			<link>http://www.st0rm.net/forum/showthread.php?11929-rafaelb...-has-joined-St0rm.Net!&amp;goto=newpost</link>
			<pubDate>Mon, 30 Aug 2010 05:32:43 GMT</pubDate>
			<description>rafaelb...! Thank you for joining St0rm.Net, 
 
Take the time to check out our other services and games including Teamspeak and IRC. 
 
 
 
...</description>
			<content:encoded><![CDATA[<div>rafaelb...! Thank you for joining St0rm.Net,<br />
<br />
Take the time to check out our other services and games including Teamspeak and IRC.<br />
<br />
<br />
<br />
<br />
Regards,<br />
<br />
I R MAOW!</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?11-Introductions">Introductions</category>
			<dc:creator>Maow</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11929-rafaelb...-has-joined-St0rm.Net!</guid>
		</item>
		<item>
			<title><![CDATA[Genesis2001's Mod App]]></title>
			<link>http://www.st0rm.net/forum/showthread.php?11928-Genesis2001-s-Mod-App&amp;goto=newpost</link>
			<pubDate>Mon, 30 Aug 2010 05:14:57 GMT</pubDate>
			<description>Renegade Name :: Genesis2001 
 
Age :: 21 
 
Rank In Server :: 2000+ something before rank reset, 878 currently. 
 
Times Normally Played/Available...</description>
			<content:encoded><![CDATA[<div>Renegade Name :: Genesis2001<br />
<br />
Age :: 21<br />
<br />
Rank In Server :: 2000+ something before rank reset, 878 currently.<br />
<br />
Times Normally Played/Available :: Random.<br />
<br />
Experience Being A Mod :: Former staff and coder. :v<br />
<br />
&quot;Why I Would Like To Be A Mod&quot; :: Want to help out again with modship. (regardless of whether I become a mod, I will still help)<br />
<br />
Do you know the St0rm rules? :: Yes<br />
<br />
<br />
How long have you been a mod for St0rm? (Re-applicants Only) :: [Rough estimate in months or years]<br />
<b>2-5 years I'd say tbh?</b><br />
<br />
Questions ::<br />
Do you have Teamspeak and/or mIRC? (Y/N) Yes<br />
Do you know the rules on the server? (Y/N) Yes<br />
Are you able to detect cheaters very well? (Y/N - Give Explanation) Yes. I do have fraps available to catch cheaters. (one of the latest versions -- I don't know which version y'all are using here still)</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?6-Moderator-Applications-(OPEN)">Moderator Applications (OPEN)</category>
			<dc:creator>Genesis2001</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11928-Genesis2001-s-Mod-App</guid>
		</item>
		<item>
			<title>Quick, tasty food beyond 2am</title>
			<link>http://www.st0rm.net/forum/showthread.php?11927-Quick-tasty-food-beyond-2am&amp;goto=newpost</link>
			<pubDate>Mon, 30 Aug 2010 02:23:35 GMT</pubDate>
			<description>I was just wondering what you poeple tend to eat if you feel hungry after 2am or something. I have no idea what to eat, no fruits, no bread around...</description>
			<content:encoded><![CDATA[<div>I was just wondering what you poeple tend to eat if you feel hungry after 2am or something. I have no idea what to eat, no fruits, no bread around (cba going to the mall today)<br />
Its a retarded thread yeah but well =/<br />
<br />
Just post what you would eat at this time!<br />
-Alex</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?2-Discussions">Discussions</category>
			<dc:creator>Alex</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11927-Quick-tasty-food-beyond-2am</guid>
		</item>
		<item>
			<title>mod application  -- rob harrison  (trumpetbum)</title>
			<link>http://www.st0rm.net/forum/showthread.php?11926-mod-application-rob-harrison-(trumpetbum)&amp;goto=newpost</link>
			<pubDate>Mon, 30 Aug 2010 01:33:07 GMT</pubDate>
			<description><![CDATA[Title :: Mod Application Rob harrison 
 
Renegade Name :: trumpetbum-=[KUN]-={SF}=- 
 
Age :: 51 
 
Rank In Server ::999 (Elite staff sergeant) 
...]]></description>
			<content:encoded><![CDATA[<div>Title :: Mod Application Rob harrison<br />
<br />
Renegade Name :: trumpetbum-=[KUN]-={SF}=-<br />
<br />
Age :: 51<br />
<br />
Rank In Server ::999 (Elite staff sergeant)<br />
<br />
Times Normally Played/Available :: GMT-5    I play almost everyday... usually in the evenings once September arrives      (2 hours or so at least)  also on Weekends off and on throughout the day<br />
<br />
Experience Being A Mod ::About 3 years with NEWMAPS,  and 2 months on st0rm<br />
&quot;Why I Would Like To Be A Mod&quot; :: I enjoy helping people with issues in game.. whether its just learning how to play, learning the rules, or helping people to see what is allowed and what is not.   I don't believe in 'power trips', or abusing mod powers...... I just like to help see that the game is fair for all, and the language and behaviours don't get too far out of hand.<br />
<br />
Do you know the St0rm rules? ::I know most of the rules, I'm sure there are a few i have yet to learn.. but I am learning more all the time.   I keep a printout of the moderator help file beside my computer, and i access the forums daily to keep up to date with issues<br />
<br />
<br />
How long have you been a mod for St0rm? (Reapplicants Only) :: 2 months<br />
<br />
Questions ::<br />
Do you have Teamspeak and/or mIRC? Yes<br />
Do you know the rules on the server? yes<br />
Are you able to detect cheaters very well? I have a decent 'feel' for the game, having played it for about 6 years.   I am aware of many of the cheats, and if something does not seem right, I  am quick to ask others what they think about a certain player, and/or I will spectate them to see what they are doing.<br />
<br />
thank you!</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?6-Moderator-Applications-(OPEN)">Moderator Applications (OPEN)</category>
			<dc:creator>trumpetbum</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11926-mod-application-rob-harrison-(trumpetbum)</guid>
		</item>
		<item>
			<title>Mortality vs Immortality  Thoughts?</title>
			<link>http://www.st0rm.net/forum/showthread.php?11925-Mortality-vs-Immortality-Thoughts&amp;goto=newpost</link>
			<pubDate>Mon, 30 Aug 2010 01:08:01 GMT</pubDate>
			<description>I just was thinking about this and Have had a change of mind. 
 
Previously I was to the side of Mortality. For I could not imagine dealing with life...</description>
			<content:encoded><![CDATA[<div>I just was thinking about this and Have had a change of mind.<br />
<br />
Previously I was to the side of Mortality. For I could not imagine dealing with life for such a long time.<br />
<br />
Now, I am siding om Immortality. Because JUST IMAGINE what one person could Learn.<br />
Create, and Accomplish. <br />
<br />
Every single human prospect would be be UNFATHOMABLE.<br />
<br />
ART<br />
SCIENCE<br />
INVENTION<br />
EXPLORATION<br />
MANUFACTURING<br />
 all of it.</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?2-Discussions">Discussions</category>
			<dc:creator>queenhunter</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11925-Mortality-vs-Immortality-Thoughts</guid>
		</item>
		<item>
			<title><![CDATA[[Vid] Fluidity- Like Water]]></title>
			<link>http://www.st0rm.net/forum/showthread.php?11924-Vid-Fluidity-Like-Water&amp;goto=newpost</link>
			<pubDate>Mon, 30 Aug 2010 00:35:36 GMT</pubDate>
			<description>A Soothing Mellow video  for a stressful moment. 
 
 
 
http://www.youtube.com/watch?v=FWB4niCQygY</description>
			<content:encoded><![CDATA[<div>A Soothing Mellow video  for a stressful moment.<br />
<br />
<br />
<br />

<object class="restrain" type="application/x-shockwave-flash" width="640" height="385" data="http://www.youtube.com/v/FWB4niCQygY">
	<param name="movie" value="http://www.youtube.com/v/FWB4niCQygY" />
	<param name="wmode" value="transparent" />
	<!--[if IE 6]>
	<embed width="640" height="385" type="application/x-shockwave-flash" src="http://www.youtube.com/v/FWB4niCQygY" />
	<![endif]--></object>
 <br />
<br />
<br />
<a href="http://www.youtube.com/watch?v=FWB4niCQygY" target="_blank"><br />
</a></div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?222-Graphics-Showcase-Area">Graphics Showcase Area</category>
			<dc:creator>queenhunter</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11924-Vid-Fluidity-Like-Water</guid>
		</item>
		<item>
			<title>Mod application - Nicci aka Sandy</title>
			<link>http://www.st0rm.net/forum/showthread.php?11923-Mod-application-Nicci-aka-Sandy&amp;goto=newpost</link>
			<pubDate>Sun, 29 Aug 2010 23:28:24 GMT</pubDate>
			<description>Hey there, 
after alot of time and some PMs in mIRC, I want to apply for one Moderator spot on our lovely St0rm Servers with this application. :) 
...</description>
			<content:encoded><![CDATA[<div>Hey there,<br />
after alot of time and some PMs in mIRC, I want to apply for one Moderator spot on our lovely St0rm Servers with this application. :)<br />
<br />
<b>Some Data about me:</b><br />
<font color="blue">Real Name:</font> Nicci <br />
<font color="blue">Renegade Name:</font> Sandy<br />
<font color="blue">Age:</font> 19<br />
<font color="blue">Rank In Server:</font> 233 (working on it :o )<br />
<font color="blue">Times Normally Played/Available:</font> GMT+1 10h/daily | playing about 5h/daily<br />
Experience Being A Mod:[/COLOR] I've moderated an ingame Looking for Group-Channel in a big MMORPG with 500-700 players in the channel. I know when I have to stop someone, and when it is okay to let them have their fun.<br />
Banning and kicking is rarely necessary, talking with the person via PM is often more sucessfull imo.<br />
<br />
<font color="blue">&quot;Why I Would Like To Be A Mod&quot;:</font> Generally I want to be a mod because I like the community of Renegade Players and especially the st0rm comm. I apply for the Mod position because I want to give Players a good time playing on the Stormservers by help on a new Map design, improve the st0rm.net Website with shiny new graphics or simply by keeping the servers fair.<br />
<font size="2">(And because Liz pushed me to apply here \o/ but don't tell her that I told you :P)</font><br />
<br />
<font color="blue">Do you know the St0rm rules?:</font> Sure, who doesn't ? o.o<br />
<br />
Questions ::<br />
<font color="blue">Do you have Teamspeak and/or mIRC?</font> Yes, but no Mic and not planning on getting one if its not necessary. I also got mIRC with st0rm on autoconnect.<br />
<br />
<font color="blue">Do you know the rules on the server?</font> Yes :)<br />
<br />
<font color="blue">Are you able to detect cheaters very well?</font> Mostly. Depends on the Cheater! Most of them are a bit tricky to detect, but often they act very clumsy so that you can see what and how they are cheating (killing people from weird directions and stuff like that).<br />
<br />
If you got any questions, I'm always happy to answer them :o</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?183-Archives">Archives</category>
			<dc:creator>Sandst0rm</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11923-Mod-application-Nicci-aka-Sandy</guid>
		</item>
		<item>
			<title>Remove Tunnel Mining on Field</title>
			<link>http://www.st0rm.net/forum/showthread.php?11922-Remove-Tunnel-Mining-on-Field&amp;goto=newpost</link>
			<pubDate>Sun, 29 Aug 2010 22:40:11 GMT</pubDate>
			<description><![CDATA[That shit is lame anyway. Make a rule against it. 
 
1) Dunno who placed all the mines? Have a soldier run into them. 
2) Can't get rid of the mines?...]]></description>
			<content:encoded><![CDATA[<div>That shit is lame anyway. Make a rule against it.<br />
<br />
1) Dunno who placed all the mines? Have a soldier run into them.<br />
2) Can't get rid of the mines? !qkick works<br />
<br />
I know there are commands to see who placed specific mines, and to know how many player X has placed, and even to remove mines, but I don't think st0rm has any of those. =/</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?27-Suggestions">Suggestions</category>
			<dc:creator>VashTheStampede</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11922-Remove-Tunnel-Mining-on-Field</guid>
		</item>
		<item>
			<title>Mod App - Benzini</title>
			<link>http://www.st0rm.net/forum/showthread.php?11921-Mod-App-Benzini&amp;goto=newpost</link>
			<pubDate>Sun, 29 Aug 2010 22:00:51 GMT</pubDate>
			<description><![CDATA[Title :: Mod Application [David or Dave] 
 
Renegade Name :: Benzini 
 
Age :: [23] 
 
Rank In Server :: [Master Sergant 173/175] 
 
Times Normally...]]></description>
			<content:encoded><![CDATA[<div>Title :: Mod Application [David or Dave]<br />
<br />
Renegade Name :: Benzini<br />
<br />
Age :: [23]<br />
<br />
Rank In Server :: [Master Sergant 173/175]<br />
<br />
Times Normally Played/Available :: [GMT ...   Everyday pretty much either on break from work, usually after work (2pm-6pm .. and 11pm - Onwards]<br />
<br />
Experience Being A Mod :: [I have never modded before in Renegade at all. So it would be a whole new learning curve]<br />
<br />
&quot;Why I Would Like To Be A Mod&quot; :: [the st0rm server in my opinon is by far the best and most active renegade server.. I don't play in any other Server unless it's a sniper server. I have been playing on st0rm for which is my second stint (First stint i was made temp-mod just over 10months ago by Pyro (Who i believe has left now) and have recently started being back on st0rm alot over past few weeks.]<br />
<br />
Do you know the St0rm rules? :: [Yes im aware of the rules, i check the rules topic each day when im on the site to see if they have been updated or edited. ]<br />
<br />
<br />
How long have you been a mod for St0rm? (Reapplicants Only) :: [Rough estimate in months or years]<br />
<br />
<br />
Questions ::<br />
Do you have Teamspeak and/or mIRC? (Y)<br />
Do you know the rules on the server? (Y)<br />
Are you able to detect cheaters very well? (Everyone has there own way's of detecting a cheater, Every cheater is different so it takes a different approach into finding if they are 110% cheating or not.)<br />
<br />
Kind Regards Benzini</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?6-Moderator-Applications-(OPEN)">Moderator Applications (OPEN)</category>
			<dc:creator>Benzini</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11921-Mod-App-Benzini</guid>
		</item>
		<item>
			<title>Mod Application: James a.k.a hybrid7mm</title>
			<link>http://www.st0rm.net/forum/showthread.php?11917-Mod-Application-James-a.k.a-hybrid7mm&amp;goto=newpost</link>
			<pubDate>Sun, 29 Aug 2010 16:02:46 GMT</pubDate>
			<description>Renegade Name :: hybrid7mm  
 
Age :: 28 
 
Rank In Server :: Veteran Corporal 
 
Times Normally Played/Available :: (GMT)  Mon-Thurs 7pm-11pm, Fri...</description>
			<content:encoded><![CDATA[<div>Renegade Name :: hybrid7mm <br />
<br />
Age :: 28<br />
<br />
Rank In Server :: Veteran Corporal<br />
<br />
Times Normally Played/Available :: (GMT)  Mon-Thurs 7pm-11pm, Fri 7pm-1am, <br />
Saturdays 5pm-2/3am and Sundays all day till 11pm as i have to get up for work monday!<br />
<br />
&quot;Why I Would Like To Be A Mod&quot; ::  <br />
Renegade is my favourite game, ive got mw2 and loads more titles besides but i always go back to renegade, it is my game of choice.....<br />
Been playing on the st0rm servers for several months and all i can say is why did i play anywhere else? The modifications to the servers are great and between the turrets, backup and the weapon purchase etc to me it gives renegade a much more fun and challenging aspect of play. <br />
My experience on st0rm servers has been a good one and ive met loads of great people and rarely seen anyone im suspicious of so id like to make sure that anyone else who comes into the servers has the same if not better experience as me.<br />
Hence the application.<br />
<br />
Do you know the St0rm rules? :: Yes<br />
<br />
<br />
Questions ::<br />
<br />
Do you have Teamspeak and/or mIRC?  Yes, although my skills with irc are not exactly amazing, nothing that can't be learned tho.<br />
<br />
Do you know the rules on the server?  Yes.<br />
<br />
Are you able to detect cheaters very well? <br />
In my years of playing renegade ive not had cause for alarm on too many occasions spotted a couple of cheaters here and there (instant repair tank was a particular interesting one to report) and id like to think i would know if something wasn't right ingame. Having said that tho Ive never been a mod before on any server so any advice from the moderator/admin team of st0rm would be greatly appreciated.<br />
<br />
Thanks for reading<br />
<br />
Jim</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?6-Moderator-Applications-(OPEN)">Moderator Applications (OPEN)</category>
			<dc:creator>hybrid7mm</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11917-Mod-Application-James-a.k.a-hybrid7mm</guid>
		</item>
		<item>
			<title><![CDATA[[Skin] Sky Spider Apache with Web Blades]]></title>
			<link>http://www.st0rm.net/forum/showthread.php?11916-Skin-Sky-Spider-Apache-with-Web-Blades&amp;goto=newpost</link>
			<pubDate>Sun, 29 Aug 2010 15:43:21 GMT</pubDate>
			<description>Just something I threw together to go with  Blades. 
 
Its got real Spider eyes in Pods and turbine. 
Includes The Web Blades 
 
Image:...</description>
			<content:encoded><![CDATA[<div>Just something I threw together to go with  Blades.<br />
<br />
Its got real Spider eyes in Pods and turbine.<br />
Includes The Web Blades<br />
<br />
<a href="http://i35.tinypic.com/15dkpk.jpg" rel="lytebox[106111]"><img src="http://i35.tinypic.com/15dkpk.jpg" style="max-width: 400px; max-height: 400px; cursor: pointer;" border="0" alt="" /></a><br />
<a href="http://i36.tinypic.com/2hmfxb7.jpg" rel="lytebox[106111]"><img src="http://i36.tinypic.com/2hmfxb7.jpg" style="max-width: 400px; max-height: 400px; cursor: pointer;" border="0" alt="" /></a><br />
<a href="http://i35.tinypic.com/13zshkx.jpg" rel="lytebox[106111]"><img src="http://i35.tinypic.com/13zshkx.jpg" style="max-width: 400px; max-height: 400px; cursor: pointer;" border="0" alt="" /></a><br />
<a href="http://i33.tinypic.com/2myotba.jpg" rel="lytebox[106111]"><img src="http://i33.tinypic.com/2myotba.jpg" style="max-width: 400px; max-height: 400px; cursor: pointer;" border="0" alt="" /></a><br />
<br />
<br />
Video demo<br />

<object class="restrain" type="application/x-shockwave-flash" width="640" height="385" data="http://www.youtube.com/v/MtpSwYSgXbs">
	<param name="movie" value="http://www.youtube.com/v/MtpSwYSgXbs" />
	<param name="wmode" value="transparent" />
	<!--[if IE 6]>
	<embed width="640" height="385" type="application/x-shockwave-flash" src="http://www.youtube.com/v/MtpSwYSgXbs" />
	<![endif]--></object>
 </div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?96-Vehicles">Vehicles</category>
			<dc:creator>queenhunter</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11916-Skin-Sky-Spider-Apache-with-Web-Blades</guid>
		</item>
		<item>
			<title>Redball45/Reddy Moderator Application</title>
			<link>http://www.st0rm.net/forum/showthread.php?11915-Redball45-Reddy-Moderator-Application&amp;goto=newpost</link>
			<pubDate>Sun, 29 Aug 2010 15:13:56 GMT</pubDate>
			<description><![CDATA[Name: James 
 
Renegade Name :: Reddy 
 
Age :: 15 
 
Rank In Server :: [16:11] <@St0rm-CooP> Reddy is a (Elite) Master Sergeant (1066/1100) 
 
Times...]]></description>
			<content:encoded><![CDATA[<div>Name: James<br />
<br />
Renegade Name :: Reddy<br />
<br />
Age :: 15<br />
<br />
Rank In Server :: [16:11] &lt;@St0rm-CooP&gt; Reddy is a (Elite) Master Sergeant (1066/1100)<br />
<br />
Times Normally Played/Available :: GMT+0, I'm regularly on ren and also generally on IRC throughout the entire day.<br />
<br />
Experience Being A Mod :: I was a moderator as Tsu gaming until it completely closed recently.<br />
<br />
&quot;Why I Would Like To Be A Mod&quot; :: I would like to be a mod so that I can be useful to the server as i've noticed there are hardly any or no admins on early in the morning, which is a time I can easily be on and moderate for.<br />
<br />
Do you know the St0rm rules? :: Yes<br />
<br />
<br />
Questions ::<br />
Do you have Teamspeak and/or mIRC? (Y/N) Y<br />
Do you know the rules on the server? (Y/N) Y<br />
Are you able to detect cheaters very well? (Y/N - Give Explanation) Y, I have had experience as a mod and know how to test for superbodies etc. I also know about RGH and have fraps to attempt to capture evidence of cheating.</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?6-Moderator-Applications-(OPEN)">Moderator Applications (OPEN)</category>
			<dc:creator>Redball45</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11915-Redball45-Reddy-Moderator-Application</guid>
		</item>
		<item>
			<title>Mod App for Rene aka DethABug</title>
			<link>http://www.st0rm.net/forum/showthread.php?11914-Mod-App-for-Rene-aka-DethABug&amp;goto=newpost</link>
			<pubDate>Sun, 29 Aug 2010 14:36:08 GMT</pubDate>
			<description><![CDATA[Title :: Mod Application Rene 
 
Renegade Name :: DethABug 
 
Age :: 42 
 
Rank In Server :: >16k 
 
Times Normally Played/Available :: GMT+1]]></description>
			<content:encoded><![CDATA[<div>Title :: Mod Application Rene<br />
<br />
Renegade Name :: DethABug<br />
<br />
Age :: 42<br />
<br />
Rank In Server :: &gt;16k<br />
<br />
Times Normally Played/Available :: GMT+1<br />
<br />
I am usually active between 6pm and 11pm on weekdays and 2pm and 1am on weekends (with breaks ...)<br />
<br />
<br />
Experience Being A Mod ::<br />
<br />
I have been a mod on DETHserv for like 1 year before it got off-line. But this time is far gone ...<br />
<br />
<br />
&quot;Why I Would Like To Be A Mod&quot; ::<br />
<br />
I like this game since it came out and I like the modifications on the St0rm servers.<br />
I hope I can be useful if the other (more experienced) mods aren't active. I am (regularly)<br />
playing on St0rm servers for a little more than a year now. So I feel its time to show some support<br />
to keep the games running as nice as I am used to experience them here.<br />
<br />
<br />
Do you know the St0rm rules? ::<br />
Yes, I Do.<br />
<br />
<br />
How long have you been a mod for St0rm? (Reapplicants Only) ::<br />
<br />
Never<br />
<br />
<br />
Questions ::<br />
Do you have Teamspeak and/or mIRC? (Y/N)<br />
<br />
Yes, both ... but I wont use a mic on TS (This will happen only very, very rarely. Why ? Well, family business ...)<br />
<br />
<br />
Do you know the rules on the server? (Y/N)<br />
<br />
Yes, I Do.<br />
<br />
<br />
Are you able to detect cheaters very well? (Y/N - Give Explanation)<br />
<br />
tbh ... No - I don't have any real experience in this field. Sometimes there is a kind of feeling that somethings wrong, but thats no proof. Well, this can be changed ...<br />
During my mod times on DETHserv we didn't have much problems with cheaters.</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?6-Moderator-Applications-(OPEN)">Moderator Applications (OPEN)</category>
			<dc:creator>DethABug</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11914-Mod-App-for-Rene-aka-DethABug</guid>
		</item>
		<item>
			<title>Mod App for sla.ro(master)</title>
			<link>http://www.st0rm.net/forum/showthread.php?11913-Mod-App-for-sla.ro(master)&amp;goto=newpost</link>
			<pubDate>Sun, 29 Aug 2010 13:17:27 GMT</pubDate>
			<description><![CDATA[Title :: Laurentiu "sla.ro(master), sla.ro, sla_ro|master" 
 
Renegade Name :: sla.ro(master) 
 
Age :: 14 (15 on 19:09) 
 
Rank In Server ::...]]></description>
			<content:encoded><![CDATA[<div>Title :: Laurentiu &quot;sla.ro(master), sla.ro, sla_ro|master&quot;<br />
<br />
Renegade Name :: sla.ro(master)<br />
<br />
Age :: 14 (15 on 19:09)<br />
<br />
Rank In Server :: SLA.RO(Master) is a *General (357/400) (30.08.10)<br />
<br />
Times Normally Played/Available :: weekend, night, afternoon<br />
<br />
Experience Being A Mod :: i never had mod at st0rm but im mod and at mp-ultra ;) , i want to be on st0rm :D<br />
<br />
&quot;Why I Would Like To Be A Mod&quot; :: to stop cheaters, stop rules breakers , stop people who do wallhopping. i know how to be a good mod. i know when to act, i know commands. i know scripting some stuff or making levels on leveleditor<br />
<br />
Do you know the St0rm rules? :: yes, i know the st0rm rules, not only st0rm rules, i now several servers rules. don't flood, cheat, wallhopping etc.<br />
<br />
Questions ::<br />
Do you have Teamspeak and/or mIRC? (Y/N) yes<br />
Do you know the rules on the server? (Y/N) yes<br />
Are you able to detect cheaters very well? (Y/N - Give Explanation) yes, i heard many cheats (i never used cheats) , i know how to stop big head, many others<br />
<br />
on ending: i hope you give me !page up ;) ,lol, have a nice day ! Don't cheat ingame !</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?6-Moderator-Applications-(OPEN)">Moderator Applications (OPEN)</category>
			<dc:creator>sla.ro</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11913-Mod-App-for-sla.ro(master)</guid>
		</item>
		<item>
			<title>Bad Company 2 Night</title>
			<link>http://www.st0rm.net/forum/showthread.php?11912-Bad-Company-2-Night&amp;goto=newpost</link>
			<pubDate>Sun, 29 Aug 2010 12:55:01 GMT</pubDate>
			<description>I thought Ima organise a little Bad Company 2 party at Friday, 3rd September 2010. Just join the BFBC2 Server and have a lot of fun! 
Read the rules...</description>
			<content:encoded><![CDATA[<div>I thought Ima organise a little Bad Company 2 party at Friday, 3rd September 2010. Just join the BFBC2 Server and have a lot of fun!<br />
Read the rules though! <br />
You're all welcome to join</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?198-Events">Events</category>
			<dc:creator>Alex</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11912-Bad-Company-2-Night</guid>
		</item>
		<item>
			<title>bOOfst0rm</title>
			<link>http://www.st0rm.net/forum/showthread.php?11911-bOOfst0rm&amp;goto=newpost</link>
			<pubDate>Sun, 29 Aug 2010 12:04:18 GMT</pubDate>
			<description>Title :: Muddaththir al Imamul Muttaqeen 
 
Renegade Name :: Boofst0rm i think ubt might has to chek 
 
Age :: dunoo bout this wil tell you tommorow...</description>
			<content:encoded><![CDATA[<div>Title :: Muddaththir al Imamul Muttaqeen<br />
<br />
Renegade Name :: Boofst0rm i think ubt might has to chek<br />
<br />
Age :: dunoo bout this wil tell you tommorow<br />
<br />
Rank In Server :: (0/0)<br />
<br />
Times Normally Played/Available :: i dont really ply but I have to be bed by 7pm thats wht my mummy says<br />
<br />
Experience Being A Mod :: no experience<br />
<br />
&quot;Why I Would Like To Be A Mod&quot; :: i dont be a mod but i wana ban everyone<br />
<br />
Do you know the St0rm rules? :: dont know any rUles didnt now we ahd em<br />
<br />
Questions ::<br />
Do you have Teamspeak and/or mIRC? not sure what these things are wgere <br />
Do you know the rules on the server? no as stated above nt sore about the rules<br />
Are you able to detect cheaters very well? not sure what cheats are i only know of something like RGJ?<br />
<br />
DIS NO JOKE!!! I WANA MOD PLZ</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?183-Archives">Archives</category>
			<dc:creator>Boofst0rm</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11911-bOOfst0rm</guid>
		</item>
		<item>
			<title>reapplying as the Dark Lord of the Sith</title>
			<link>http://www.st0rm.net/forum/showthread.php?11910-reapplying-as-the-Dark-Lord-of-the-Sith&amp;goto=newpost</link>
			<pubDate>Sun, 29 Aug 2010 11:04:20 GMT</pubDate>
			<description>Title ::Luke 
 
Renegade Name ::labrat0 
 
Age :: 25 
 
Rank In Server ::  Dark Sith Lord (1687/1700) 
 
Times Normally Played/Available ::  GMT+10.</description>
			<content:encoded><![CDATA[<div>Title ::Luke<br />
<br />
Renegade Name ::labrat0<br />
<br />
Age :: 25<br />
<br />
Rank In Server ::  Dark Sith Lord (1687/1700)<br />
<br />
Times Normally Played/Available ::  GMT+10. <br />
<br />
Experience Being A Mod :: as vet mod, admin,vet admin, then as officer,(same rank as As admin) <br />
<br />
<br />
&quot;Why I Would Like To Be A Mod&quot; :: I like it.<br />
<br />
Do you know the St0rm rules? :: preety much (btw the rules needs to updated again)<br />
<br />
<br />
How long have you been a mod for St0rm? (Reapplicants Only) :: 7 years and counting, as vet mod, admin,vet admin, then as officer,(same rank as As admin)</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?183-Archives">Archives</category>
			<dc:creator>Labrat0</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11910-reapplying-as-the-Dark-Lord-of-the-Sith</guid>
		</item>
		<item>
			<title>Moderator Application Meitis4Delta</title>
			<link>http://www.st0rm.net/forum/showthread.php?11909-Moderator-Application-Meitis4Delta&amp;goto=newpost</link>
			<pubDate>Sun, 29 Aug 2010 09:46:00 GMT</pubDate>
			<description>Title :: Mod Application - Hannes 
Renegade Name :: Meitis4Delta 
 
Age :: 15, 16 in 1 week. 
 
Rank In Server :: 1119 on Meitis4Delta and 202 on...</description>
			<content:encoded><![CDATA[<div>Title :: Mod Application - Hannes<br />
Renegade Name :: Meitis4Delta<br />
<br />
Age :: 15, 16 in 1 week.<br />
<br />
Rank In Server :: 1119 on Meitis4Delta and 202 on Meitis<br />
<br />
Times Normally Played/Available :: GMT +1. I can play every day for about an hour (with school coming), more on weekends. I don't play any other games so that's the most exact amount I can give.<br />
<br />
Experience Being A Mod :: I've been a Mod at UNRules for about 1.5 years, but due to inactivity and the owner I left. After that I was a Mod at the Kamuix Lite server for about 5-6 months. I'm no mod there anymore because of nobody plays on the server anymore.<br />
<br />
&quot;Why I Would Like To Be A Mod&quot; :: Because.. I feel like I can help the community. I think the position I'm in now doesn't fully let me getting to know the other moderators/.. and that's what I play for basicly: Having fun and meeting new people. Sometimes it happens that people just do unallowed things in game and when you ask them to stop, they continue until you do !requestmod. That's what I like to prevent with this application.<br />
<br />
Do you know the St0rm rules? :: Ofcourse <br />
<br />
How long have you been a mod for St0rm? (Reapplicants Only) :: /<br />
<br />
Questions ::<br />
Do you have Teamspeak and/or mIRC? (Y/N) Yes<br />
Do you know the rules on the server? (Y/N) Yes<br />
Are you able to detect cheaters very well? (Y/N - Give Explanation) Yes, I have enough experience with catching cheaters because of my Mod-time on UNRules and Kamuix Lite.</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?6-Moderator-Applications-(OPEN)">Moderator Applications (OPEN)</category>
			<dc:creator>Meitis</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11909-Moderator-Application-Meitis4Delta</guid>
		</item>
		<item>
			<title>Mod Application Maarten (Soulhunter)</title>
			<link>http://www.st0rm.net/forum/showthread.php?11908-Mod-Application-Maarten-(Soulhunter)&amp;goto=newpost</link>
			<pubDate>Sun, 29 Aug 2010 09:41:15 GMT</pubDate>
			<description>Title :: Mod Application Maarten 
 
Renegade Name :: Soulhunter4Delta 
 
Age :: 15 (16 on 8 september) 
 
Rank In Server :: Soulhunter4Delta is a...</description>
			<content:encoded><![CDATA[<div>Title :: Mod Application Maarten<br />
<br />
Renegade Name :: Soulhunter4Delta<br />
<br />
Age :: 15 (16 on 8 september)<br />
<br />
Rank In Server :: Soulhunter4Delta is a (Elite) ****General (1842/1900)<br />
<br />
Times Normally Played/Available :: GMT +1, I try to be online as much as possible (and I'm online for at least one hour every day)<br />
<br />
Experience Being A Mod :: more than 3 months here at st0rm and I was also a moderator at another community (kamuix lite) for 1 or 2 months untill the server owner stopped with that server (also mentioned this in my previous mod application)<br />
<br />
&quot;Why I Would Like To Be A Mod&quot; :: Like I said in my previous mod application, I like to help people and I want to help this community to catch cheaters and rule-breakers<br />
<br />
Do you know the St0rm rules? :: Yes, I know all of them<br />
<br />
<br />
How long have you been a mod for St0rm? (Reapplicants Only) :: a bit more than 3 months I think<br />
<br />
Questions ::<br />
Do you have Teamspeak and/or mIRC? (Y/N): Yes<br />
Do you know the rules on the server? (Y/N): Yes<br />
Are you able to detect cheaters very well? (Y/N - Give Explanation): Yes, I have become a lot better at catching cheaters then when I first started here as a mod, but I'm still learning a bit every day</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?6-Moderator-Applications-(OPEN)">Moderator Applications (OPEN)</category>
			<dc:creator>Soulhunter</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11908-Mod-Application-Maarten-(Soulhunter)</guid>
		</item>
		<item>
			<title>Pine - (RE) Mod Applications</title>
			<link>http://www.st0rm.net/forum/showthread.php?11905-Pine-(RE)-Mod-Applications&amp;goto=newpost</link>
			<pubDate>Sun, 29 Aug 2010 03:24:11 GMT</pubDate>
			<description>*Title ::* Mod Application Pine 
 
*Renegade Name ::* Pinnyman (OLD) | Pine (Current) 
 
*Age ::* 13 
 
*Rank In Server ::* Ghillie in the Mist...</description>
			<content:encoded><![CDATA[<div><font color="#ff8c00"><b>Title ::</b></font> Mod Application Pine<br />
<br />
<font color="#ff8c00"><b>Renegade Name ::</b></font> Pinnyman (OLD) | Pine (Current)<br />
<br />
<font color="#ff8c00"><b>Age ::</b></font> 13<br />
<br />
<font color="#ff8c00"><b>Rank In Server ::</b></font> Ghillie in the Mist (5773/6000)<br />
<br />
<font color="#ff8c00"><b>Times Normally Played/Available ::</b></font> Timezone, +7 GMT. I can play 4PM-10PM in Weekdays and depends on Homework, Anytime in the Weekends.<br />
<br />
<font color="#ff8c00"><b>Experience Being A Mod ::</b></font> 4 Years moderator, ATL4NTIS. 5-6 <br />
<br />
<font color="#ff8c00"><b>&quot;Why I Would Like To Be A Mod&quot; ::</b></font> Detect cheaters and make the best gameplay possible in the servers and I would really love to do that as always. It will be good if being a mod enables me the option to help and support st0rm more for example by help new members, make people follow the rules and much more. It would be great if I can support st0rm more because its my favorite server in the whole game that I've ever played in also. Thus, in the fact that St0rm isn't really in a &quot;GREAT&quot; Condition in my opinion-- I would like to help out as much as I can also. Personally, I do not want St0rm to go down and the community's moderators are leaving for many reasons as what I heard from Troy's recording of the Network Meeting. This is the most thing that I could do to help support this community alive.<br />
<br />
<font color="#ff8c00"><b>Do you know the St0rm rules? ::</b></font> I have read the full thread of the rules in the St0rm community and have understood them all.<br />
<br />
<font color="#ff8c00"><b>How long have you been a mod for St0rm? (Reapplicants Only) ::</b></font> 5-6 Months.<br />
<br />
<br />
<font color="#ff8c00"><b>Questions ::</b></font><br />
<font color="#ff8c00"><i>Do you have Teamspeak and/or mIRC? ::</i></font> Yes, I have both of them.<br />
<font color="#ff8c00"><i>Do you know the rules on the server? ::</i></font> Understood, very well.<br />
<font color="#ff8c00"><i>Are you able to detect cheaters very well? ::</i></font> Even though I think I have a pretty good enough experience on catching cheaters, I've always been studying about what the hacks does and how to spot them. I could do pretty much an okay job but keeps on improving the best.<br />
<br />
<i><font color="#00bfff">Best Regards,<br />
Pine §.</font></i></div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?183-Archives">Archives</category>
			<dc:creator>Pine</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11905-Pine-(RE)-Mod-Applications</guid>
		</item>
		<item>
			<title><![CDATA[Jim5Star's Moderator Application]]></title>
			<link>http://www.st0rm.net/forum/showthread.php?11904-Jim5Star-s-Moderator-Application&amp;goto=newpost</link>
			<pubDate>Sun, 29 Aug 2010 03:05:48 GMT</pubDate>
			<description>Title :: Mod Application-James, but everyone calls me Jimmy 
 
Renegade Name :: Jim5Star 
 
Age :: 34 
 
Rank In Server :: 2062 
 
Times Normally...</description>
			<content:encoded><![CDATA[<div>Title :: Mod Application-James, but everyone calls me Jimmy<br />
<br />
Renegade Name :: Jim5Star<br />
<br />
Age :: 34<br />
<br />
Rank In Server :: 2062<br />
<br />
Times Normally Played/Available :: GMT +5  mostly between 7pm-12am weekdays &amp; anytime on the weekends.<br />
<br />
Experience Being A Mod :: 3 years mod on UNRules servers &amp; 2 months on Storm servers<br />
<br />
&quot;Why I Would Like To Be A Mod&quot; :: To help keep the flow of the game moving, help players with Storm servers features &amp; to find/investigate/remove cheating players from the server.<br />
<br />
Do you know the St0rm rules? :: Yes<br />
<br />
<br />
How long have you been a mod for St0rm? (Reapplicants Only) :: 2 months<br />
<br />
<br />
Questions ::<br />
Do you have Teamspeak and/or mIRC? yes (I need someone to help me with my new mic)<br />
Do you know the rules on the server? yes<br />
Are you able to detect cheaters very well? I am not an expert, but I do have experience with RGH, biatch, bots &amp; correlating IP's. I am willing to learn more &amp; would like to expand my knowledge of fraps.<br />
<br />
Thank you, <br />
Jimmy</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?183-Archives">Archives</category>
			<dc:creator>Jim5Star</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11904-Jim5Star-s-Moderator-Application</guid>
		</item>
		<item>
			<title>moderator application bigost0rm</title>
			<link>http://www.st0rm.net/forum/showthread.php?11903-moderator-application-bigost0rm&amp;goto=newpost</link>
			<pubDate>Sun, 29 Aug 2010 02:31:55 GMT</pubDate>
			<description><![CDATA[*Title ::* Edward Oster 
  
*Renegade Name :: bigost0rm* 
  
*Age :: *32 
  
*Rank In Server ::* one star General. I don't remeber the numbers 
 ...]]></description>
			<content:encoded><![CDATA[<div><b><font color="#ff8c00">Title ::</font></b> Edward Oster<br />
 <br />
<b><font color="darkorange">Renegade Name :: bigost0rm</font></b><br />
 <br />
<font color="darkorange"><b>Age :: </b></font>32<br />
 <br />
<font color="darkorange"><b>Rank In Server ::</b></font> one star General. I don't remeber the numbers<br />
 <br />
<font color="darkorange"><b>Times Normally Played/Available ::</b></font> Evenings and afternoons if i do not have anything to do that day.<br />
 <br />
<font color="darkorange"><b>Experience Being A Mod ::</b></font> Have been a mod in the past for a long time<br />
 <br />
<font color="darkorange"><b>&quot;Why I Would Like To Be A Mod&quot; ::</b></font> I really enjoyed my time as a mod before and having a part in the staff and making sure that games go smoothly. I believe that I have a good reputation with the other mods in the community and can always find to get along with people.<br />
 <br />
<font color="darkorange"><b>Do you know the St0rm rules? :: Yes</b></font><br />
 <br />
 <br />
<font color="darkorange"><b>How long have you been a mod for St0rm? (Reapplicants Only) ::</b></font> Honestly, hard to say. I was a mod in the good 'ole XIL days and was Mod for a long time as st0rm member. I was a way for a while and my status was taken away which I totaly expected. <br />
 <br />
 <br />
<font color="darkorange"><b>Questions ::</b></font><br />
Do you have Teamspeak and/or mIRC? Yes to Both<br />
Do you know the rules on the server? Yes<br />
Are you able to detect cheaters very well? Yes. I have banned many before. I remeber when Foggy was here. Him and I were the night time police.<br />
 <br />
I have been alot more active lately and plan on continuing to be so. I speak English very well, though I do spell things wrong every now and then.<br />
Thank you!</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?183-Archives">Archives</category>
			<dc:creator>bigost0rm</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11903-moderator-application-bigost0rm</guid>
		</item>
		<item>
			<title>Moderator Application: Pyromania</title>
			<link>http://www.st0rm.net/forum/showthread.php?11902-Moderator-Application-Pyromania&amp;goto=newpost</link>
			<pubDate>Sun, 29 Aug 2010 02:03:37 GMT</pubDate>
			<description>Title :: Matthew Bare 
 
Renegade Name :: Pyromania 
 
Age :: 15 
 
Rank In Server ::  Pyromania is a Korean (2847/3000) 
 
Times Normally...</description>
			<content:encoded><![CDATA[<div><font color="dimgray">Title :: Matthew Bare<br />
<br />
Renegade Name :: Pyromania<br />
<br />
Age :: 15<br />
<br />
Rank In Server ::  Pyromania is a Korean (2847/3000)</font><br />
<font color="dimgray"><br />
Times Normally Played/Available :: School is approaching so, 3PM-10PM EST Time, I wll be active 1-3 hours a day.<br />
<br />
Experience Being A Mod :: I have been an Officer here at St0rm and have been part of the general staff for over 3 years.<br />
<br />
&quot;Why I Would Like To Be A Mod&quot; :: Of course to catch hackers and stop rule breakers. I also would and do like being a mod because there is always someone in need of assistance and I really like helping players like that out. I like attempting to give every player the best experience they can possibly have and that's why I would like to be a moderator.<br />
<br />
Do you know the St0rm rules? :: Yes, although CO-OP rules are a bit touchy.<br />
<br />
How long have you been a mod for St0rm? (Reapplicants Only) :: Over 3 years<br />
<br />
Questions ::<br />
Do you have Teamspeak and/or mIRC? (<b>Y</b>/N)<br />
Do you know the rules on the server? (<b>Y</b>/N)<br />
<br />
Are you able to detect cheaters very well? (<b>Y</b>/N - Give Explanation) :: I have caught many cheaters in the act while spotting potential cheaters who have later been banned by the rest of our great staff.<br />
<br />
Other Thoughts :: I love St0rm and I have loved every second at it and I work 100% at my job when I am ingame all the time.<br />
 <br />
Thankyou for reviewing my moderator application, it is an honor.<br />
</font></div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?183-Archives">Archives</category>
			<dc:creator>Pyromania</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11902-Moderator-Application-Pyromania</guid>
		</item>
		<item>
			<title><![CDATA[[effect]Web-Helo Blades]]></title>
			<link>http://www.st0rm.net/forum/showthread.php?11900-effect-Web-Helo-Blades&amp;goto=newpost</link>
			<pubDate>Sun, 29 Aug 2010 00:53:58 GMT</pubDate>
			<description>This actually turned out kinda cool- 
 
It was very distracting at first, cuz I came up with some really interesting effects with this spinning, but...</description>
			<content:encoded><![CDATA[<div>This actually turned out kinda cool-<br />
<br />
It was very distracting at first, cuz I came up with some really interesting effects with this spinning, but deemed it was too eye catching : IE: my eyes would fixate on the blades web motions and  I would fly into stuff.<br />
<br />
I had it where it appeared the web stretched in and out while spinning, and with a circular outward stroke. too eye catching LOL<br />
<br />
so I did a little of this and that to make it less so.<br />
<br />
<br />
SS's<br />
<br />
<a href="http://i38.tinypic.com/345e7fo.jpg" rel="lytebox[106027]"><img src="http://i38.tinypic.com/345e7fo.jpg" style="max-width: 400px; max-height: 400px; cursor: pointer;" border="0" alt="" /></a><br />
<a href="http://i37.tinypic.com/2m6x21k.jpg" rel="lytebox[106027]"><img src="http://i37.tinypic.com/2m6x21k.jpg" style="max-width: 400px; max-height: 400px; cursor: pointer;" border="0" alt="" /></a><br />
<a href="http://i35.tinypic.com/xoku13.jpg" rel="lytebox[106027]"><img src="http://i35.tinypic.com/xoku13.jpg" style="max-width: 400px; max-height: 400px; cursor: pointer;" border="0" alt="" /></a><br />
<a href="http://i37.tinypic.com/auihyr.jpg" rel="lytebox[106027]"><img src="http://i37.tinypic.com/auihyr.jpg" style="max-width: 400px; max-height: 400px; cursor: pointer;" border="0" alt="" /></a><br />
<a href="http://i37.tinypic.com/263wn46.jpg" rel="lytebox[106027]"><img src="http://i37.tinypic.com/263wn46.jpg" style="max-width: 400px; max-height: 400px; cursor: pointer;" border="0" alt="" /></a><br />
<br />
on diff Apache<br />
<a href="http://i35.tinypic.com/15dkpk.jpg" rel="lytebox[106027]"><img src="http://i35.tinypic.com/15dkpk.jpg" style="max-width: 400px; max-height: 400px; cursor: pointer;" border="0" alt="" /></a><br />
<a href="http://i36.tinypic.com/2hmfxb7.jpg" rel="lytebox[106027]"><img src="http://i36.tinypic.com/2hmfxb7.jpg" style="max-width: 400px; max-height: 400px; cursor: pointer;" border="0" alt="" /></a><br />
<a href="http://i35.tinypic.com/13zshkx.jpg" rel="lytebox[106027]"><img src="http://i35.tinypic.com/13zshkx.jpg" style="max-width: 400px; max-height: 400px; cursor: pointer;" border="0" alt="" /></a><br />
<a href="http://i33.tinypic.com/2myotba.jpg" rel="lytebox[106027]"><img src="http://i33.tinypic.com/2myotba.jpg" style="max-width: 400px; max-height: 400px; cursor: pointer;" border="0" alt="" /></a><br />
<br />
Now for Motion***********<br />

<object class="restrain" type="application/x-shockwave-flash" width="640" height="385" data="http://www.youtube.com/v/MtpSwYSgXbs">
	<param name="movie" value="http://www.youtube.com/v/MtpSwYSgXbs" />
	<param name="wmode" value="transparent" />
	<!--[if IE 6]>
	<embed width="640" height="385" type="application/x-shockwave-flash" src="http://www.youtube.com/v/MtpSwYSgXbs" />
	<![endif]--></object>
 <br />
<br />
Note If any one wants the Sky Spider Apache ask and I will post it.<br />
It has Real Spider eyes in Missile pods and on turbine inlets<br />
<br />
<br />
<br />
<a href="http://www.st0rm.net/renegade/queen/SkySpider%20Blades.zip" target="_blank">DOWNLOAD</a></div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?95-Misc">Misc</category>
			<dc:creator>queenhunter</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11900-effect-Web-Helo-Blades</guid>
		</item>
		<item>
			<title>Moderator Application for Alex a.k.a. ColdBloodedNerd</title>
			<link>http://www.st0rm.net/forum/showthread.php?11898-Moderator-Application-for-Alex-a.k.a.-ColdBloodedNerd&amp;goto=newpost</link>
			<pubDate>Sun, 29 Aug 2010 00:11:27 GMT</pubDate>
			<description><![CDATA[*Title ::* Mod Application [Alex Brückner (for the english guys Bridgener) 
 
*Renegade Name ::* ColdBloodedNerd 
 
*Age :: *[16] 
 
*Rank In Server...]]></description>
			<content:encoded><![CDATA[<div><b><font color="DarkOrange">Title ::</font></b> Mod Application [Alex Brückner (for the english guys Bridgener)<br />
<br />
<b><font color="DarkOrange">Renegade Name ::</font></b> ColdBloodedNerd<br />
<br />
<font color="DarkOrange"><b>Age :: </b></font>[16]<br />
<br />
<font color="DarkOrange"><b>Rank In Server ::</b></font> [Right now, 26/50 ]<br />
<br />
<font color="DarkOrange"><b>Times Normally Played/Available ::</b></font> [GMT+1 Currently almost 24/7, unsure about free time when college starts]<br />
<font color="DarkOrange"><b>Experience Being A Mod ::</b></font> [Several years at St0rmNet and a few months at other communities before that]<br />
<br />
<font color="DarkOrange"><b>&quot;Why I Would Like To Be A Mod&quot; ::</b></font> [Be part of the Staff again and make sure everything in the servers goes well, as well making gameplay more enjoyable by removing users breaking the rules or cheating.]<br />
<br />
<font color="DarkOrange"><b>Do you know the St0rm rules? :: </b></font>[Yeah, I do know the rules.]<br />
<br />
<br />
<font color="DarkOrange"><b>How long have you been a mod for St0rm? (Reapplicants Only) ::</b></font> [Approximatly 2 years as a MODERATOR, a bit longer as a normal Member]<br />
<br />
<br />
<font color="DarkOrange"><b>Questions ::</b></font><br />
Do you have Teamspeak and/or mIRC? (Y/N) Yop. Both.<br />
Do you know the rules on the server? (Y/N) Yeah, like I already stated.<br />
Are you able to detect cheaters very well? (Y/N - Give Explanation)<br />
<br />
I kinda have an instict when somebody cheats. It does not let me down very often, and the experience I gained in my moderator years kind of make me sure whether somebody cheats or not, although I try gathering as much evidence on the suspect as I can.<br />
<br />
Guys, I know I let you down a lot. I know i promised to stay active, and I didn't. But I have minor issues at home, I do not come along with my fathers girlfriend at all, I had examinations, I am going to college, and I have a life. I am no longer this little boy sitting on his computer 24/7, to escape the reality. Times changed. I have a life, friends i have to take care of. Soon homework and studying for school. I also cannot always be online, I get bored of Renegade when I play it for 2 hours straight, so I play other games like Battlefield, Split/Second and such. I am sorry to let you guys down, but please understand this<br />
<br />
-Alex</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?6-Moderator-Applications-(OPEN)">Moderator Applications (OPEN)</category>
			<dc:creator>Alex</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11898-Moderator-Application-for-Alex-a.k.a.-ColdBloodedNerd</guid>
		</item>
		<item>
			<title>mod app BlackDragonOfDarkness</title>
			<link>http://www.st0rm.net/forum/showthread.php?11897-mod-app-BlackDragonOfDarkness&amp;goto=newpost</link>
			<pubDate>Sat, 28 Aug 2010 23:54:48 GMT</pubDate>
			<description>Name ::  Jesse 
 
Renegade Name :: BlackDragonOfDarknes 
 
Age :: 21 
 
Rank In Server :: BlackDragonOfDarknes is a Death Dragon (2007/2100) 
 
Times...</description>
			<content:encoded><![CDATA[<div>Name ::  Jesse<br />
<br />
Renegade Name :: BlackDragonOfDarknes<br />
<br />
Age :: 21<br />
<br />
Rank In Server :: BlackDragonOfDarknes is a Death Dragon (2007/2100)<br />
<br />
Times Normally Played/Available :: 24 hours a day between friday to sunday every week.<br />
<br />
Experience Being A Mod :: Moderator at St0rm since 3 - 20 - 2009<br />
<br />
&quot;Why I Would Like To Be A Mod&quot; :: I like to keep players happy in the server by answering questions and keeping the server clean by catching cheaters to keep players in the server.  i have also helped many people with commands by noticing in chat that they dont know the command when they type it wrong.<br />
<br />
Do you know the St0rm rules? ::  Yes, i read the forums regularly and i do double check when im not sure. <br />
<br />
How long have you been a mod for St0rm? (Reapplicants Only) :: Since march 20 2009<br />
<br />
<br />
Questions ::<br />
Do you have Teamspeak and/or mIRC? (Y) These are the first 2 programs i start when i get on the net.<br />
<br />
Do you know the rules on the server? (Y) I always keep myself  current on the server rules.<br />
<br />
Are you able to detect cheaters very well? (Y)  While i have been a moderator at St0rm, i have caught a 1 or 2 elusive cheaters, and i have caught a few not so elusive cheaters. I've learned all that it took to catch those cheaters while a moderator at St0rm.  the first thing i do when i see odd behavior, is hit F9 and start watching for more while pretending not to.</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?6-Moderator-Applications-(OPEN)">Moderator Applications (OPEN)</category>
			<dc:creator>Dragonst0rm</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11897-mod-app-BlackDragonOfDarkness</guid>
		</item>
		<item>
			<title>Mod Application tisq</title>
			<link>http://www.st0rm.net/forum/showthread.php?11896-Mod-Application-tisq&amp;goto=newpost</link>
			<pubDate>Sat, 28 Aug 2010 23:54:09 GMT</pubDate>
			<description>Renegade Name: OSTKtisq 
 
Age: Don’t ask a girl for their age 
 
Rank In Server: OSTKtisq is a (Veteran) *****General (7958/9000) 
 
Times Normally...</description>
			<content:encoded><![CDATA[<div>Renegade Name: OSTKtisq<br />
<br />
Age: Don’t ask a girl for their age<br />
<br />
Rank In Server: OSTKtisq is a (Veteran) *****General (7958/9000)<br />
<br />
Times Normally Played/Available: time zone GMT+1, normally playing some hours in the evening/night hours on weekdays and some more hours on weekends<br />
<br />
Experience Being A Mod: was trainee on st0rm for some time<br />
<br />
&quot;Why I Would Like To Be A Mod&quot;: helping other players. keep the server clean.<br />
<br />
Do you know the St0rm rules? Yes<br />
<br />
How long have you been a mod for St0rm? (Reapplicants Only) :: 5 month<br />
<br />
Do you have Teamspeak and/or mIRC? Yes both<br />
Do you know the rules on the server? Yes<br />
Are you able to detect cheaters very well? I learned a lot of catching cheaters in the time I am here.</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?183-Archives">Archives</category>
			<dc:creator>tisqsaps</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11896-Mod-Application-tisq</guid>
		</item>
		<item>
			<title>Bounty on Vancer2</title>
			<link>http://www.st0rm.net/forum/showthread.php?11895-Bounty-on-Vancer2&amp;goto=newpost</link>
			<pubDate>Sat, 28 Aug 2010 23:38:45 GMT</pubDate>
			<description>Contract Null and Void.</description>
			<content:encoded><![CDATA[<div>Contract Null and Void.</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?243-Bounty-Board">Bounty Board</category>
			<dc:creator>Tecness2</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11895-Bounty-on-Vancer2</guid>
		</item>
		<item>
			<title>Changes in the market??</title>
			<link>http://www.st0rm.net/forum/showthread.php?11894-Changes-in-the-market&amp;goto=newpost</link>
			<pubDate>Sat, 28 Aug 2010 23:31:51 GMT</pubDate>
			<description>Over the next few days, maybe weeks i will fine tune some price lists that when implemented in the server could mean the market prices changing.  So...</description>
			<content:encoded><![CDATA[<div>Over the next few days, maybe weeks i will fine tune some price lists that when implemented in the server could mean the market prices changing.  So in the instance of a recession we might have the lawful bases buying and selling goods for higher prices and the pirate bases buying and selling for low prices.  On the other hand, during a Boom the lawful bases will buy and sell at a low price and the pirate bases will buy and sell at a high price.<br />
<br />
There will also be a bonus during the market Boom there will be a credit card on sale at Planet Malta for Outcasts and Planet Crete for Corsair, these credit cards will only make a profit when sold at Rochester base in the New York System.    <br />
<br />
If the authorities in liberty are aware of the pirates trying to smuggle credit cards, they can throw out a bounty on the pirate.  Pirates are also allowed to take these contracts, for the authorities, after all, a pirate would betray their own to make some quick cash.<br />
<br />
<br />
This price list system could take a while as im going to have to look through a total of 8338 lines worth of commodity prices.</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?238-News-and-Updates">News and Updates</category>
			<dc:creator>SnowSt0rm</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11894-Changes-in-the-market</guid>
		</item>
		<item>
			<title>Mod Application Wyldst0rm</title>
			<link>http://www.st0rm.net/forum/showthread.php?11893-Mod-Application-Wyldst0rm&amp;goto=newpost</link>
			<pubDate>Sat, 28 Aug 2010 23:29:41 GMT</pubDate>
			<description>*Renegade Name :: Wyldst0rm* 
  
*Age :: 39* 
  
*Rank In Server :: General (438/550)* 
  
*Times Normally Played/Available :: Evenings and weekends...</description>
			<content:encoded><![CDATA[<div><b><font color="cyan">Renegade Name :: Wyldst0rm</font></b><br />
 <br />
<b><font color="cyan">Age :: 39</font></b><br />
 <br />
<b><font color="cyan">Rank In Server :: General (438/550)</font></b><br />
 <br />
<b><font color="cyan">Times Normally Played/Available :: Evenings and weekends Central USA Time Zone (I do work during the day)</font></b><br />
 <br />
<b><font color="cyan">Experience Being A Mod :: Been a mod sice the game came out but mostly admin status. Owned several servers : most recently RenMasters, Ren-Archive, made part owner of Jelly when Ren-archive merged. Past Admin on [UN] Rules, n00bless, Jelly Community, Past Mod on many servers, just to list the ones still running Atomix. No longer a mod, admin, or owner anywhere. Really only play on St0rm servers. :) Why should I play or mod anywhere else? You have 100% of me.</font></b><br />
 <br />
<b><font color="cyan">&quot;Why I Would Like To Be A Mod&quot; :: I want to be a part of this community as a contributor. Modding is just one of the aspects I can help. I donate when I can and offer my assistance in anyway I can. I hope to move up the ranks over time to assist in higher level items and running the community. I want the server to be a safe and fair place to play and a community that will stay respected. I feel I have the maturity and experience to make it happen. I have played in St0rm really since the very beginning of Ren as Wyld1USA and it has been the one community that has lasted the test of time and kept an awesome reputation. I like that some of the old school players are here and how it is run with the council set up and Wilo as owner. Who wouldn't want to be a mod and a part of this community? </font></b><br />
 <br />
<b><font color="cyan">Do you know the St0rm rules? :: Very well now as being a trainee I was given access to all the pdf's and read them throughly as well.</font></b><br />
 <br />
 <br />
<b><font color="cyan">How long have you been a mod for St0rm? (Reapplicants Only) :: Only a trainee for less than 2 months.</font></b><br />
 <br />
<b><font color="cyan">Questions ::</font></b><br />
<b><font color="cyan">Do you have Teamspeak and/or mIRC? Yes and on it 24/7</font></b><br />
<b><font color="cyan">Do you know the rules on the server? Yes very well</font></b><br />
<b><font color="cyan">Are you able to detect cheaters very well? Yes from years of experience and with the help of fellow St0rm moderators and admins.</font></b></div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?183-Archives">Archives</category>
			<dc:creator>Wyldst0rm</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11893-Mod-Application-Wyldst0rm</guid>
		</item>
		<item>
			<title>If your curious as to why you lost your modship</title>
			<link>http://www.st0rm.net/forum/showthread.php?11892-If-your-curious-as-to-why-you-lost-your-modship&amp;goto=newpost</link>
			<pubDate>Sat, 28 Aug 2010 23:29:33 GMT</pubDate>
			<description>Hello. 
 
If you are wondering as to why you lost your modship, _*EVERYONE*_ on the team lost it. 
 
You will have to reapply, and your application...</description>
			<content:encoded><![CDATA[<div>Hello.<br />
<br />
If you are wondering as to why you lost your modship, <u><b>EVERYONE</b></u> on the team lost it.<br />
<br />
You will have to reapply, and your application will be subject for approval depending on that application. Anyone else wanting to reapply, feel free to do so. Please do not take this personal, as everyone got wiped from the list.<br />
<br />
Good luck!<br />
<br />
<br />
Troy M.</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?4-Renegade">Renegade</category>
			<dc:creator>Troy</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11892-If-your-curious-as-to-why-you-lost-your-modship</guid>
		</item>
		<item>
			<title>App for crysis992</title>
			<link>http://www.st0rm.net/forum/showthread.php?11891-App-for-crysis992&amp;goto=newpost</link>
			<pubDate>Sat, 28 Aug 2010 23:24:40 GMT</pubDate>
			<description>Renegade Name :: crysis992  
 
Age :: 17 
 
Rank In Server :: (Veteran) First Lieutenant (3669/3750) 
 
Times Normally Played/Available :: GMT +2...</description>
			<content:encoded><![CDATA[<div>Renegade Name :: crysis992 <br />
<br />
Age :: 17<br />
<br />
Rank In Server :: (Veteran) First Lieutenant (3669/3750)<br />
<br />
Times Normally Played/Available :: GMT +2 active ingame and irc 5-8 hours per day.<br />
<br />
Experience Being A Mod :: yes 7 months as a trainee here at st0rm<br />
2 years at Duke-Gaming as a full moderator and a half year as a Administrator at LG-Gaming.<br />
<br />
&quot;Why I Would Like To Be A Mod&quot; :: Cause i like to help the guys on the server that have problems with anything. And wanna clear the server from cheaters and stop the rulebreakers :p<br />
<br />
Do you know the St0rm rules? :: sure<br />
<br />
<br />
How long have you been a mod for St0rm? (Reapplicants Only) :: about 7 months<br />
<br />
Questions ::<br />
Do you have Teamspeak and/or mIRC? Yes<br />
Do you know the rules on the server? Yes<br />
Are you able to detect cheaters very well? Yeah after 5 months as a trainee i think so =)</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?183-Archives">Archives</category>
			<dc:creator>crysis992</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11891-App-for-crysis992</guid>
		</item>
		<item>
			<title>Moderator application queenhunter</title>
			<link>http://www.st0rm.net/forum/showthread.php?11890-Moderator-application-queenhunter&amp;goto=newpost</link>
			<pubDate>Sat, 28 Aug 2010 22:41:52 GMT</pubDate>
			<description>*Title ::* Randal 
 
*Renegade Name ::*queenhunter 
 
*Age ::*44 
 
*Rank In Server ::* 2997   
 
*Times Normally Played/Available ::* really any...</description>
			<content:encoded><![CDATA[<div><b><font color="DarkOrange">Title ::</font></b> Randal<br />
<br />
<b><font color="DarkOrange">Renegade Name ::</font></b>queenhunter<br />
<br />
<font color="DarkOrange"><b>Age ::</b></font>44<br />
<br />
<font color="DarkOrange"><b>Rank In Server ::</b></font> 2997  <br />
<br />
<font color="DarkOrange"><b>Times Normally Played/Available ::</b></font> really any time,and most of the time.<br />
                                                           I do not have a times avail. When Needed<br />
<br />
<font color="DarkOrange"><b>Experience Being A Mod ::</b></font> St0rm.net <br />
<br />
<font color="DarkOrange"><b>&quot;Why I Would Like To Be A Mod&quot; ::</b></font> To keep players coming to play in st0rm servers.To keep the peace.Assist players/others when I can.enforce rules and keep cheats out.<br />
<br />
<font color="DarkOrange"><b>Do you know the St0rm rules? :: </b></font>Yes, not every single one but am very familiar<br />
and generally keep informed.<br />
<br />
<br />
<font color="DarkOrange"><b>How long have you been a mod for St0rm? (Reapplicants Only) ::</b></font> I think it has been 4 months.</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?183-Archives">Archives</category>
			<dc:creator>queenhunter</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11890-Moderator-application-queenhunter</guid>
		</item>
		<item>
			<title><![CDATA[Kickmofo's Mod Application]]></title>
			<link>http://www.st0rm.net/forum/showthread.php?11889-Kickmofo-s-Mod-Application&amp;goto=newpost</link>
			<pubDate>Sat, 28 Aug 2010 22:41:03 GMT</pubDate>
			<description>Title :: Mod Application  
 
Renegade Name :: Kickmofo  
 
Real Name: Gavin 
 
Age :: 37 
 
Rank In Server :: (Veteran) Sergeant (2469/2500)</description>
			<content:encoded><![CDATA[<div>Title :: Mod Application <br />
<br />
Renegade Name :: Kickmofo <br />
<br />
Real Name: Gavin<br />
<br />
Age :: 37<br />
<br />
Rank In Server :: (Veteran) Sergeant (2469/2500)<br />
<br />
Times Normally Played/Available :: I play most nights and some days (Mon, Tuesday &amp; Wednesday). I am from Australia.<br />
<br />
Experience Being A Mod :: I have being a mod on St0rm Server for 3 months now &amp; also for almost 6 years on various other servers. Renstation,FM,MP,NoNoobs. Currently I am a mod on Jelly &amp; UnRules (But I hardly play those servers anymore).<br />
<br />
&quot;Why I Would Like To Be A Mod&quot; :: 1. Cheat free game. 2. Keep order in the game especially in my time Zone. <br />
<br />
Do you know the St0rm rules? :: Yes.<br />
<br />
How long have you been a mod for St0rm? (Reapplicants Only) :: 3 Months<br />
<br />
Questions ::<br />
Do you have Teamspeak and/or mIRC? Yes &amp; Yes<br />
Do you know the rules on the server? Yes<br />
Are you able to detect cheaters very well? Yes. <br />
<br />
This is a great server but what makes it great is the poeple in this community. I feel poeple that want to be moderator actually need to play the game, NOT just mod from Irc. Maybe a minimum requirement like playing once a week. I believe a mininum age requirement should be put in place as well. <br />
<br />
Anyway my rant for today. Take care<br />
<br />
If you have questions about me please fell free to ask.<br />
<br />
Gav</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?183-Archives">Archives</category>
			<dc:creator>Kicmofo</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11889-Kickmofo-s-Mod-Application</guid>
		</item>
		<item>
			<title>Mod App TerraDyne23</title>
			<link>http://www.st0rm.net/forum/showthread.php?11888-Mod-App-TerraDyne23&amp;goto=newpost</link>
			<pubDate>Sat, 28 Aug 2010 22:37:22 GMT</pubDate>
			<description>Renegade Name: TerraDyne23 
 
Actual Age: 17 
 
Rank in Server: Elite *****General (1959/2000) 
 
Times Normally played/Available: GMT+0, St0rm Mix...</description>
			<content:encoded><![CDATA[<div>Renegade Name: TerraDyne23<br />
<br />
Actual Age: 17<br />
<br />
Rank in Server: Elite *****General (1959/2000)<br />
<br />
Times Normally played/Available: GMT+0, St0rm Mix and Ultra, Availble when I can<br />
<br />
Why would I like to be a Mod: I hate cheaters and I just want to play the game how it should be played and cheaters never get away with moderators around in game <br />
<br />
Do you know the St0rm rules: Yes I know the rules very well<br />
<br />
Questions:<br />
Do you have TeamSpeak and/or mIRC: TeamSpeak 3 and mIRC, but need help with auth <br />
Do you know the rules on the server: Yes I know the rules very well<br />
Are you able to detect cheaters very well: Yes, Everyone who plays Renegade hates dealing with cheaters, and moderators are here to help  <br />
<br />
Also I have a disabilty you should know about... I will not post this publicly because other people treat me differently when i tell other people. Sorry</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?183-Archives">Archives</category>
			<dc:creator>TerraDyne23</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11888-Mod-App-TerraDyne23</guid>
		</item>
		<item>
			<title>Banned?</title>
			<link>http://www.st0rm.net/forum/showthread.php?11887-Banned&amp;goto=newpost</link>
			<pubDate>Sat, 28 Aug 2010 22:23:42 GMT</pubDate>
			<description>Is there any reason I was Banned 2nigt apart from been afk on the phone, but still a keeyboard. thanks</description>
			<content:encoded><![CDATA[<div>Is there any reason I was Banned 2nigt apart from been afk on the phone, but still a keeyboard. thanks</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?5-Ban-Disputes">Ban Disputes</category>
			<dc:creator>Captpo0ed</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11887-Banned</guid>
		</item>
		<item>
			<title>Mod app for d3oneGeneral.</title>
			<link>http://www.st0rm.net/forum/showthread.php?11886-Mod-app-for-d3oneGeneral.&amp;goto=newpost</link>
			<pubDate>Sat, 28 Aug 2010 22:21:26 GMT</pubDate>
			<description>Title :: Mod Application Nir Klinger 
 
Renegade Name ::d3oneGeneral 
 
Age :: 14 
 
Rank In Server :: d3oneGeneral is a (Veteran) Major (4147/4250)...</description>
			<content:encoded><![CDATA[<div><font color="cyan">Title :: Mod Application Nir Klinger<br />
<br />
Renegade Name ::d3oneGeneral<br />
<br />
Age :: 14<br />
<br />
Rank In Server :: d3oneGeneral is a (Veteran) Major (4147/4250)<br />
<br />
Times Normally Played/Available :: I'm playing alot everyday!<br />
<br />
Experience Being A Mod :: I was here and I'm trying again<br />
<br />
&quot;Why I Would Like To Be A Mod&quot; :: I have experience in here and I think I be again<br />
<br />
Do you know the St0rm rules? :: Yes<br />
<br />
How long have you been a mod for St0rm? 1 week<br />
<br />
Questions ::<br />
<br />
Do you have Teamspeak and/or mIRC? Yes , alot<br />
<br />
Do you know the rules on the server? Yes<br />
<br />
Are you able to detect cheaters very well? I can do that without problems<br />
<br />
Im trying again buz I know that I can do that more!<br />
<br />
Thx for giving your time for me! ;)</font></div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?6-Moderator-Applications-(OPEN)">Moderator Applications (OPEN)</category>
			<dc:creator>d3oneGeneral</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11886-Mod-app-for-d3oneGeneral.</guid>
		</item>
		<item>
			<title>mod app larSt0rm</title>
			<link>http://www.st0rm.net/forum/showthread.php?11885-mod-app-larSt0rm&amp;goto=newpost</link>
			<pubDate>Sat, 28 Aug 2010 22:21:06 GMT</pubDate>
			<description>meh deleted</description>
			<content:encoded><![CDATA[<div>meh deleted</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?182-Moderator-Applications-(OPEN)">Moderator Applications (OPEN)</category>
			<dc:creator>LarSt0rm</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11885-mod-app-larSt0rm</guid>
		</item>
		<item>
			<title>Application -TLS-DJ-EYE-K</title>
			<link>http://www.st0rm.net/forum/showthread.php?11884-Application-TLS-DJ-EYE-K&amp;goto=newpost</link>
			<pubDate>Sat, 28 Aug 2010 22:07:21 GMT</pubDate>
			<description>Application -TLS-DJ-EYE-K 
 
    Title :: Mod Application Eike Werner 
 
    Renegade Name : -TLS-DJ-EYE-K 
 
    Age :: 30 
 
    Rank In Server ::...</description>
			<content:encoded><![CDATA[<div>Application -TLS-DJ-EYE-K<br />
<br />
    Title :: Mod Application Eike Werner<br />
<br />
    Renegade Name : -TLS-DJ-EYE-K<br />
<br />
    Age :: 30<br />
<br />
    Rank In Server :: &lt;St0rmServ&gt;-TLS-DJ-EYE-K is a (Elite) Private First Class (838/850)<br />
<br />
    Times Normally Played/Available :: Germany ~ GMT +2 atm,normally its GMT +1. I most likely play in the Nights,cuz thats also the Time most of the Friends im playing with like Jello are on TS and with me.But im available most of the day over cuz im running IRC and IM many hours per Day.<br />
<br />
    Experience Being A Mod :: I was Half-Moderator @ At0mix Servers,Full-Moderator @ DT-Clan Server, Halfmod @ Oldtimez SniperServer, Full-Moderator @ L337 Sniper Servers and permanent Temp-Mod @ Allied-Gaming Servers,also TraineeMod @ st0rm.<br />
<br />
    &quot;Why I Would Like To Be A Mod&quot; ::I travelled through many Communities within my *RenCareer*,and ended up @ st0rm Servers cuz they are givin me the best feeling of active playing Renegade Peeps as far as i can tell.Seems also that this Community has a well experienced ModTeam,which is neccessary to make the Server run as it is,i also made a few Friends here so far,and would most likely bring in my ModExperience from the Years i got from other Servers. <br />
    <br />
Do you know the St0rm rules? :: yes<br />
<br />
<br />
    How long have you been a mod for St0rm? 2 months<br />
<br />
<br />
    Questions ::<br />
    <br />
Do you have Teamspeak and/or mIRC? yes<br />
    <br />
Do you know the rules on the server? yes<br />
    <br />
Are you able to detect cheaters very well? Oh,hell yeah,i do,as i am involved in so many Coms before and done many Bans (vice the opinion of a few Players out there,i never banned some1 without havin Proof of it in any way). I know st0rm has the policy to make it 101% sure that some1 is really ab00sing a cheat before u let the BanHammer fall,but this is fine with me,and im able to act same way as it is expected from the Mods/Trainees. I could give many Examples for the Bans i did,but this would let the Topic explode a bit,lol.<br />
<br />
Greetz -TLS-DJ-EYE-K</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?183-Archives">Archives</category>
			<dc:creator>DJ-EYE-K</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11884-Application-TLS-DJ-EYE-K</guid>
		</item>
		<item>
			<title>Battlefield Bad Company 2 Server Rules</title>
			<link>http://www.st0rm.net/forum/showthread.php?11883-Battlefield-Bad-Company-2-Server-Rules&amp;goto=newpost</link>
			<pubDate>Sat, 28 Aug 2010 22:00:00 GMT</pubDate>
			<description>*This is the list of rules that apply for the St0rm.net Battlefield Bad Company 2 Server. 
* 
1) No baserape! It is annoying, lame and immature to...</description>
			<content:encoded><![CDATA[<div><font face="Arial Narrow"><font color="red"><b><font color="silver">This is the list of rules that apply for the St0rm.net Battlefield Bad Company 2 Server.<br />
</font></b><br />
1) </font></font><font face="Arial Narrow"><font color="silver">No baserape! It is annoying, lame and immature to camp the enemy base and spawnkil</font></font><font face="Arial Narrow"><font color="red"><font color="silver"><b>l </b>everybody<b>. <font color="red">You are allowed to steal vehicles there if you leave the base at once <u>WITHOUT</u></font></b><font color="red"> <b>turning back and attacking them.</b></font></font><br />
<br />
2)</font></font><font face="Arial Narrow">  <b><font color="red">No base attacks.</font></b> It is not permitted to attack the enemy base, as  stated in rule 1. Do not use Helicopters, Tanks, UAVs or just anything  to attack the enemy at their main base, <b><font color="red">only exeptions are:</font></b><br />
<br />
</font>  <font face="Arial Narrow"><font color="red"><b>-You may return fire when under sniper fire.<br />
-You may return fire when under attack by vehicles and helicopters sitting at the base.</b></font></font><font face="Arial Narrow"><br />
<br />
</font>  <font face="Arial Narrow"><font color="red">3)</font></font><font face="Arial Narrow"> No cursing other players. </font><font face="Arial Narrow"><font color="red">It is fine to yell</font></font><font face="Arial Narrow"> &quot;Oh, damn it!&quot; and such, </font><font face="Arial Narrow"><font color="red">as long as it DOES NOT offend other players.</font></font><font face="Arial Narrow"><br />
<br />
</font>  <font face="Arial Narrow"><font color="red">4)</font></font><font face="Arial Narrow"> No racism. Racism is to be kept out of the server at all circumstances!<br />
</font> <font face="Arial Narrow"><font color="red"><br />
5)</font></font><font face="Arial Narrow"><font color="red">No cheating.</font></font><font face="Arial Narrow"> We have Punkbuster support and will permaban Cheaters on sight. </font><font face="Arial Narrow"><font color="red">It totally ruins gameplay.</font></font><font face="Arial Narrow"><br />
<br />
</font>  <font face="Arial Narrow"><font color="red">6)</font></font><font face="Arial Narrow"><font color="red"><b>Have fun! </b></font></font><font face="Arial Narrow">Games are here to have fun. So are communities! Follow the rules, have fun, enjoy your stay. <br />
<br />
-Alex</font></div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?175-Battlefield-Bad-Company-2">Battlefield: Bad Company 2</category>
			<dc:creator>Alex</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11883-Battlefield-Bad-Company-2-Server-Rules</guid>
		</item>
		<item>
			<title>Application TheSt0rmPlayer</title>
			<link>http://www.st0rm.net/forum/showthread.php?11882-Application-TheSt0rmPlayer&amp;goto=newpost</link>
			<pubDate>Sat, 28 Aug 2010 21:54:20 GMT</pubDate>
			<description>Title :: Mod Application Ben 
 
Renegade Name : TheSt0rmPlayer 
 
Age :: 17 
 
Rank In Server :: 2347 
 
Times Normally Played/Available :: Between 8...</description>
			<content:encoded><![CDATA[<div>Title :: Mod Application Ben<br />
<br />
Renegade Name : TheSt0rmPlayer<br />
<br />
Age :: 17<br />
<br />
Rank In Server :: 2347<br />
<br />
Times Normally Played/Available :: Between 8 pm and 11 pm. Different times on the weekend.<br />
<br />
Experience Being A Mod ::  Mod since May<br />
<br />
&quot;Why I Would Like To Be A Mod&quot; :: I do my best to help people out with the commands and I wanna teach em the rules. I also wanna  keep the servers clean of hackers.<br />
<br />
Do you know the St0rm rules? :: yes<br />
<br />
<br />
How long have you been a mod for St0rm? 8 months<br />
<br />
<br />
Questions ::<br />
Do you have Teamspeak and/or mIRC? yes<br />
Do you know the rules on the server? yes<br />
Are you able to detect cheaters very well? I hope so ^ ( Of course)</div>

 ]]></content:encoded>
			<category domain="http://www.st0rm.net/forum/forumdisplay.php?183-Archives">Archives</category>
			<dc:creator>TheSt0rmPlayer</dc:creator>
			<guid isPermaLink="true">http://www.st0rm.net/forum/showthread.php?11882-Application-TheSt0rmPlayer</guid>
		</item>
	</channel>
</rss>
