Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - General Omega

Pages: 1 2 3 4 5 6 [7] 8
91
Drama / The Doctor
« on: June 13, 2008, 10:48:44 PM »
Recently I have noticed a simi old forum member name The doctor has come back. He made a failure of a clan a few times and recently spammed some topics and has been clan whoring him self by asking to re apply to OC and has asked to join Sheep, JawA, Sniper, and has gotten into the Myth Blockers clan. He has also recently PM'd me this message show below

Discuss.


92
Games / Any good Battle Mech games?
« on: April 24, 2008, 03:49:50 PM »
I am kinda looking for a Battle mech MMO to play with. Before I played bl I used to play a game that is called Space Cowboys but it got shut down about a month after me qutiting. I was wondering if there are any other good battle mech games out there?

93
Drama / Going to hell
« on: April 09, 2008, 09:57:26 PM »
These forums are going to hell. We need people to help drive out the noobs and fast. our old brand of natural selection is dieing with kids who's mothers encourage them and couches give second place medlals. This needs to stop.



94
Drama / U.F.O.
« on: April 09, 2008, 06:01:49 PM »
     Now I really dont hate him but it has to stop. This person has been talking about RE4 all the time and is really starting to bug me.

This is to all the people who are like this:

GTFO and play the game it's self!

95
Games / Line Rider
« on: April 05, 2008, 05:29:31 PM »
I have been playing lately and find it adictive. So basicly just post one of your favorite line rider vids or your own if you have played it

Line Rider 1

96
Games / Peggle
« on: April 03, 2008, 11:47:35 PM »
Peggle is by far the gayest thing I have ever seen. It has unicorns who try to kill monsters by shooting balls at other balls and when your done with the level it shoots a rainbow and wants you to come donw with a fever. I played it becuse it was free from steam's NVidia thingy and i was board. also it has cheap rip offs of things like portal or team fortress 2

talik about it.

97
Suggestions & Requests / Brick Editor
« on: April 03, 2008, 02:02:49 PM »
I was thinking for V9 that we dont have any brick picker GUI and have an editor GUI like those in the forums where you choose the type of brikc you want the size and other stuff so we can customize our builds to be less laggy and minimize the # of bricks we use. I am not sure if it is good but I would like this to be in V9 so we could make our builds less bunched up with a bounch of 2x2x5's and 2x4x5 and stuff

98
Help / the welcome message
« on: March 15, 2008, 06:29:39 PM »
i have been to a few servers and saw that the persons name was move around the wecome message instead of having it at the end. i have just one question.
how do you do that

99
Gallery / Beta Tower 2
« on: March 05, 2008, 11:14:06 AM »
This is a build based off of the tower in beta city. In all it is around 6200 bricks






if you dont like it dont post and i know about the picture quality

100
Suggestions & Requests / Last man standing DM & TDM
« on: March 01, 2008, 04:35:31 PM »
baseicly a TDM and DM where if you get killed you stay dead untill the player count is 1. fot the TDM mode it is where all of the other team gets killed. if you get killed it would send your camera to another player on your team like in JVS Spector.

101
Suggestions & Requests / spread gun
« on: February 26, 2008, 06:19:21 PM »
a gun that instead of constantly clicking the button to fire and moving the mini fig.
shoots a series of bullets in a horisontal line like the bolter only it moves the bullets at a diffrent angle

102
Help / Clan forums
« on: February 24, 2008, 12:14:47 PM »
i dont know if this is the right section

can i post a forum link to my clan's forum it is just to have a feedbacke system for my clan

103
Mapping Help / Water block problems
« on: February 23, 2008, 05:45:15 PM »
i have a problem with my water block. it has holes in it that still act as water just with no texture


some holes

some more holes

104
Gallery / Nuclear fallout shelter
« on: February 21, 2008, 06:44:19 PM »
this is a shelter i made for my clan WW2 me and doorman took about 3 hours to do this


105
Modification Help / repeating announcements
« on: February 19, 2008, 09:03:41 PM »
i am modifying the admin slay command so i know if someone used it and i found that when i use slay all (/slayall) it repeates the message alot can some one help
Code: [Select]
function serverCmdSlay(%client, %victim)
{
if(%client.isSuperAdmin) {
   if(%victim $= "")
  {
      messageClient(%client, "", "\c0One or more of the required fields has been left blank.");
      return;
   }

   for(%i = 0; %i < ClientGroup.getCount(); %i++)
   {
      %cl = ClientGroup.getObject(%i);
      if(%cl.name $= %victim && isObject(%cl.player))
      {
          %cl.player.kill();
          announce("A person has died.");
          break;
      }
}
}
}
function serverCmdSlayID(%client, %victim)
{
if(%client.isSuperAdmin) {
   if(%victim <= 0)
  {
      messageClient(%client, "", "\c0One or more of the required fields has been left blank.");
      return;
   }

   for(%i = 0; %i < ClientGroup.getCount(); %i++)
   {
      %cl = ClientGroup.getObject(%i);
      if(%cl.bl_id $= %victim && isObject(%cl.player))
      {
          %cl.player.kill();
           announce("A person has died.");
           break;
      }
}
}
}
function serverCmdSlayAll(%client)
{
if(%client.isSuperAdmin)
{
   for(%i = 0; %i < ClientGroup.getCount(); %i++)
   {
      %cl = ClientGroup.getObject(%i);
      if(isObject(%cl.player))
      {
          %cl.player.kill();
          announce("Everyone  has died.");
      }
}
}
}

Pages: 1 2 3 4 5 6 [7] 8