UGX-Mods

Call of Duty 5: World at War => Help Desk => Scripting => Topic started by: Rattus on July 11, 2018, 06:58:31 pm

Title: Script to allow crawling when downed like in black ops?
Post by: Rattus on July 11, 2018, 06:58:31 pm
Any scripters here who know how to make this possible?
Title: Re: Script to allow crawling when downed like in black ops?
Post by: AllMoDs on July 28, 2018, 03:05:19 pm
in zombiemode.gsc take out the
Code Snippet
Plaintext
self FreezeControls( true );
or make it false

Code Snippet
Plaintext
player_fake_death()
{
level notify ("fake_death");
self notify ("fake_death");

//self TakeAllWeapons();
self AllowStand( false );
self AllowCrouch( false );
self AllowProne( true );

self.ignoreme = true;
self EnableInvulnerability();

wait( 1 );
self FreezeControls( true );
}


might be one in _laststand.gsc
where it gives you the revive trigger I made changes to mine so I'm not too sure about that
taking the freeze control out of everywhere that refers to you being down will make it so you can move
when you are down

Title: Re: Script to allow crawling when downed like in black ops?
Post by: Harry Bo21 on July 29, 2018, 12:03:24 am
a lot more to it than that  if you want the 3p anims to work
Title: Re: Script to allow crawling when downed like in black ops?
Post by: Rattus on August 01, 2018, 07:12:51 am
in zombiemode.gsc take out the
Code Snippet
Plaintext
self FreezeControls( true );
or make it false

Code Snippet
Plaintext
player_fake_death()
{
level notify ("fake_death");
self notify ("fake_death");

//self TakeAllWeapons();
self AllowStand( false );
self AllowCrouch( false );
self AllowProne( true );

self.ignoreme = true;
self EnableInvulnerability();

wait( 1 );
self FreezeControls( true );
}


might be one in _laststand.gsc
where it gives you the revive trigger I made changes to mine so I'm not too sure about that
taking the freeze control out of everywhere that refers to you being down will make it so you can move
when you are down

So I tried making that part false and it didn't work, then I tried deleting that line with self freezecontrol and I still couldn't move. So there really must be more to it...  :-\