Home   Help Search Login Register  

Author Topic: AI?  (Read 1302 times)

0 Members and 1 Guest are viewing this topic.

MGeo

  • Guest
AI?
« on: 11 Mar 2004, 13:37:34 »
Is it possible to set names for the AI in multiplayer?
You know when you kill an AI in a deathmacvh instead nothing to write it will write
You killed *AINAME*
or
You was killed by *AINAME*

I don't really rememebr how it was writing but i remember it was something like that.

Is it possible to do this?

And also to make the AI to chat.

For example if he is kileld he will say something like
*Go to hell*
or
*Argh next time you will regret it.*
Or also if you kill someone to say like:
*Runned by the train.*
or
*Better get some practice n00b.*

Is it possible to do this?

Offline Terox

  • Former Staff
  • ****
  • Follow the Sappers!
    • zeus-community.net
Re:AI?
« Reply #1 on: 14 Mar 2004, 10:03:42 »
there's a setidentity command in the comref

units init field entry would be

Unitname setidentity "Cpl_Blimp"
or failing that it could be
Unitname setidentity "Cpl Blimp"

and the code that needs entering in the Description.EXT would be
Code: [Select]
class CfgIdentities
   {

   class Cpl_Blimp
      {
      name = "Cpl Blimp";
      face = "Custom";
      glasses = "sunglasses";
      speaker = "Adam";
      pitch = 1.00;
      };
   };


Thats how the syntax would work for the setidentity command, however i have never tried it
« Last Edit: 14 Mar 2004, 10:05:13 by Terox »
Zeus ARMA2 server IP = 77.74.193.124 :2302
Teamspeak IP = 77.74.193.123

Tactician

  • Guest
Re:AI?
« Reply #2 on: 14 Mar 2004, 10:11:12 »
A BIS deathmatch that came with Resistance, Flagfight Handguns on Nogova, uses identities like that.  DePBO and have a look.

MGeo

  • Guest
Re:AI?
« Reply #3 on: 14 Mar 2004, 11:15:59 »
Thnx maybe i will use that.