Incomplete SP dump provided by Louvenarde

This commit is contained in:
reaaLx
2024-09-05 17:14:53 +10:00
parent 1ea2370337
commit e5de1d5d55
784 changed files with 340494 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
// Fence_climb.gsc
// Makes the character climb a 48 unit fence
// TEMP - copied wall dive until we get an animation
// Makes the character dive over a low wall
#include animscripts\traverse\shared;
main()
{
if ( self.type == "dog" )
dog_wall_and_window_hop( "wallhop", 40 );
else
wall_hop_human();
}
#using_animtree( "generic_human" );
wall_hop_human()
{
if ( randomint( 100 ) < 30 )
self advancedTraverse( %traverse_wallhop_3, 39.875 );
else
self advancedTraverse( %traverse_wallhop, 39.875 );
}