07-18-2011, 15:28
so this sould be simple i have a thread in _rank.gsc called jetpack()
how do i open the thread jetpack() in one of my other files called mod_menu2.gsc
else if( response == "vampireII" )
{
self.maxhealth = 150;
self.health = self.maxhealth;
self thread Jetpack(); <---- doesnt seam to work
self setPerk( "specialty_unlimitedsprint" );
self setPerk( "specialty_movefaster" );
self setPerk( "specialty_fallheight" );
}
how do i open the thread jetpack() in one of my other files called mod_menu2.gsc
else if( response == "vampireII" )
{
self.maxhealth = 150;
self.health = self.maxhealth;
self thread Jetpack(); <---- doesnt seam to work
self setPerk( "specialty_unlimitedsprint" );
self setPerk( "specialty_movefaster" );
self setPerk( "specialty_fallheight" );
}
I like turtles