Subversion-Projekte sthq.argas

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
46 lars 1
//Generated by BehavEd
2
 
3
rem ( "Trooper with Pistol idle spawn 2" );
4
 
5
set ( /*@SET_TYPES*/ "SET_WEAPON", /*@WEAPON_NAMES*/ "WP_PALADIN" );
6
set ( /*@SET_TYPES*/ "SET_PLAYER_TEAM", /*@TEAM_NAMES*/ "TEAM_IMPERIAL" );
7
set ( /*@SET_TYPES*/ "SET_ENEMY_TEAM", /*@TEAM_NAMES*/ "TEAM_STARFLEET" );
8
set ( /*@SET_TYPES*/ "SET_BEHAVIOR_STATE", /*@BSTATE_STRINGS*/ "BS_DEFAULT" );
9
//
10
 
11
task ( "stand2" )
12
{
13
	set ( /*@SET_TYPES*/ "SET_ANIM_BOTH", /*@ANIM_NAMES*/ "BOTH_STAND2" );
14
	set ( /*@SET_TYPES*/ "SET_ANIM_HOLDTIME_BOTH", 8000 );
15
}
16
 
17
loop ( -1 )
18
{
19
	dowait ( "stand2" );
20
	set ( /*@SET_TYPES*/ "SET_ANIM_HOLDTIME_BOTH", 0 );
21
	wait ( $random( 8000, 16000 )$ );
22
}
23