The Exiled

Shunned by Man, Accepted by Gods
* FAQ    * Search   * Members
* Login   * Register
It is currently Sat Jul 05, 2025 8:51 am 

 View unanswered posts | View active topics


 Board index » General Area » General Discussion
Post new topic Reply to topic Users browsing this forum: No registered users and 0 guests
Author
Message
TE-Hammy


User avatar
Joined: Thu Jul 14, 2005 5:43 pm
Posts: 3204
Post Posted: Fri Dec 16, 2005 2:52 pm    Post subject:
Reply with quote
 
u said spam or some form of spam like... 56 times in that O.O


i bow to you o 1337 spammer O.O



This is not the sandwich you are looking for. Move along.
Image
Ze Sechs-fire wrote:
[22:00] [df]Braveskin: Can AfroMuffin spend the night at my house?
[22:00] [df]Braveskin: I have movize
[22:00] Hammy: No. You'll touch him.
[22:00] Hammy: With gusto.
[22:00] Hammy: He's not even a day old, pedophile.
[22:00] Hammy: >:l
[22:00] [df]Braveskin: plez!!
 Top Offline
Profile
Author
Message
TE-Hybrd$n!pr


User avatar
Joined: Mon Oct 17, 2005 3:58 pm
Posts: 1498
Location: Cleveland Ohio
Post Posted: Fri Dec 16, 2005 8:47 pm    Post subject:
Reply with quote
 
Spam spam spam spam spam spam sounds like pan with a van that crashed into a can that went Waam!! that scard some lady named pam who ran to sam that told that other man that hammy was gay.


Image
Image
XBOX LIVE : h4ck3d data***GO BROWNS!***
 Top Offline
Profile
Author
Message
TE-Braveskin

Joined: Thu Aug 11, 2005 3:28 am
Posts: 1176
Post Posted: Fri Dec 16, 2005 8:49 pm    Post subject:
Reply with quote
 
Code:
function Client::cancelMenu(%clientId)
{
   if(!%clientId.menuLock)
   {
      %clientId.selClient = "";
      %clientId.menuMode = "";
      %clientId.menuLock = "";
      remoteEval(%clientId, "CancelMenu");
      Client::setMenuScoreVis(%clientId, false);
   }
}

function Client::buildMenu(%clientId, %menuTitle, %menuCode, %cancellable)
{
   Client::setMenuScoreVis(%clientId, true);
   %clientId.menuLock = !%cancellable;
   %clientId.menuMode = %menuCode;
   remoteEval(%clientId, "NewMenu", %menuTitle);
}

function Client::addMenuItem(%clientId, %option, %code)
{
   remoteEval(%clientId, "AddMenuItem", %option, %code);
}

function remoteCancelMenu(%server)
{
   if(%server != 2048)
      return;
   if(isObject(CurServerMenu))
      deleteObject(CurServerMenu);
}

function remoteNewMenu(%server, %title)
{
   if(%server != 2048)
      return;

   if(isObject(CurServerMenu))
      deleteObject(CurServerMenu);

   newObject(CurServerMenu, ChatMenu, %title);
   setCMMode(PlayChatMenu, 0);
   setCMMode(CurServerMenu, 1);
}

function remoteAddMenuItem(%server, %title, %code)
{
   if(%server != 2048)
      return;
   addCMCommand(CurServerMenu, %title, clientMenuSelect, %code);
}

function clientMenuSelect(%code)
{
   deleteObject(CurServerMenu);
   remoteEval(2048, menuSelect, %code);
}

function remoteMenuSelect(%clientId, %code)
{
   %mm = %clientId.menuMode;
   if(%mm == "")
      return;
   if(String::findSubStr(%code, "\"") != -1 ||
      String::findSubStr(%code, "\\") != -1)  // no quotes or escapes
      return;

   %evalString = "processMenu" @ %mm @ "(" @ %clientId @ ", \"" @ %code @ "\");";
   %clientId.menuMode = "";
   %clientId.menuLock = "";
   dbecho(2, "MENU: " @ %clientId @ "- " @ %evalString);
   eval(%evalString);
   if(%clientId.menuMode == "")
   {
      Client::setMenuScoreVis(%clientId, false);
      %clientId.selClient = "";
   }
}


 Top Offline
Profile
Author
Message
TE-Braveskin

Joined: Thu Aug 11, 2005 3:28 am
Posts: 1176
Post Posted: Fri Dec 16, 2005 8:49 pm    Post subject:
Reply with quote
 
Code:
//----------------------------------------------------------------------------
// MINE DYNAMIC DATA

MineData AntipersonelMine
{
   className = "Mine";
   description = "Antipersonel Mine";
   shapeFile = "mine";
   validateShape = false;
   validateMaterials = true;
   shadowDetailMask = 4;
   explosionId = mineExp;
   explosionRadius = 10.0;
   damageValue = 0.65;
   damageType = $MineDamageType;
   kickBackStrength = 150;
   triggerRadius = 2.5;
   maxDamage = 0.5;
   shadowDetailMask = 0;
   destroyDamage = 1.0;
   damageLevel = {1.0, 1.0};
};

function AntipersonelMine::onAdd(%this)
{
   %this.damage = 0;
   AntipersonelMine::deployCheck(%this);
}

function AntipersonelMine::onCollision(%this,%object)
{
   %type = getObjectType(%object);
   %data = GameBase::getDataName(%this);
   if ((%type == "Player" || %data == AntipersonelMine || %data == Vehicle || %type == "Moveable") &&
         GameBase::isActive(%this))
      GameBase::setDamageLevel(%this, %data.maxDamage);
}

function AntipersonelMine::deployCheck(%this)
{
   if (GameBase::isAtRest(%this)) {
      GameBase::playSequence(%this,1,"deploy");
       GameBase::setActive(%this,true);
      %set = newObject("set",SimSet);
      if(1 != containerBoxFillSet(%set,$MineObjectType,GameBase::getPosition(%this),1,1,1,0)) {
         %data = GameBase::getDataName(%this);
         GameBase::setDamageLevel(%this, %data.maxDamage);
      }
      deleteObject(%set);
   }
   else
      schedule("AntipersonelMine::deployCheck(" @ %this @ ");", 3, %this);
}   

function AntipersonelMine::onDestroyed(%this)
{
   $TeamItemCount[GameBase::getTeam(%this) @ "mineammo"]--;
}

function AntipersonelMine::onDamage(%this,%type,%value,%pos,%vec,%mom,%object)
{
   if (%type == $MineDamageType)
      %value = %value * 0.25;

   %data = GameBase::getDataName(%this);
   if((%data.maxDamage/1.5) < %this.damage+%value)
      GameBase::setDamageLevel(%this, %data.maxDamage);
   else
      %this.damage += %value;
}

//----------------------------------------------------------------------------

MineData Handgrenade
{
   mass = 0.3;
   drag = 1.0;
   density = 2.0;
   elasticity = 0.15;
   friction = 1.0;
   className = "Handgrenade";
   description = "Handgrenade";
   shapeFile = "grenade";
   shadowDetailMask = 4;
   explosionId = grenadeExp;
   explosionRadius = 10.0;
   damageValue = 0.5;
   damageType = $ShrapnelDamageType;
   kickBackStrength = 100;
   triggerRadius = 0.5;
   maxDamage = 2;
};

function Handgrenade::onAdd(%this)
{
   %data = GameBase::getDataName(%this);
   schedule("Mine::Detonate(" @ %this @ ");",2.0,%this);
}

function Mine::onDamage(%this,%type,%value,%pos,%vec,%mom,%object)
{
   if (%type == $MineDamageType)
      %value = %value * 0.25;

   %damageLevel = GameBase::getDamageLevel(%this);
   GameBase::setDamageLevel(%this,%damageLevel + %value);
}

function Mine::Detonate(%this)
{
   %data = GameBase::getDataName(%this);
   GameBase::setDamageLevel(%this, %data.maxDamage);
}


 Top Offline
Profile
Author
Message
TE-Braveskin

Joined: Thu Aug 11, 2005 3:28 am
Posts: 1176
Post Posted: Fri Dec 16, 2005 8:49 pm    Post subject:
Reply with quote
 
take THAT!!! We are gonna beat WAR so bad.

 Top Offline
Profile
Author
Message
TE-Hybrd$n!pr


User avatar
Joined: Mon Oct 17, 2005 3:58 pm
Posts: 1498
Location: Cleveland Ohio
Post Posted: Fri Dec 16, 2005 8:53 pm    Post subject:
Reply with quote
 
lol yes lets just all copie our moddin files and we will add like 50 more pages


Image
Image
XBOX LIVE : h4ck3d data***GO BROWNS!***
 Top Offline
Profile
Author
Message
TE-Hammy


User avatar
Joined: Thu Jul 14, 2005 5:43 pm
Posts: 3204
Post Posted: Fri Dec 16, 2005 10:04 pm    Post subject:
Reply with quote
 
i dont have any files like that ( ._.) and war is trin to beat orb and they have like... a 200 page one i tink (from wat my crappy memory remembers)


This is not the sandwich you are looking for. Move along.
Image
Ze Sechs-fire wrote:
[22:00] [df]Braveskin: Can AfroMuffin spend the night at my house?
[22:00] [df]Braveskin: I have movize
[22:00] Hammy: No. You'll touch him.
[22:00] Hammy: With gusto.
[22:00] Hammy: He's not even a day old, pedophile.
[22:00] Hammy: >:l
[22:00] [df]Braveskin: plez!!
 Top Offline
Profile
Author
Message
TE-Hybrd$n!pr


User avatar
Joined: Mon Oct 17, 2005 3:58 pm
Posts: 1498
Location: Cleveland Ohio
Post Posted: Fri Dec 16, 2005 11:08 pm    Post subject:
Reply with quote
 
lol


Image
Image
XBOX LIVE : h4ck3d data***GO BROWNS!***
 Top Offline
Profile
Author
Message
TE-Starseeker

Joined: Tue Oct 25, 2005 2:25 am
Posts: 297
Location: Finland
Post Posted: Sat Dec 17, 2005 2:21 am    Post subject:
Reply with quote
 
BLINK! I know why you have a crappy memory. Wait a moment, I'll just find the file first...

Yees, I found it. Then Copy paste.... Like this!

*-*BLINK! See, theres a hole.*-* #

And then we just add a number on the # place...

*-*BLINK! See, theres a hole.*-* 3371

And then we add the player on the start!

=*TE*=StarSeeker: *-*BLINK! See, theres a hole.*-* 3371

And thats it! Theres the reason for your memory being so crappy nowadays.

And NOW I am going to give you some more "Spam the 1337 spammers spams spam." :twisted:

(Here goes another 3 mins...)

Once I saw a spam topic with lots of spam spam in it. I didn't like spam or people spamming my spam or me spamming other spammers spam becouse I hate spam spammers. But anyways I went to read some 1337 spammers spam other spammers spam. The spam after spam looked kinda spammy and I liked the spam like becouse those posts were so n00bspammers spam. So I decided to spam some spam and then spam some more spam of my spam. I spammed "Spamspamspamspam" and the n00bspammers read the spam and spammed back "spam" and I replied "SPAMSPAMSPAM". And they were like "W0W. We have a spam spammer here omg spam. And then they like spamblocked me out of the spamtopic of spamness. So that might be why I hate to spam others spam's spam so much. So you all reading this spampost of my spam, learn to spam others spam real spammylike. There's nothing that can beat someone spamming other spam in a spamtopic full of spampeople spamming others spam and then spamming some more of their own spam.

0 \/\/ |\| 3 |) ! I'll be here to spam your spam's spam.

64 If I counted right.

USELESS.

To make this post useful, I will add something clever to the end.

Hmmhmm...

I have a computer.



Image
 Top Offline
Profile
Author
Message
TE-Starseeker

Joined: Tue Oct 25, 2005 2:25 am
Posts: 297
Location: Finland
Post Posted: Sat Dec 17, 2005 2:26 am    Post subject:
Reply with quote
 
And yes, I wouldn't be a good spammer if I wouldn't spam my spamposts.

BLINK! I know why you have a crappy memory. Wait a moment, I'll just find the file first...

Yees, I found it. Then Copy paste.... Like this!

*-*BLINK! See, theres a hole.*-* #

And then we just add a number on the # place...

*-*BLINK! See, theres a hole.*-* 3371

And then we add the player on the start!

=*TE*=StarSeeker: *-*BLINK! See, theres a hole.*-* 3371

And thats it! Theres the reason for your memory being so crappy nowadays. :twisted:

And NOW I am going to give you some more "Spam the 1337 spammers spams spam."

(Here goes another 3 mins...)

Once I saw a spam topic with lots of spam spam in it. I didn't like spam or people spamming my spam or me spamming other spammers spam becouse I hate spam spammers. But anyways I went to read some 1337 spammers spam other spammers spam. The spam after spam looked kinda spammy and I liked the spam like becouse those posts were so n00bspammers spam. So I decided to spam some spam and then spam some more spam of my spam. I spammed "Spamspamspamspam" and the n00bspammers read the spam and spammed back "spam" and I replied "SPAMSPAMSPAM". And they were like "W0W. We have a spam spammer here omg spam. And then they like spamblocked me out of the spamtopic of spamness. So that might be why I hate to spam others spam's spam so much. So you all reading this spampost of my spam, learn to spam others spam real spammylike. There's nothing that can beat someone spamming other spam in a spamtopic full of spampeople spamming others spam and then spamming some more of their own spam.

0 \/\/ |\| 3 |) ! I'll be here to spam your spam's spam.

64 If I counted right.

USELESS.

To make this post useful, I will add something clever to the end.

Hmmhmm...

I have a computer.



Image
 Top Offline
Profile
Display posts from previous:  Sort by  
Post new topic Reply to topic Board index » General Area » General Discussion
Previous topic :: Next topic  
Go to page Previous  1 ... 17, 18, 19, 20, 21, 22, 23 ... 36  Next
Page 20 of 36
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
Jump to:  
cron
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group