Advanced Search

Author Topic: Disable fuzzy effect? [Solved... Kinda]  (Read 1463 times)

0 Members and 1 Guest are viewing this topic.

May 30, 2012, 04:17:19 PM
Read 1463 times

Offline Laggy Blazko

  • MM8BDM Extender

  • Unf
  • **
  • Date Registered: April 01, 2011, 02:08:23 AM

    • View Profile
Disable fuzzy effect? [Solved... Kinda]
« on: May 30, 2012, 04:17:19 PM »
Is there a way to make a speed power up not make the player fuzzy, or at least a way to disable that after you use it?

May 30, 2012, 04:48:02 PM
Reply #1

Offline Russel

  • MM8BDM Extender

  • Doc Croc
  • ***********
  • Date Registered: December 17, 2010, 11:11:25 PM

    • View Profile
Re: Disable fuzzy effect?
« Reply #1 on: May 30, 2012, 04:48:02 PM »
The trail? Um...That's native...there might be an option for it, but as far as I know it cannot be disabled.

May 30, 2012, 09:15:13 PM
Reply #2

Offline BiscuitSlash

  • MM8BDM Extender
  • *
  • Date Registered: November 20, 2010, 12:49:25 PM

    • View Profile
Re: Disable fuzzy effect?
« Reply #2 on: May 30, 2012, 09:15:13 PM »
Use this

Code: [Select]
script 732 (int speed) //change 732 to something else
{
if(speed==1){
SetActorProperty(0,APROP_SPEED,0.64); //replace 0.64 with your new speed
}
if(speed==0){
SetActorProperty(0,APROP_SPEED,1.0);
}
}

And in the weapon:

Code: [Select]
XXXX A 0 ACS_ExecuteAlways(732,0,1) //replace 732 with above number(###,0,1) for on
(###,0,0) for off

May 30, 2012, 11:14:54 PM
Reply #3

Offline Laggy Blazko

  • MM8BDM Extender

  • Unf
  • **
  • Date Registered: April 01, 2011, 02:08:23 AM

    • View Profile
Re: Disable fuzzy effect? [Solved... Kinda]
« Reply #3 on: May 30, 2012, 11:14:54 PM »
Yeah, I guess I'll use that.
Except I'll use it this way

Code: [Select]
Script 140 (int s)
{
SetActorProperty (0,APROP_Speed,s);
}

And in the weapon:
Code: [Select]
BW00 A 0 ACS_ExecuteAlways(140,0,65536/2)//Half speed
Thanks for your help!

EDIT: How did you know I was going to use it on a weapon?

May 31, 2012, 09:30:35 AM
Reply #4

Offline BiscuitSlash

  • MM8BDM Extender
  • *
  • Date Registered: November 20, 2010, 12:49:25 PM

    • View Profile
Re: Disable fuzzy effect? [Solved... Kinda]
« Reply #4 on: May 31, 2012, 09:30:35 AM »
Quote from: "Laggy Blazko"
EDIT: How did you know I was going to use it on a weapon?
I just assumed. I knew it would have to be done this way cause it's how scorch wheel and Trollman's CSCC class does it.