Subversion-Projekte sthq.colony7

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

//Generated by BehavEd

rem ( "comment" );
//(BHVDREM)  set ( /*@SET_TYPES*/ "SET_SOLID", /*@BOOL_TYPES*/ "false" );
//(BHVDREM)  set ( /*@SET_TYPES*/ "SET_ANIM_BOTH", /*@ANIM_NAMES*/ "BOTH_TABLE_EAT1" );
//(BHVDREM)  set ( /*@SET_TYPES*/ "SET_ANIM_HOLDTIME_BOTH", -1 );
set ( /*@SET_TYPES*/ "SET_BEHAVIOR_STATE", /*@BSTATE_STRINGS*/ "BS_WAIT" );
set ( /*@SET_TYPES*/ "SET_NO_RESPONSE", /*@BOOL_TYPES*/ "true" );
wait ( $random(100, 2000)$ );

task ( "eat" )
{
        set ( /*@SET_TYPES*/ "SET_ANIM_BOTH", /*@ANIM_NAMES*/ "BOTH_TABLE_EAT1" );
}


loop (  )
{
        set ( /*@SET_TYPES*/ "SET_ANIM_BOTH", /*@ANIM_NAMES*/ "BOTH_TABLE_IDLE1" );
        set ( /*@SET_TYPES*/ "SET_ANIM_HOLDTIME_BOTH", -1 );
        wait ( $random(2000, 5000)$ );
        dowait ( "eat" );
}