Page 8 of 14

Re: Standard weapon balance

Posted: Thu 21 Jun , 2012 4:51 pm
by iRobot
Perhaps the nerf is too strong, but you could leave it for a while to send the message out Deusing is not the only way of attacking.

Re: Standard weapon balance

Posted: Tue 10 Jul , 2012 4:33 pm
by Azarael
Empowered the SPMA.

- Receives less knockback.

- Pitches 2000 UU (~12°) lower with main gun.

- Primary projectile has a longer lifespan.

- Has proper roadkill messages.

- Turns less aggressively.

- Camera has 300 hp.

Re: Standard weapon balance

Posted: Tue 10 Jul , 2012 4:36 pm
by blOb
Nice to see the SPMA get some attention 8-)

Re: Standard weapon balance

Posted: Tue 10 Jul , 2012 4:47 pm
by Socio
Azarael wrote:- Camera has 300 hp.
I dont think this is a good idea. True, this fix will help in combat with SPMA, but if the camera is glitched then shooting it down will quite impossible.

Re: Standard weapon balance

Posted: Tue 10 Jul , 2012 5:09 pm
by iZumo
When dealing with trial vehicles, I think I figured out why the SPMA camera is glitched. On the clients, when the actor is behind cull distance for a while, it gets destroyed, and then spawned again when it's back in range (hence you can see building effect on vehicles when you spectate another player who is in the other corner of the map.

ONSMortarCamera uses PostNetReceive to receive deployed information, which in this case never occurs, because initial value is already set to true and so it has to be caught in PostNetBeginPlay. I'd try adding this:

Code: Select all

simulated function PostNetBeginPlay()
{
    Super.PostNetBeginPlay();
   
    if (Level.NetMode == NM_Client)
    {
        bLastDeployed = bDeployed;
        bLastShotDown = bShotDown;
        LastRealLocation = RealLocation;

        if (bShotDown)
             ShotDown();
        else if (bDeployed)
             GotoState('Deployed');
    }
}
Anyway, hmm, I wonder about the Camera HP too, it's 5 LG shots now.

Re: Standard weapon balance

Posted: Tue 10 Jul , 2012 6:13 pm
by iRobot
Massive gamebreaking bug with the Shock Rifle at the moment.

Seems the stombo/non stombo thing prevents any players getting the Combo Whore achievement, ever.

Just had a fine game of Ballx with 60 SR kills, and did not recieve it.

=SS

Re: Standard weapon balance

Posted: Tue 10 Jul , 2012 6:59 pm
by Azarael
I expected better of you guys. It isn't 1on1 SPMA vs Infantry, it's 1vTeam SPMA vs Infantry.

Added the code.

Re: Standard weapon balance

Posted: Tue 10 Jul , 2012 7:08 pm
by iRobot
Now you'll actually be able to support your team in the SPMA instead of repeatedly firing the camera and it getting shot down by any derper with a shock rifle/lightning gun, thus taking up a teamslot.

Re: Standard weapon balance

Posted: Thu 26 Jul , 2012 10:07 pm
by Socio
The code doesnt work it seems.
Just played a game of Gasoline and got annoyed as crap by this. Cam got glitched in the floor, the constant repeat of the ground impact explosion made my fps drop dramaticaly and it happened on the last part where SPMA is nestled in a safe position and killing it is very hard. Because of that I would vote for lowering the health to 150 or 100, because when the cam gets glitched the only thing you can do is find and kill the SPMA.

Re: Standard weapon balance

Posted: Thu 26 Jul , 2012 11:22 pm
by Azarael
You sure that wasn't being done deliberately? I recall it was verified as working.