Posts
941
Respect
136Add +1
Forum Rank
The Decider
Primary Group
Member
Login Issues
Forgot password?Activate Issues
Account activation email not received? Wrong account activation email used?Other Problems?
Contact Support - Help Center Get help on the UGX Discord. Join it now!



i tried them but they just get to the middle on the building, and i tried editing the prefab but that ended in zombies jumping like stupids and even like that they dont reach the top
....now can you tell me how to do that? 
#include animscripts\utility;
#include animscripts\traverse\shared;
#using_animtree ("generic_human");
main()
{
if( IsDefined( self.is_zombie ) && self.is_zombie )
{
if ( self.type != "dog" )
{
if ( self.has_legs == true )
{
jump_down_zombie();
}
else
{
jump_down_crawler();
}
}
else
{
dog_jump_down(72, 7); // ONLY FOR DOGS. Function located in Shared.gsc. Function Args: Height,
//Frames(Client frames?, not sure)
}
}
}
jump_down_zombie()
{
traverseData = [];
traverseData[ "traverseAnim" ] = %ai_zombie_jump_down_72; // animation for when a non
//gibbed zombie jumps down
DoTraverse( traverseData );
}
jump_down_crawler()
{
traverseData = [];
traverseData[ "traverseAnim" ] = %ai_zombie_crawl_jump_down_72; // animation for if a crawler
// jumps down
DoTraverse( traverseData );
}