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 ( "Klingon with Pistol idle spawn 2" );
4
run ( "m1/klnwpnone" );
5
set ( /*@SET_TYPES*/ "SET_PLAYER_TEAM", /*@TEAM_NAMES*/ "TEAM_KLINGON" );
6
set ( /*@SET_TYPES*/ "SET_ENEMY_TEAM", /*@TEAM_NAMES*/ "TEAM_STARFLEET" );
7
set ( /*@SET_TYPES*/ "SET_BEHAVIOR_STATE", /*@BSTATE_STRINGS*/ "BS_DEFAULT" );
8
 
9
task ( "stand2" )
10
{
11
	set ( /*@SET_TYPES*/ "SET_ANIM_BOTH", /*@ANIM_NAMES*/ "BOTH_STAND2" );
12
	set ( /*@SET_TYPES*/ "SET_ANIM_HOLDTIME_BOTH", 8000 );
13
}
14
 
15
 
16
loop ( -1 )
17
{
18
	dowait ( "stand2" );
19
	set ( /*@SET_TYPES*/ "SET_ANIM_HOLDTIME_BOTH", 0 );
20
	wait ( $random( 8000, 16000 )$ );
21
}
22