Thread: HELP
View Single Post
Old 09-08-2003, 11:49 AM   #4 (permalink)
Panzerfather
Senior Member
 
Join Date: Jun 2003
Location: Germany
Posts: 373
Default

That will not work ! The Error:

1. You deleted the WeaponSet and left the "END" tag !
Code:
  ; ***DESIGN parameters *** 
  DisplayName           = OBJECT:Humvee2 
  Side                  = America 
  EditorSorting         = VEHICLE 
  TransportSlotCount    = 3                 ;how many "slots" we take in a transport (0 == not transportable) 
End
To:

Code:
  ; ***DESIGN parameters *** 
  DisplayName           = OBJECT:Humvee2 
  Side                  = America 
  EditorSorting         = VEHICLE 
  TransportSlotCount    = 3                 ;how many "slots" we take in a transport (0 == not transportable) 
Weaponset
End
2. Do the AIUpdateInterface after the ActiveBody !

Code:
Behavior = AIUpdateInterface ModuleTag_20 
    AutoAcquireEnemiesWhenIdle = Yes 
    MoodAttackCheckRate        = 250 
  End
That should work !
Panzerfather is offline   Reply With Quote