Stu?

User avatar
{SW}SkyWalker
Posts: 664
Joined: Wed Feb 05, 2014 2:46 pm

Stu?

Post by {SW}SkyWalker »

Stu? Is there a way I can have a saying like yours? Like how do I program one?
No matter how long I stay away from this game I will never forget the stuff this game and community forged onto my heart!
User avatar
'][']-[RiLL3R
Posts: 391
Joined: Sun Jan 22, 2012 12:18 am

Re: Stu?

Post by '][']-[RiLL3R »

It's a kill pack.,.,.,.,.,.,.,.,.,.,.,
"Find a Job You Love and You'll Never Work a Day in Your Life"
Image
User avatar
{SW}SkyWalker
Posts: 664
Joined: Wed Feb 05, 2014 2:46 pm

Re: Stu?

Post by {SW}SkyWalker »

How do I get a kill pack?
No matter how long I stay away from this game I will never forget the stuff this game and community forged onto my heart!
User avatar
'][']-[RiLL3R
Posts: 391
Joined: Sun Jan 22, 2012 12:18 am

Re: Stu?

Post by '][']-[RiLL3R »

Not exactly sure.
"Find a Job You Love and You'll Never Work a Day in Your Life"
Image
User avatar
DaJ4ck3L
Crow{OZ}
Posts: 3375
Joined: Thu Jul 22, 2010 11:51 pm
Contact:

Re: Stu?

Post by DaJ4ck3L »

There are no kill packs for 1.40, and none that are 100% accurate for 1.11.

Would be easy to code after adding Legendz Stat hud though.
Image
User avatar
{SW}SkyWalker
Posts: 664
Joined: Wed Feb 05, 2014 2:46 pm

Re: Stu?

Post by {SW}SkyWalker »

DaJ4ck3L wrote:There are no kill packs for 1.40, and none that are 100% accurate for 1.11.

Would be easy to code after adding Legendz Stat hud though.
I have a 1.11 can you tell me how?
No matter how long I stay away from this game I will never forget the stuff this game and community forged onto my heart!
perrinoia
Site Admin
Posts: 3732
Joined: Sun Jul 01, 2012 7:18 pm

Re: Stu?

Post by perrinoia »

Hmm... I wonder if S']['U is still using the kill pack I wrote for him...

It was super simple.
Image
User avatar
virus
Posts: 474
Joined: Wed May 22, 2013 10:27 pm
Contact:

Re: Stu?

Post by virus »

Annihilation.info/downloads

Look for kpack
[NHOP]Virus
User avatar
S']['U
Posts: 1071
Joined: Fri Dec 09, 2011 8:03 am

Re: Stu?

Post by S']['U »

Actually, I use a script called "random taunt" which I've modified to use different text and voices than the original.

For a while I had it coded to automatically activate anytime I made an APC kill, (thanks to Black Sheep)
but it stopped working when I joined +]-[+ and added the tag to my name.
I could fix it, but S_hift was whining about the kill counter in it, so now I have just left it back on manual activation.

The script perrin made for me points me to anyone calling for an APC pickup on my radar HUD, and yes, I still have it.

If anyone is interested in the random taunt script, here it is.
It can be pasted directly into your autoexec.cs file as is.
Please change the taunts and sounds to your own preferences.
I have it set to activate with my space bar, but the keybind can be set to anything else.

Code: Select all

EditActionMap("playMap.sae");

$Taunt[0] = "DAMMIT!  ...I just washed this thing~wcolor6";
$Taunt[1] = "That just never stops being funny~wcheer2";
$Taunt[2] = "...and that's why they call me THE DEATH PILOT~wtakcovr";
$Taunt[3] = "I think I found your liver~wovrhere";
$Taunt[4] = "...another victim of THE DEATH PILOT~wtaunt10";
$Taunt[5] = "Thanks for flying S']['U A][R!~wcheer3";
$Taunt[6] = "SORRY  ...You were standing right where I needed to fly~wsorry";

function RandomTaunt()
{
	%rnd = floor(getRandom() * 1000);

	if(%rnd < 100)
	{
		if($LastTaunt == 0)
		{
			%taunt = $Taunt[1];
			$LastTaunt = 1;
		}
		else
		{
			$LastTaunt = 0;
			%taunt = $Taunt[0];
		}
	}
	else if(%rnd > 200 && %rnd < 350)
	{
		if($LastTaunt == 1)
		{
			%taunt = $Taunt[2];
			$LastTaunt = 2;
		}
		else
		{
			$LastTaunt = 1;
			%taunt = $Taunt[1];
		}
	}
	else if(%rnd > 350 && %rnd < 500)
	{
		if($LastTaunt == 2)
		{
			%taunt = $Taunt[3];
			$LastTaunt = 3;
		}
		else
		{
			$LastTaunt = 2;
			%taunt = $Taunt[2];
		}
	}
	else if(%rnd > 500 && %rnd < 650)
	{
		if($LastTaunt == 3)
		{
			%taunt = $Taunt[4];
			$LastTaunt = 4;
		}
		else
		{
			$LastTaunt = 3;
			%taunt = $Taunt[3];
		}
	}
	else if(%rnd > 650 && %rnd < 800)
	{
		if($LastTaunt == 4)
		{
			%taunt = $Taunt[5];
			$LastTaunt = 5;
		}
		else
		{
			$LastTaunt = 4;
			%taunt = $Taunt[4];
		}
	}
	else if(%rnd > 800 && %rnd < 950)
	{
		if($LastTaunt == 5)
		{
			%taunt = $Taunt[6];
			$LastTaunt = 6;
		}
		else
		{
			$LastTaunt = 5;
			%taunt = $Taunt[5];
		}
	}
	else
	{
		if($LastTaunt == 6)
		{
			%taunt = $Taunt[0];
			$LastTaunt = 0;
		}
		else
		{
			$LastTaunt = 6;
			%taunt = $Taunt[6];
		}
	}

	say(0, %taunt);
}

bindCommand(keyboard0, make, "space", TO, "RandomTaunt();");
perrinoia
Site Admin
Posts: 3732
Joined: Sun Jul 01, 2012 7:18 pm

Re: Stu?

Post by perrinoia »

Space? What do you use to jump/ski?
Image
Post Reply