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.


Messages - Port

Pages: 1 ... 173 174 175 176 177 [178] 179 180 181 182 183 ... 1041
2656
Modification Help / Re: Adding Health and Velocity w/ code?
« on: September 16, 2013, 02:37:32 AM »
not a total idiot

It wasn't specifically directed at you.

2657
Suggestions & Requests / Re: Super Smash Brothers type damage system
« on: September 15, 2013, 03:56:00 PM »

Should probably also prevent death from non-fall/splat damage.

2658
Modification Help / Re: Adding Health and Velocity w/ code?
« on: September 15, 2013, 03:40:53 PM »
this is not a default function afaik, and is added by an addon

Yeah, it's an output event add-on on RTB named the same thing.

2659
is this a fair trade


2660
Off Topic / Re: FGS Streaming - Playing N64 [TECHNICAL PROBLEMS]
« on: September 15, 2013, 02:09:50 PM »
nal sounds like a girl

2661
Help / Re: what causes buffer overruns?
« on: September 15, 2013, 01:47:43 PM »
usually a hardware issue along the lines of bad RAM

then both RTB Hosting's node 4 and Bushido's computer have bad RAM, which doesn't seem very likely

2662
General Discussion / Re: RTB and Steam
« on: September 15, 2013, 01:20:59 PM »
I'm definitely going to use the Steam chat version, since there's no way I can get banned from it for no reason by somebody like Ephialtes.

You bring that up everywhere you can, huh?

2663
General Discussion / Re: Ads on the forum
« on: September 15, 2013, 01:09:16 PM »
It's a very complicated relationship

Maybe it's a love triangle? Ad Bot, Blockbot and RTB Mod Bot.

2664
Suggestions & Requests / Re: a client sided keybind for reloading
« on: September 15, 2013, 01:04:14 PM »
I just bound my light key to R and it works fine.

R is the default keybind for using your light anyway.

2665
Off Topic / Re: Does anyone have bad sibling problems?
« on: September 15, 2013, 01:03:38 PM »
I have sibling problems of not having any siblings

:panda:

2666
General Discussion / Re: Ads on the forum
« on: September 15, 2013, 01:02:02 PM »
Ad Bot and Blockbot are newly weds.

We must have a reception.

You mean RTB Mod Bot?

2667
Suggestions & Requests / Re: a client sided keybind for reloading
« on: September 15, 2013, 01:01:21 PM »
Most ammo systems only provide serverCmdLight as a reloading interface, so no.

I want to be able to see while reloading.

Then keep your light on?

2668
AoT General / Re: Time of Age?
« on: September 15, 2013, 12:53:52 PM »

2669
Forum Games / Re: What is the person above you avatar saying?
« on: September 15, 2013, 12:50:44 PM »
hello

2670
Suggestions & Requests / Re: Super Smash Brothers type damage system
« on: September 15, 2013, 12:21:14 PM »
$MaxSSBVelocityScale = 9;

package SSBDamagePackage {
   function ShapeBase::addVelocity(%this, %velocity) {
      if (%this.usesSSBDamage()) {
         %velocity = vectorScale(%velocity, %this.getSSBVelocityScale());
      }

      Parent::addVelocity(%this, %velocity);
   }

   function ShapeBase::applyImpulse(%this, %origin, %velocity) {
      if (%this.usesSSBDamage()) {
         %velocity = vectorScale(%velocity, %this.getSSBVelocityScale());
      }

      Parent::applyImpulse(%this, %origin, %velocity);
   }

   function ShapeBase::setDamageFlash(%this, %scalar) {
      if (!%this.usesSSBDamage()) {
         Parent::setDamageFlash(%this, %scalar);
      }
   }
};

activatePackage("SSBDamagePackage");

function ShapeBase::usesSSBDamage(%this) {
   return 1;
}

function ShapeBase::getSSBVelocityScale(%this) {
   return 1 + (%this.getDamageLevel() / %this.getDataBlock().maxDamage) * $MaxSSBVelocityScale;
}

Pages: 1 ... 173 174 175 176 177 [178] 179 180 181 182 183 ... 1041