Chapter 6. List of all GameBots messages and commands

In this chapter all available GB messages and commands will be listed. Currently there are more than one GameBots packages. Some of the commands and messages are not implemented in all packages. The list of packages that support message or command is after message name. Default package for UnrealTournament 2004 is GameBots2004 and default package for UnrealEngine2 Runtime is GameBotsUE2.

Also note the "Connections" - "Bot" means the command or message is supported for bot connections, "Observer" for observer connections and "Server" for control server connection (or shortly control connection). "Observer" connection is not supported in GameBotsUE2 yet.

Message, commands and attribute names are case insensitive. However message and command names are written with upper case letters and attribute names should start with upper case letter.

Messages

AIN - AddInventoryMsg -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Observer,

Asynchronous message. Sent when we get new weapon or ammunition for weapon we do not have yet. Sent just once per weapon type or per new ammunition type (notify new object in our inventory, NOT pickup). The Id of the object (Inventory Id) here is different from the object that is lying on the ground and represents this item in the map (Pickup id). If you want to listen to every item pickup use ItemPickedUp message!

Id (UnrealId)

A unique Id for this inventory item, assigned by the game. Unique, but based on a string describing the item type.

Type (String)

A string representing type (inventory type) of the object.

PickupType (ItemType)

We get this item if we pick up this pickup class in the map.

Sniping (Boolean)

If the item is a weapon, contains information whether this weapon is good for sniping.

Melee (Boolean)

If the item is a weapon, contains information whether this weapon is a melee weapon.

PrimaryInitialAmmo (int)

If the item is a weapon, contains information how much primary ammo the weapon initial has.

MaxPrimaryAmmo (int)

If the item is a weapon, contains information how much primary ammo the weapon may have.

SecondaryInitialAmmo (int)

If the item is a weapon, contains information how much secondary ammo the weapon initial has.

MaxSecondaryAmmo (int)

If the item is a weapon, contains information how much secondary ammo the weapon may have.

ADG - AdrenalineGained -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Bot, Observer,

Asynchronous message. Whenever we get new adrenaline - by pickup or by killing someone.

Amount (int)

Amount of adrenaline gained.

ALIVE - AliveMessage -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Server,

Synchronous message. Alive message are for confirmation, that the connection is still working. They are sent periodically with usual period of one second (this can change depending on the configuration of ControlServer)

Time (double)

Game time when this message was send.

ATR - AutoTraceRay -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot,

Synchronous message. Contains the results of automatically casted rays. One ATR message is for one casted ray. New automatically casted rays can be defined by ADDRAY command and removed by REMOVERAY command.

Id (UnrealId)

An Id for this ray (should be unique), assigned by the user when adding ray.

From (Location)

Location from which the ray is emitted.

To (Location)

Location to which the ray is sent.

FastTrace (boolean)

True if it is a fast trace, false if not (fast trace is a bit faster version of UT2004 ray trace - but provides us with less information - just true/false if we hit something on the way or not).

FloorCorrection (boolean)

If we should correct ray directions accoring floor normal. Note: Has issue - we can't set set rays up or down when correction is active.

Result (boolean)

True if it hit something, false if not.

HitNormal (Vector3d)

Vector with normal of the plane we have hit (not sent if FastTrace is True).

HitLocation (Location)

Vector with location of the collision (not sent if FastTrace is True).

TraceActors (boolean)

If we traced also actors with this ray (actors – moving things in a game – bots, players, monsters, pickup …) (only if NOT using FastTrace)

HitId (UnrealId)

Id of the actor we have hit. (Sent if FastTrace is False and TraceActors is True).

BEG - BeginMessage -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server, Observer,

Synchronous message. Begin message signalizes start of synchronous batch. In the batch are send information about visible navpoints, game status, items and so on.

Time (double)

Timestamp form the GameBots.

BOM - BombInfo -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Bot, Observer,

Synchronous message. BombInfo contains all info about the bomb in the BotBombingRun game mode. Is not sent in other game types.

Id (UnrealId)

An unique Id for this bomb, assigned by the game.

Velocity (Velocity)

Current velocity of the bomb. TODO not sure if this actually does smthing

Location (Location)

An absolute location of the bomb (Sent if we can actually see the flag).

Holder (UnrealId)

Id of player/bot holding the bomb. (Sent if we can actually see the bomb and the bomb is being carried, or if the bomb is being carried by us).

HolderTeam (Integer)

The team of the current holder (if any).

Visible (boolean)

True if the bot can see the bomb.

State (String)

Represents the state the bomb is in. Can be "Held", "Dropped" or "Home".

DAM - BotDamaged -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Observer,

Asynchronous message. This bot has been damaged.

Damage (int)

Amount of damage taken.

DamageType (String)

A string describing what kind of damage.

WeaponName (String)

Name of the weapon that caused this damage. Not sent right now.

Flaming (boolean)

If this damage is causing our bot to burn. TODO

CausedByWorld (boolean)

If this damage was caused by world - falling into lava, or falling down.

DirectDamage (boolean)

If the damage is direct. TODO

BulletHit (boolean)

If this damage was caused by bullet.

VehicleHit (boolean)

If this damage was caused by vehicle running over us.

Instigator (UnrealId)

Id of the player who is damaging the bot, filled only if instigator is in the field of view of the bot.

DIE - BotKilled -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Observer,

Asynchronous message. This bot has died.

Killer (UnrealId)

Unique Id of player that killed our bot if any (may have walked off a ledge).

DamageType (String)

A string describing what kind of damage killed the bot.

DeathString (String)

String describing this type of death.

WeaponName (String)

Name of the weapon that caused this damage.

Flaming (boolean)

If this damage is causing our bot to burn. TODO

CausedByWorld (boolean)

If this damage was caused by world - falling into lava, or falling down.

DirectDamage (boolean)

If the damage is direct. TODO

BulletHit (boolean)

If this damage was caused by bullet.

VehicleHit (boolean)

If this damage was caused by vehicle running over us.

BMP - Bumped -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Observer,

Asynchronous message. Bot bumped into another actor.

Id (UnrealId)

Unique Id of the actor we have bumped to (actors include other players or bots and other physical objects that can block your path).

Location (Location)

Location of thing you've rammed into.

CWP - ChangedWeapon -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Bot, Observer,

Asynchronous message. Bot changed weapon. Possibly as a result of a command sent by you. Here we will get the new weapon - the weapon the bot has changed to.

Id (String)

Unique Id of new weapon, based on the inventory weapon's name (this is different from the Id of the weapon that can be picked up in the map).

PrimaryAmmo (int)

Holding current primary ammo of the new weapon.

SecondaryAmmo (int)

Holding current secondary ammo of the new weapon.

Type (String)

A string representing the type of the weapon.

COMBO - ComboStarted -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Observer,

Asynchronous message. The observed player used a combo.

Type (String)

Holds the class name of the desired adrenaline combo (can be xGame.ComboBerserk, xGame.ComboDefensive, xGame.ComboInvis or xGame.ComboSpeed).

CONFCH - ConfigChange -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server,

Asynchronous message. Message sent when the bot configuration changed - each agent has a lot of parameters affecting his state in the environment. See each property for the details.

Id (UnrealId)

Id of this config message. This Id is generated from BotId, string "_CONFCH" is added at the end.

BotId (UnrealId)

Unique Id of the bot.

ManualSpawn (boolean)

True if we have to spawn the bot manually after each death

AutoTrace (boolean)

True if the bot is using auto ray tracing (is provided with synchronous ATR messages). See ATR messages for more details.

Name (String)

The bot's name.

SpeedMultiplier (double)

Bots default speed will be multiplied by this number. Ranges from 0.1 to 2 (default, can be set in ini in [GameBots2004.RemoteBot] MaxSpeed).

RotationRate (Rotation)

Bot rotation rate. Default rotation rate is: (Pitch=3072,Yaw=60000,Roll=2048) and may be configured in ini file in [GameBots2004.RemoteBot] DefaultRotationRate. (pitch - up/down, yaw - left/right, roll - equivalent of doing a cartwheel)

Invulnerable (boolean)

If bot is invulnerable (cannot die) or not.

VisionTime (double)

The delay between two synchronous batches (can range from 0.1 to 2 seconds).

ShowDebug (boolean)

If some additional debug information will be shown in the UT2004 server console window.

ShowFocalPoint (boolean)

If true an actor visualizing the location the bot is actually looking at will appear in the game.

DrawTraceLines (boolean)

if the GB should draw lines representing the auto ray traces of the bot (for more information see ATR message).

SynchronousOff (boolean)

It informs if sending of all GB synchronous messages is enabled or disabled.

AutoPickupOff (boolean)

It enables/disables automatic pickup of the bot. If true the items can be picked up through PICK command.

Action (String)

Name of current BDI action.

END - EndMessage -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Observer,

Synchronous message. This message signalizes end of synchronous batch.

Time (double)

Time, when the message was sent - intern UT time.

ENTERED - EnteredVehicle -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Bot,

Asynchronous message. Sent as a response to ENTER command. Sent if the ENTER command was successfull. Means we are now driving the vehicle. Beware! When in vehicle just command RUNTO with Target specified works for move commands. Any other move commands will cause vehicle to got straight ahead. Also it is not possible to control speed or steering at this moment. Everything is done automaticaly by RUNTO with Target specified.

Id (UnrealId)

Id of the vehicle entered.

Type (String)

Type of the vehicle entered. What kind of turret or car.

Location (Location)

Location of the vehicle.

USED - FactoryUsed -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Bot, Observer,

Asynchronous message. Response to USE (FactoryUse) command.

Success (boolean)

If we have successfully used the factory.

Reason (String)

If success is false, the reason why we couldn't use a factory will be here.

FAL - FallEdge -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Observer,

Asynchronous message. This message represents case, where bot stands at the edge of cliff or somewhere the bot can fall. If the bot has ran, it is already falling. When the bot is walking he can't fall from the cliff, so after receiving this message, he is standing at the edge of the cliff.

Fell (boolean)

Flag for falling, if true, then the bot is already falling.

Location (Location)

Current location of the bot.

FTR - FastTraceResponse -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot,

Asynchronous message. Response of the FASTTRACE command. Note that trace commands are computationally expensive.

Id (String)

An Id matching the one sent by client. Allows bot to match answer with right query.

From (Location)

Location from which the ray is emitted.

To (Location)

Location to which the ray is sent.

Result (boolean)

True if it hit something, false if not.

FLG - FlagInfo -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Bot, Observer,

Synchronous message. FlagInfo contains all info about the flag in the CTF game mode. Is not sent in other game types.

Id (UnrealId)

An unique Id for this flag, assigned by the game.

Location (Location)

An absolute location of the flag (Sent if we can actually see the flag).

Holder (UnrealId)

Id of player/bot holding the flag. (Sent if we can actually see the flag and the flag is being carried, or if the flag is being carried by us).

Team (Integer)

The owner team of this flag.

Visible (boolean)

True if the bot can see the flag.

State (String)

Represents the state the flag is in. Can be "Held", "Dropped" or "Home" (note that the first letter does not have to be in upper case!).

NFO - GameInfo -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server, Observer,

Asynchronous message. Sent as response to READY command. Information about the game. What type of game is it going to be, number of teams, maximum size of teams etc.

Gametype (String)

What you are playing (BotDeathMatch, BotTeamGame, BotCTFGame,BotDoubleDomination).

Level (String)

Name of map in game.

WeaponStay (boolean)

If true respawned weapons will stay on the ground after picked up (but bot cannot pickup same weapon twice).

TimeLimit (double)

Maximum time game will last (if tied at end may goe to "sudden death overtime" - depends on the game type).

FragLimit (int)

Number of kills needed to win game (BotDeathMatch only).

GoalTeamScore (long)

Number of points a team needs to win the game (BotTeamGame, BotCTFGame, BotDoubleDomination).

MaxTeams (int)

Max number of teams. Valid team range will be 0 to (MaxTeams - 1) (BotTeamGame, BotCTFGame, BotDoubleDomination). Usually there will be two teams - 0 and 1.

MaxTeamSize (int)

Max number of players per side (BotTeamGame, BotCTFGame, BotDoubleDomination).

RedBaseLocation (Location)

Location of the base spawning the red flag (team 0) (BotCTFGame).

BlueBaseLocation (Location)

Location of the base spawning the blue flag (team 1) (BotCTFGame).

FirstDomPointLocation (Location)

Location of the first dom point (BotDoubleDomination).

SecondDomPointLocation (Location)

Location of the second dom point (BotDoubleDomination).

GamePaused (boolean)

If the game is paused - nobody can move.

BotsPaused (boolean)

If the game is paused just for bots - human controlled players can normally move.

FactoryLocation (Location)

Sent only in BotScenario game type. Location of the factory.

FactoryRadius (double)

Sent only in BotScenario game type. Radius of the factory.

DisperserLocation (Location)

Sent only in BotScenario game type. Location of the goal point where UDamagePack should be taken.

DisperserRadius (double)

Sent only in BotScenario game type. Radius of the disperser point.

FactoryAdrenalineCount (double)

Sent only in BotScenario game type. How much adrenaline we need to activate the factory.

FactorySpawnType (String)

Sent only in BotScenario game type. Pickup class our factory spawns when used properly. Item will be spawned at the bot's location.

PAUSED - GamePaused -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server,

Asynchronous message. Sent by the server when the game is paused - for bots or overall.

GAMERESTART - GameRestarted -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Bot, Server, Observer,

Asynchronous message. Sent when the game is being restarted by the control server. Two messages arrive. One notifying the restart has been started and second notifying the restart has ended.

Started (boolean)

Game restart sequence has been started.

Finished (boolean)

Game restart has been finished.

RESUMED - GameResumed -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server,

Asynchronous message. Sent by a server when a game is resumed after it was paused.

VMS - GlobalChat -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Observer,

tAsynchronous message. Recieved message from global chat channel

Id (UnrealId)

Unique UnrealId of the sender.

Name (String)

Human readable name of the sender.

Text (String)

A human readable message sent by another player in the game on the global channel.

EHS - HandShakeEnd -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server, Observer,

After receiving READY command, GameBots start to export information about the game. These information are enveloped by HandShakeStart and HandShakeEnd messages.

SHS - HandShakeStart -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server, Observer,

After receiving READY command, GameBots start to export information about the game. These information are enveloped by HandShakeStart and HandShakeEnd messages.

HRN - HearNoise -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Observer,

Synchronous message - sent in synchronous batch (events are cached and then exported in the batch due to performance issues). Maybe another player walking or shooting, maybe a bullet hitting the floor or just a nearby lift going up or down. If the very same sound is exported repeatedly (same sound, same source), it won't be exported more than once per second.

Source (UnrealId)

Unique ID of actor making the noise - may be other player or some other object in the game.

Type (String)

What class this actor is - item, projectile, player...

Rotation (Rotation)

How should bot rotate if it would like to be in the direction of the "noisy" actor.

Distance (double)

How far the noise source is.

HRP - HearPickup -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Observer,

Synchronous message - sent in synchronous batch (events are cached and then exported in the batch due to performance issues). You hear someone pick up an object from the ground. If the very same sound is exported repeatedly (same sound, same source), it won't be exported more than once per second.

Source (UnrealId)

Unique Id of an object picked up.

Type (String)

Class of the picked up actor.

Rotation (Rotation)

How should bot rotate if it would like to be in the direction of the pickuped actor

Distance (double)

How far the noise source is.

HELLO_BOT - HelloBotHandshake -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot,

Asynchronous message. Sent for bot connection. First message from UT2004, part of handshake.

ServerFull (boolean)

If it is true, connection will be terminated afterwards.

HELLO_CONTROL_SERVER - HelloControlServerHandshake -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Server,

Asynchronous message. A message sent at the beginning of establishing the control connection.

HELLO_OBSERVER - HelloObserverHandshake -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Observer,

Asynchronous message. A message sent at the beginning of establishing the connection.

PRJ - IncomingProjectile -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Bot, Observer,

Both asynchronous and synchronous message. Incoming projectile that we can see.

Id (UnrealId)

Unique Id of the projectile.

ImpactTime (double)

Estimated time till impact.

Direction (Vector3d)

Which direction projectile is heading to -> orientation vector.

Location (Location)

Current location of the projectile.

Velocity (Velocity)

Current velocity vector of the projectile.

Speed (double)

Current speed of the projectile.

Origin (Location)

Possition of the origin, when combined with direction can define the line of fire.

DamageRadius (double)

If the projectile has splash damage, how big it is – in ut units.

Type (String)

The class of the projectile (so you know what is flying against you).

Visible (boolean)

The class of the projectile (so you know what is flying against you).

INITED - InitedMessage -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot,

Asynchronous message. Sent after succesfull init command (so usually just once). Holds many attributes of the bots like speed, id starting and max health, etc. Some attributes are not used due to GameBots mechanics.

BotId (UnrealId)

A unique unreal Id of the new bot.

HealthStart (int)

Bot will always start with this health amount (usually 100).

HealthFull (int)

Full health of the bot (usually 100).

HealthMax (int)

Maximum health of the bot (default 199).

AdrenalineStart (double)

Amount of adrenaline at the start. Usually 0.

AdrenalineMax (double)

Maxium amount of the adrenaline. Usually 100 (this can trigger the combos).

ShieldStrengthStart (int)

Starting strength of the bot armor (usually 0).

ShieldStrengthMax (int)

Maximum strength of the bot armor (usually 150).

MaxMultiJump (int)

Maximum amount of succesing jumps. Currently limited to double jump in GB.

DamageScaling (double)

Damage scaling for this bot. (he will deal reduced damage depending on the setting).

GroundSpeed (double)

Groundspeed of the bot (on the ground). Default 440.

WaterSpeed (double)

Waterspeed of the bot (in the water).

AirSpeed (double)

AirSpeed of the bot (in the air).

LadderSpeed (double)

Ladderspeed of the bot (on the ladder).

AccelRate (double)

Accelartion rate of this bot. How fast he accelerates.

JumpZ (double)

Bot Jump's Z boost.

MultiJumpBoost (double)

Not used in GB.

MaxFallSpeed (double)

Max fall speed of the bot.

DodgeSpeedFactor (double)

Dodge speed factor.

DodgeSpeedZ (double)

Dodge jump Z boost of the bot.

AirControl (double)

How well can be the bot controlled in the air (ranges from 0 to 1).

INV - Item -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Observer,

Synchronous/asynchronous message. An object on the ground that can be picked up.

Id (UnrealId)

Unique Id of the item. This Id represents just item on the map, not in our inventory.

NavPointId (UnrealId)

Id of the navpoint where the item is laying. If null - the item was dropped by the bot or another player.

Visible (boolean)

If the item is in the field of view of the bot.

Location (Location)

Location of the item.

Amount (int)

If this item is some ammo or health pack, here we can find out how much of the attribute this item will add.

Type (ItemType)

Class of the item (e.g. xWeapons.FlakCannonPickup).

Dropped (boolean)

Whether it is regular item or one dropped by some bot (usually during dying). Items that are not dropped usually respawns itself (depends on the game settings) while those that are dropped may be taken only once.

ITC - ItemCategory -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Observer,

Synchronous/asynchronous message. Holds all attributes of item category. There are many item categories in UT2004. This class holds attributes for all of them. When some item category is exported just appropriate attributes are exported with it.

InventoryType (String)

By this class the item is represented in inventory. This is inventory type class.

PickupType (ItemType)

By this class the item is represented in the map. This is pickup type class.

ItemCategory (Category)

Category of the item. Can be "Weapon", "Adrenaline", "Ammo", "Armor", "Shield", "Health" or "Other".

Melee (boolean)

For Weapon. True if the weapon is melee weapon (close range).

Sniping (boolean)

For Weapon. True if the weapon is sniping weapon (long range).

UsesAltAmmo (boolean)

For Weapon. True if the weapon uses two separate ammos for primary and secondary firing mode.

PriFireModeType (String)

For Weapon, primary firing mode. Type of the firing mode. If none, the weapon does not have this fireing mode.

PriSplashDamage (boolean)

For Weapon, primary firing mode. If this mode does splash damage.

PriSplashJump (boolean)

For Weapon, primary firing mode. If the splash damage of this firing mode can be used for increasing jump height.

PriRecomSplashDamage (boolean)

For Weapon, primary firing mode. If the engine recommends to use this splash damage. TODO

PriTossed (boolean)

For Weapon, primary firing mode. If the this mode is tossing something (projectile) out.

PriLeadTarget (boolean)

For Weapon, primary firing mode. If this mode can lead the target. TODO

PriInstantHit (boolean)

For Weapon, primary firing mode. If this mode does instant hits - weapon hits instantly - no flying time for bullets.

PriFireOnRelease (boolean)

For Weapon, primary firing mode. If to fire this mode you need to press shooting button (start shooting) and then release it (stop shooting). Usually for charging weapons.

PriWaitForRelease (boolean)

For Weapon, primary firing mode. If to fire this mode you need to stop pressing shooting button between two shots to shoot. You will fire once when pressing the button, then you need to press it again to fire again.

PriModeExclusive (boolean)

For Weapon, primary firing mode. If this firing mode cannot be used at the same time with other firing mode of the weapon.

PriFireRate (double)

For Weapon, primary firing mode. Fire rate in seconds. How fast the weapon fires if we are firing continuosly.

PriBotRefireRate (double)

For Weapon, primary firing mode. Refire rate for bots in seconds. When we stop firing how long does it take to resume firing again.

PriAmmoPerFire (int)

For Weapon, primary firing mode. Needed amount of ammo to fire this weapon mode once.

PriAmmoClipSize (int)

For Weapon, primary firing mode. If the weapon mode has clips, their size. TODO

PriAimError (double)

For Weapon, primary firing mode. Aiming error of the weapon. 0 none, 1000 quite a bit.

PriSpread (double)

For Weapon, primary firing mode. Double, rotator units. No relation to aim error.

PriSpreadStyle (int)

For Weapon, primary firing mode. Type of spreading. TODO

PriFireCount (int)

For Weapon, primary firing mode. TODO

PriDamageAtten (double)

For Weapon, primary firing mode. Attenuate instant-hit/projectile damage by this multiplier.

PriAmmoType (String)

For Ammo or for Weapon, primary firing mode. Class of the ammo.

PriInitialAmount (int)

For Ammo or for Weapon, primary firing mode. Amount of ammo we get if we pick up the item (weapon or ammo) for the first time.

PriMaxAmount (int)

For Ammo or for Weapon, primary firing mode. Max amount of ammo of this type we can have in our inventory.

PriMaxRange (double)

For Ammo or for Weapon, primary firing mode. TODO

PriDamageType (String)

For Ammo or for Weapon, primary firing mode. Type of the damage. Maybe the same string for all damage.

PriArmorStops (boolean)

For Ammo or for Weapon, primary firing mode. If the armor is effective against this damage type.

PriAlwaysGibs (boolean)

For Ammo or for Weapon, primary firing mode. If this damage kills instantly.

PriSpecial (boolean)

For Ammo or for Weapon, primary firing mode. If this damage is special. TODO

PriDetonatesGoop (boolean)

For Ammo or for Weapon, primary firing mode. If this damage detonates goops. TODO

PriSuperWeapon (boolean)

For Ammo or for Weapon, primary firing mode. If this damage is super weapon damage. Kills everyone even teammates.

PriExtraMomZ (boolean)

For Ammo or for Weapon, primary firing mode. If this damage adds something to Panws momentum. TODO

PriProjType (String)

For Ammo or for Weapon, primary firing mode. Class of the projectile this ammo, weapon spawns.

PriDamage (double)

For Ammo or for Weapon, primary firing mode. How much damage this projectile does.

PriDamageMax (double)

For Ammo or for Weapon, primary firing mode. How much maximum damage this projectile does.

PriDamageMin (double)

For Ammo or for Weapon, primary firing mode. How much minimum damage this projectile does.

PriSpeed (double)

For Ammo or for Weapon, primary firing mode. Default projectile speed.

PriMaxSpeed (double)

For Ammo or for Weapon, primary firing mode. Maximum projectile speed.

PriLifeSpan (double)

For Ammo or for Weapon, primary firing mode. Maximum amount of time in seconds this projectile can survive in the environment.

PriDamageRadius (double)

For Ammo or for Weapon, primary firing mode. If the projectile does splash damage, here is radius in ut units of the splash.

PriTossZ (double)

For Ammo or for Weapon, primary firing mode. If the projectile is tossed, here is velocity in Z direction of the toss. TODO

PriMaxEffectDistance (double)

For Ammo or for Weapon, primary firing mode. Maximum effective distance. TODO

SecFireModeType (String)

For Weapon, secondary firing mode. Type of the firing mode. If none, the weapon does not have this fireing mode.

SecSplashDamage (boolean)

For Weapon, secondary firing mode. If this mode does splash damage.

SecSplashJump (boolean)

For Weapon, secondary firing mode. If the splash damage of this firing mode can be used for increasing jump height.

SecRecomSplashDamage (boolean)

For Weapon, secondary firing mode. If the engine recommends to use this splash damage. TODO

SecTossed (boolean)

For Weapon, secondary firing mode. If the this mode is tossing something (projectile) out.

SecLeadTarget (boolean)

For Weapon, secondary firing mode. If this mode can lead the target. TODO

SecInstantHit (boolean)

For Weapon, secondary firing mode. If this mode does instant hits - weapon hits instantly - no flying time for bullets.

SecFireOnRelease (boolean)

For Weapon, secondary firing mode. If to fire this mode you need to press shooting button (start shooting) and then release it (stop shooting). Usually for charging weapons.

SecWaitForRelease (boolean)

For Weapon, secondary firing mode. If to fire this mode you need to stop pressing shooting button between two shots to shoot. You will fire once when pressing the button, then you need to press it again to fire again.

SecModeExclusive (boolean)

For Weapon, secondary firing mode. If this firing mode cannot be used at the same time with other firing mode of the weapon.

SecFireRate (double)

For Weapon, secondary firing mode. Fire rate in seconds.

SecBotRefireRate (double)

For Weapon, secondary firing mode. Refire rate for bots in seconds. TODO

SecAmmoPerFire (int)

For Weapon, secondary firing mode. Needed amount of ammo to fire this weapon mode once.

SecAmmoClipSize (int)

For Weapon, secondary firing mode. If the weapon mode has clips, their size. TODO

SecAimError (double)

For Weapon, secondary firing mode. Aiming error of the weapon. 0 none, 1000 quite a bit.

SecSpread (double)

For Weapon, secondary firing mode. Double, rotator units. No relation to aim error.

SecSpreadStyle (int)

For Weapon, secondary firing mode. Type of spreading. TODO

SecFireCount (int)

For Weapon, secondary firing mode. TODO

SecDamageAtten (double)

For Weapon, secondary firing mode. Attenuate instant-hit/projectile damage by this multiplier.

SecAmmoType (String)

For Ammo or for Weapon, secondary firing mode. Class of the ammo.

SecInitialAmount (int)

For Ammo or for Weapon, secondary firing mode. Amount of ammo we get if we pick up the item (weapon or ammo) for the first time.

SecMaxAmount (int)

For Ammo or for Weapon, secondary firing mode. Max amount of ammo of this type we can have in our inventory.

SecMaxRange (double)

For Ammo or for Weapon, secondary firing mode. TODO

SecDamageType (String)

For Ammo or for Weapon, secondary firing mode. Type of the damage. Maybe the same string for all damage.

SecArmorStops (boolean)

For Ammo or for Weapon, secondary firing mode. If the armor is effective against this damage type.

SecAlwaysGibs (boolean)

For Ammo or for Weapon, secondary firing mode. If this damage kills instantly.

SecSpecial (boolean)

For Ammo or for Weapon, secondary firing mode. If this damage is special. TODO

SecDetonatesGoop (boolean)

For Ammo or for Weapon, secondary firing mode. If this damage detonates goops. TODO

SecSuperWeapon (boolean)

For Ammo or for Weapon, secondary firing mode. If this damage is super weapon damage. Kills everyone even teammates.

SecExtraMomZ (boolean)

For Ammo or for Weapon, secondary firing mode. If this damage adds something to Pawns momentum. TODO

SecProjType (String)

For Ammo or for Weapon, secondary firing mode. Class of the projectile this ammo, weapon spawns.

SecDamage (double)

For Ammo or for Weapon, secondary firing mode. How much damage this projectile does.

SecDamageMax (double)

For Ammo or for Weapon, secondary firing mode. How much maximum damage this projectile does.

SecDamageMin (double)

For Ammo or for Weapon, secondary firing mode. How much minimum damage this projectile does.

SecSpeed (double)

For Ammo or for Weapon, secondary firing mode. Default projectile speed.

SecMaxSpeed (double)

For Ammo or for Weapon, secondary firing mode. Maximum projectile speed.

SecLifeSpan (double)

For Ammo or for Weapon, secondary firing mode. Maximum amount of time in seconds this projectile can survive in the environment.

SecDamageRadius (double)

For Ammo or for Weapon, secondary firing mode. If the projectile does splash damage, here is radius in ut units of the splash.

SecTossZ (double)

For Ammo or for Weapon, secondary firing mode. If the projectile is tossed, here is velocity in Z direction of the toss. TODO

SecMaxEffectDistance (double)

For Ammo or for Weapon, secondary firing mode. Maximum effective distance. TODO

Amount (int)

If this item is some ammo or health pack, here we can find out how much of the attribute this item will add.

SuperHeal (boolean)

If this item is health. True if super health.

EITC - ItemCategoryEnd -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Observer,

End of list of item categories - provides informations about items that are present at the map.

SITC - ItemCategoryStart -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Observer,

Start of the synchronous batch of ITC messages - representing the list of item categories which is sent at the beginning of the connection to GameBots.

EINV - ItemListEnd -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server, Observer,

End of list of items - provides informations about items that are present at the map.

SINV - ItemListStart -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server, Observer,

Start of the synchronous batch of INV message - representing the list of items which is sent at the beginning of the connection to GameBots.

IPK - ItemPickedUp -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Observer,

Asynchronous message. Comes when we have picked up an item. This does not mean the item will be added to our inventory (for example Adrenaline or Health pickup just raise our stats).

Id (UnrealId)

Unique Id of the item. This Id represents just item on the map, not in our inventory.

InventoryId (UnrealId)

Unique Id of the item in our inventory - use this Id to do changeweapons etc. Unreal has different Ids for items in map and actual item in bot's inventory. If the item does not go into our inventory nothing will be here (null).

Location (Location)

Location of the item.

Amount (int)

If this item is some ammo or health pack, here we can find out how much of the attribute this item will add. Works also for weapons - will hold primary ammo amount.

AmountSec (int)

Only sent if this item is a weapon. Holds secondary ammo amount.

Type (ItemType)

Class of the item (e.g. xWeapons.FlakCannonPickup).

Dropped (Boolean)

Whether it is a regular item or dropped by player or bot.

JUMP - JumpPerformed -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Observer,

Asynchronous message. Sent when the observed player jumps.

DoubleJump (boolean)

Whether this is a double jump.

LAND - Landed -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Observer,

Asynchronous message. Sent when the bot lands on the ground after falling. Received also after respawn.

HitNormal (Vector3d)

Normal of the plane we have landed on.

LOCKED - LockedVehicle -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Bot,

Asynchronous message. Sent as a response to ENTER command. Sent if the ENTER command was unsuccessfull because the vehicle is locked for our bot.

Id (UnrealId)

Id of the vehicle, which we cannot enter, because it is locked.

Type (String)

Type of the vehicle we wanted to enter. What kind of turret or car.

Location (Location)

Location of the vehicle.

LOSTCHILD - LostChild -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Observer,

Asynchronous message. The bot the observer has been observing left the game. The observer won't get any updates after this message.

MAPCHANGE - MapChange -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server,

Asynchronous message. Sent when the map is changed (we will loose connection to the server for some time).

MapName (String)

Name of the new map.

FIN - MapFinished -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server,

Asynchronous message. When the end of the simulation - ergo game, ergo map - occurs, this message is sent, so agents can disconnect.

IMAP - MapList -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Server,

Info batch message. Starts with SMAP message, ends with EMAP message. Hold information about available maps on the server (maps to which we can change the game).

Name (String)

Name of one map in map list on the server.

EMAP - MapListEnd -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Server,

End of list of maps (see IMAP message).

SMAP - MapListStart -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Server,

Start of the map list - list of all maps available on the server - needed by server control (IMAP messages).

MOV - Mover -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Observer,

Synchronous message. Movers can be doors, elevators, or any other chunk of architecture that can move. They generally need to be either run into, or activated by shooting or pressing a button. We are working on ways to provide bots with more of the information they need to deal with movers appropriately.

Id (UnrealId)

A unique Id of this mover assigned by the game.

Location (Location)

Location of the mover.

Visible (boolean)

If the mover is in the field of view of the bot.

DamageTrig (boolean)

True if the mover needs to be shot to be activated.

Type (String)

String class of the mover.

IsMoving (boolean)

Does the mover move right now?

Velocity (Velocity)

Velocity vector.

MoveTime (double)

How long the mover moves, when it becomes triggered, before it stops.

OpenTime (double)

How long the mover stands still when it reaches its destination position. After this time, the mover returns back to its initial position.

BasePos (Location)

Base position of the mover.

BaseRot (Location)

Base rotation of the mover.

DelayTime (double)

Delay before starting to open (or before lift starts to move).

State (String)

Name of the state Mover is currently in. Can be used to determine the type of the mover.

NavPointMarker (UnrealId)

Navigation point marking this mover. We can parse this Id to get information about type of the mover. Marker Id contains "lift" string if it is a lift, "door" string if it is a door, etc.

EMOV - MoverListEnd -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server, Observer,

End of list of movers - provides information about the map at the beggining of the communication with the bot.

SMOV - MoverListStart -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server, Observer,

Start of mover list which is sent at the beginning of the communication (MOV messages) - provides informations about the map to the bot at the beggining of the connection (during so-called handshake).

MUT - Mutator -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Server, Bot,

Info batch message. Starts with SMUT message, ends with EMUT message. Hold information about current mutators active on the server.

Id (UnrealId)

Id of the mutator.

Name (String)

Name of the mutator.

EMUT - MutatorListEnd -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server,

End of list of mutators - provides information about the map mutators at the beggining of the communication with the bot (after NFO message).

SMUT - MutatorListStart -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server,

Start of mutator list which is sent after NFO message (during so-called handshake).

MYINV - MyInventory -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Observer,

An object in the observed player's inventory.

Id (UnrealId)

Unique Id of the item. This Id represents the item in the inventory.

CurrentAmmo (int)

If this item is a weapon, this holds the amount of primary ammo.

CurrentAltAmmo (int)

If this item is a weapon, this holds the amount of secondary ammo.

Amount (int)

If this item is ammo or armor, this holds the amount of the item the player has.

Type (ItemType)

Class of the item (e.g. xWeapons.FlakCannonPickup).

EMYINV - MyInventoryEnd -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Observer,

End of the synchronous batch of MYINV messages - representing the list of items the observed player has.

SMYINV - MyInventoryStart -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Observer,

Start of the synchronous batch of MYINV messages - representing the list of items the observed player has.

NAV - NavPoint -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Observer,

Synchronous message - however only NavPoints marking item pickup locations are exported synchronously. Other NavPoints are not exported synchronously at all, even if the bot can actually see them (but note that ALL NavPoints are exported in the handshake between bot and the server). Exporting NavPoints synchronously took a lot of UT server resources with limited information gain (in Pogamut there is now available visibility matrix holding static information which points can be seen from other points). NavPoint carries information about UT navigation point - location, paths and some additional information are stored there (if it is an ambush point, or sniper point, etc.).

Id (UnrealId)

A unique Id of this navigation point assigned by the game.

Location (Location)

Location of navigation point.

Velocity (Velocity)

Velocity of the navigation point (if the navigation point is currently moving). Not sent at the moment.

Visible (boolean)

If the point is in the field of view of the bot.

Item (UnrealId)

Unique Id of the respawned item (the item respawns at this point). Not sent if point is not an inventory spot. Sent only in HandShake.

ItemClass (ItemType)

Class of the item (e.g. xWeapons.FlakCannonPickup). Not sent if point is not an inventory spot. Sent only in HandShake.

ItemSpawned (boolean)

True if the item is spawned at the point. Not sent if point is not an inventory spot.

DoorOpened (boolean)

True if this NavPoint is a Door and door is opened. Not sent if point is not a door.

Mover (UnrealId)

If this NavPoint is marking some mover, the mover id will be here. Not sent if point is not a Door, a LiftCenter or a LiftExit. Sent only in HandShake.

LiftOffset (Vector3d)

Starting vector between MyLift location and LiftCenter location. Not sent if point is not a LiftCenter. Sent only in HandShake.

LiftJumpExit (boolean)

Boolean. If we can/should exit the lift by a jump when near the destination place. Not sent if point is not a LiftExit. Sent only in HandShake.

NoDoubleJump (boolean)

Boolean. If we should or not use double jump when exiting lift with a jump. Not sent if point is not a LiftExit. Sent only in HandShake.

InvSpot (boolean)

If this is an inventory spot (item is respawned at this point).

PlayerStart (boolean)

If this is a player start (players and/or bots are respawned at this point).

TeamNumber (int)

Will be sent if this is a player start. In Team games (team deathmatch, capture the flag, domination) holds information about which team respawns at this player start spot. In non-team games will return 0!

DomPoint (boolean)

If this point marks a DominationPoint (for BotDoubleDomination game).

DomPointController (int)

Exported if this NavPoint is a DominationPoint (for BotDoubleDomination game) - which team controls this point.

Door (boolean)

If this point marks a door mover.

LiftCenter (boolean)

If this point marks a lift center (used to mark center of a lift mover, note that this point will be always moved with the lift).

LiftExit (boolean)

If this point marks a lift exit (used to mark exit point of a lift mover).

AIMarker (boolean)

If this point is an AI marker - marks an interesting spot in the environment. May be ambush point or sniping spot, etc.

JumpSpot (boolean)

If this point marks a jump spot (a special device that causes the bot to jump high or far).

JumpPad (boolean)

If this point marks a jump pad (a special device that causes the bot to jump high or far).

JumpDest (boolean)

If this point marks a jump destination - some place that can be reached by some special jump.

Teleporter (boolean)

If this point marks a teleport.

Rotation (Rotation)

If the type is AIMarker. The rotation the bot should be facing, when doing the action specified by AIMarker. Sent only in HandShake.

RoamingSpot (boolean)

Some ambush point, where is good chance to intercept approaching opponents. Sent only in HandShake.

SnipingSpot (boolean)

Point good for sniping. Sent only in HandShake.

PreferedWeapon (String)

Class of the weapon that should be prefered when using this point for AIMarker specified action. Sent only in HandShake.

ENAV - NavPointListEnd -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server, Observer,

End of list of navigation points - provides information about the map at the beggining of the communication with the bot.

SNAV - NavPointListStart -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server, Observer,

Start of navigation point list which is sent at the beginning of the communication (NAV messages) - provides informations about the map to the bot at the beggining of the connection (during so-called handshake).

INGP - NavPointNeighbourLink -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server,

Info batch message. Start with SNGP, ends with ENGP. Sent for each INAV message at the beginning of the communication. Holds information about NavPoint neighbours. This way the reachability graph can be exported from UT2004. You should interpret this as a DIRECTED EDGE of the navpoint GRAPH that describes the the edge from FromNavPoint to ToNavPoint.

Id (UnrealId)

Unique Id of the NavPoint the link is leading to (end of the link). Always identical to ToNavPoint.getStringId().

Flags (int)

Holds information about the path from the NavPoint to its neighbour that is represented by this message. TODO: see reachspecs on UnrealWiki.

CollisionR (int)

Maximum collision radius of the path between navigation points. Bot bigger then this cannot use this path.

CollisionH (int)

Maximum collision height of the path between navigation points. Bot bigger then this cannot use this path.

TranslocZOffset (double)

TODO: mystery - we haven't figure it out so far. Can be: a) z-coord of the translocator target b) translocator z-force for the translocator shot

TranslocTargetTag (String)

TODO: mystery - we haven't figure it out so far. Can be: where you should appear when successfully translocated or where to aim at

OnlyTranslocator (boolean)

Whether the translocator is the only way how to traverse this navigation edge.

ForceDoubleJump (boolean)

Whether you need to double jump to get to the neighbour navpoint.

NeededJump (Vector3d)

TODO: mystery how to interpret

NeverImpactJump (boolean)

TODO: mystery how to interpret

NoLowGrav (boolean)

TODO: mystery how to interpret

CalculatedGravityZ (double)

TODO: mystery how to interpret

ENGP - NavPointNeighbourLinkEnd -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server,

End of list of navigation point neighbourss (see INGP message).

SNGP - NavPointNeighbourLinkStart -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server,

Start of list of navigation point neighbours (see INGP message).

SEL - ObjectSelected -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Server,

Asynchronous message. Player selected an object in the environment in PlayerMousing state (by pressing ALT + SHIFT to switch to this state).

PlayerId (UnrealId)

Unique Id of the player that this event is for.

PlayerName (String)

Name of the player that this event is for.

ObjectId (UnrealId)

Id of the actor the player selected (actors include other players or bots and other physical objects that can block your path and even level geometry actors). Will be "None" if nothing was selected (or actor was deselected).

ObjectLocation (Location)

Location of the actor the player selected. Sent only if some object selected.

ObjectHitLocation (Location)

Location of the hit point that we have selected this actor through. Sent only if some object selected.

PASSWDOK - PasswdOk -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server, Observer,

Tells you that the passed password is OK.

PASSWDWRONG - PasswdWrong -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server, Observer,

Tells you that the passed password is WRONG. The communication is closed after this.

PASSWORD - Password -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server, Observer,

Sent during handshake telling you the server is protected by the password and that you have to provide one to be able to communicate with it.

BlockedByIp (String)

IP:Port who has blocked the server

IPTH - PathList -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot,

Info batch message. A series of pathnodes in response to a GETPATH command from the client. Starts with SPTH, ends with EPTH. Represents some path in the map (sequence of traversable navigation points).

RouteId (UnrealId)

Unique Id of one navigation point in the path (well it should be navigation point - safer is to use location).

Location (Location)

Location of one navigation point in the path.

EPTH - PathListEnd -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot,

End of the path list sent as an response to GETPATH command (IPTH messages).

SPTH - PathListStart -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot,

Start of the path list sent as an response to GETPATH command (IPTH messages).

MessageId (String)

An Id matching the one sent by client. Allows bot to match answer with right query.

PLR - Player -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server, Observer,

Synchronous message. Contains information about other players in the game, like their current velocity, position, weapon and reachability. Only reports those players that are visible. (within field of view and not occluded).

Id (UnrealId)

Unique Id of the player.

Jmx (String)

Exported just for control server. Holds jmx address we need to connect to when we want to debug our bot.

Name (String)

Human readable name of the player.

Action (String)

Atomic action this bot is doing (BDI).

Visible (boolean)

If the player is in the field of view of the bot.

Rotation (Rotation)

Which direction the player is facing in absolute terms.

Location (Location)

An absolute location of the player within the map.

Velocity (Velocity)

Absolute velocity of the player as a vector of movement per one game second.

Team (int)

What team the player is on. 255 is no team. 0-3 are red, blue, green, gold in that order.

Weapon (String)

Class of the weapon the player is holding. Weapon strings to look for include: "AssaultRifle", "ShieldGun", "FlakCannon", "BioRifle", "ShockRifle", "LinkGun", "SniperRifle", "RocketLauncher", "Minigun", "LightingGun", "Translocator". TODO: Look if this is all.

Crouched (boolean)

True if the bot is crouched.

Firing (int)

0 means is not firing, 1 - firing in primary mode, 2 - firing in secondary mode (alt firing).

EmotLeft (String)

For UE2. Holds left emoticon of the bot, "None" means none set.

EmotCenter (String)

For UE2. Holds center emoticon of the bot, "None" means none set.

EmotRight (String)

For UE2. Holds right emoticon of the bot, "None" means none set.

Bubble (String)

For UE2. Holds the bubble of the emoticon of the bot, "None" means none set.

Anim (String)

For UE2. Current played animation of the bot.

HIT - PlayerDamaged -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Bot, Observer,

Asynchronous message. Bot hurt another player. Hit them with a shot.

Id (UnrealId)

Unique Id of the player hit.

Damage (int)

Amount of damage done.

DamageType (String)

A string describing what kind of damage.

WeaponName (String)

Name of the weapon that caused this damage.

Flaming (boolean)

If this damage is causing our bot to burn. TODO

DirectDamage (boolean)

If the damage is direct. TODO

BulletHit (boolean)

If this damage was caused by bullet.

VehicleHit (boolean)

If this damage was caused by vehicle running over.

JOIN - PlayerJoinsGame -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server, Observer,

Asynchronous message. A player joined the game.

Id (UnrealId)

Unique Id of the player.

Name (String)

Name of the player.

KIL - PlayerKilled -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Observer,

Asynchronous message. Some other player died - reporting his death. Additional information about DamageType - DeathString and so are exported just if we can see the dying player.

Id (UnrealId)

Unique Id of the dead player.

Killer (UnrealId)

Unique Id of player that killed if any (the victim might have walked off a ledge).

KilledPawn (String)

The UT Pawn that was killed - support for vehicles. If someone destroyes vehicle we will get it here (Id will be none and in KilledPawn we will have destroyed vehicle).

DamageType (String)

A string describing what kind of damage killed the victim.

DeathString (String)

String describing this type of death.

WeaponName (String)

Name of the weapon that caused this damage.

Flaming (boolean)

If this damage is causing the player to burn. TODO

CausedByWorld (boolean)

If this damage was caused by world - falling into lava, or falling down.

DirectDamage (boolean)

If the damage is direct. TODO

BulletHit (boolean)

If this damage was caused by bullet.

VehicleHit (boolean)

If this damage was caused by vehicle running over us.

LEFT - PlayerLeft -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server, Observer,

Asynchronous message. Message sent when a player leaves the server.

Id (UnrealId)

Unique Id of the player who left.

Name (String)

The name of the player.

EPLR - PlayerListEnd -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server, Observer,

End of the player list sent by GameBots (see PLR message).

SPLR - PlayerListStart -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server, Observer,

Start of the player list sent by GameBots (PLR messages).

PLS - PlayerScore -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Bot, Observer,

Synchronous message. Contains the info about player score.

Id (UnrealId)

Unique Id of the player.

Score (int)

Number of player frags (how many times the player killed other players) or number of victory points (player frags + some special measurement that can differ from game type to game type).

Deaths (int)

Number of players deaths.

PONG - Pong -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server, Observer,

Response of the PING command.

RCH - Reachable -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot,

Asynchronous message. A boolean result of a checkreach call.

Id (String)

An Id matching the one sent by client. Allows bot to match answer with right querry.

Reachable (boolean)

True if the bot can run here directly, false otherwise.

From (Location)

Exact location of bot at time of check.

RECEND - RecordingEnded -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Server,

Asynchronous message. Sent as a response to STOPREC command. The recording of the demo on the server was stopped.

RECSTART - RecordingStarted -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Server,

Asynchronous message. Sent as a response to REC command. The recording of the demo on the server was started.

SLF - Self -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Observer,

Synchronous message. Information about your bot's state.

Id (UnrealId)

Unique Id of this self message instance.

BotId (UnrealId)

Unique Id of this bot.

Name (String)

Human readable bot name.

Vehicle (boolean)

If we are vehicle just these attr. are sent in SLF: "Id","Vehicle""Rotation", "Location","Velocity ","Name ","Team" ,"Health" "Armor","Adrenaline", "FloorLocation", "FloorNormal".

Location (Location)

An absolute location of the bot.

Velocity (Velocity)

Absolute velocity of the bot as a vector of movement per one game second.

Rotation (Rotation)

Which direction the bot is facing in absolute terms.

Team (int)

What team the bot is on. 255 is no team. 0-3 are red, blue, green, gold in that order.

Weapon (String)

Id of the weapon we are holding. This is unique Id of an item in our inventory and is different from the Id of the item we pick up from the ground! We can parse this string to look which weapon we hold. Weapon strings to look for include: "AssaultRifle", "ShieldGun", "FlakCannon", "BioRifle", "ShockRifle", "LinkGun", "SniperRifle", "RocketLauncher", "Minigun", "LightingGun", "Translocator". TODO: Look if this is all.

Shooting (boolean)

If the bot is shooting or not.

Health (int)

How much health the bot has left. Starts at 100, ranges from 0 to 200.

PrimaryAmmo (int)

How much ammo the bot has left for current weapon primary mode.

SecondaryAmmo (int)

How much ammo the bot has left for current weapon secondary mode. Weapon does not have to support sec. fire mode.

Adrenaline (int)

How much adrenaline the bot has.

Armor (int)

Combined size of high armor and low armor (or small armor). The high and low armor are tracked separately. Low armor is limited to 50 points, while the high armor can have up to 150 points. Both stacks can have a combined size of 150 points as well, so if low armor is already at 50 points, high armor can have 100 points at max.

SmallArmor (int)

Also refered to as a "low armor". Ranges from 0 to 50 points.

AltFiring (boolean)

If we are firing in secondary firing mode.

Crouched (boolean)

If we are currently crouched.

Walking (boolean)

If we are currently in walking mode.

FloorLocation (Location)

Holds current floor location under the bot.

FloorNormal (Location)

Holds current floor normal under the bot.

Combo (String)

Name of the current combo (None if no combo active). Can be xGame.ComboBerserk, xGame.ComboDefensive, xGame.ComboInvis or xGame.ComboSpeed. To trigger combo adrenaline needs to be at 100 (maximum) and no other combo can be active.

UDamageTime (double)

Time when the UDamage effect expires. If the number is higher then the current time, it means the bot has UDamage effect active right now.

Action (String)

Name of the current BDI action.

EmotLeft (String)

For UE2. Holds left emoticon of the bot, "None" means none set.

EmotCenter (String)

For UE2. Holds center emoticon of the bot, "None" means none set.

EmotRight (String)

For UE2. Holds right emoticon of the bot, "None" means none set.

Bubble (String)

For UE2. Holds the bubble of the emoticon of the bot, "None" means none set.

Anim (String)

For UE2. Current played animation of the bot.

SHOOT - ShootingStarted -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Observer,

Asynchronous message. Sent when the observed player starts shooting.

Alt (boolean)

Whether using the alternate firing mode.

STOPSHOOT - ShootingStopped -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Observer,

Asynchronous message. Sent when the observed player stops shooting.

Alt (boolean)

Whether using the alternate firing mode.

SPW - Spawn -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Observer,

Asynchronous message. You get this every time the bot gets respawned. When the match is not started yet and you connect to the server, there is delay in sending this message, it will be sent when the match will start, although the bot will be spawned in the game for a few seconds at that time.

TEAMCHANGE - TeamChanged -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Bot,

Aynchronous message. Response of the CHANGETEAM command.

Id (UnrealId)

Sent only for ControlServer connections, so they know which bot changed the team.

Success (boolean)

If true team change was succesfull (it won't be succesfull if we are changing to a team we already are in).

DesiredTeam (int)

This is the team we wanted to change to (0 for red,1 for blue, etc..).

VMT - TeamChat -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Bot, Observer,

Asynchronous message. Recieved message from team chat channel.

Id (UnrealId)

Unique UnrealId of the sender.

Name (String)

Human readable name of the sender.

Text (String)

A human readable message sent by a team mate in the game on the private team channel.

TES - TeamScore -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Bot,

Synchronous message. Contains the info about team score.

Id (UnrealId)

Message identifier.

Team (Integer)

Team identifier.

Score (Integer)

The score of the team (can be some special measurement that differs from game type to game type - number of stolen flags in CTF game, number of team frags in TeamGame, etc.)

THROWN - Thrown -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Bot, Observer,

Asynchronous message. Weapon has been thrown out (response to THROW command).

Id (UnrealId)

Inventory Id of the weapon thrown out.

TRC - TraceResponse -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Bot,

Aynchronous message. Response to TRACE command.

Id (String)

An Id matching the one sent by client. Allows bot to match answer with right query.

From (Location)

Location from which the ray is emitted.

To (Location)

Location to which the ray is sent.

Result (boolean)

True if it hit something, false if not.

HitNormal (Vector3d)

Normal vector to the trace ray in the point of hit.

HitLocation (Vector3d)

Point of the hit.

HitID (UnrealId)

Id of the thing we have hit. May be other player or some item or level geometry.

TraceActors (boolean)

True if we are tracing also actors in the game (players, items). False if we are tracing just level geometry.

VEH - Vehicle -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Bot, Observer,

Synchronous message. Holds vehicles we see. Id for vehicles doesn't work, so this message is without Id. We can join vehicles by ENTER command if we are close enough - ussually 100 ut units or less. Note: Vehicle support is in aplha testing right now.

Id (UnrealId)

Unique Id of the vehicle or vehicle part.

Rotation (Rotation)

Which direction the vehicle is facing in absolute terms.

Location (Location)

An absolute location of the vehicle within the map.

Velocity (Velocity)

Absolute velocity of the vehicle as a vector of movement per one game second.

Visible (boolean)

If the vehicle is in the field of view of the bot.

Team (Integer)

What team the vehicle is on. 255 is no team. 0-3 are red, blue, green, gold in that order.

Health (Integer)

How much health the vehicle has left. Ranges from 0 to x, depending on the vehicle type.

Armor (Integer)

How much the vehicle has left. Note: This may be 0 all the time. Maybe the vehicles are not supporting armor.

Driver (UnrealId)

Unique Id of the driver - if any.

TeamLocked (boolean)

If the vehicle is locked just for its current team.

Type (String)

Class of the vehicle. If it is a car, turret etc.

VCH - VolumeChanged -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Observer,

Asynchronous message. Some part of the bot body changed the zone.

Id (String)

Id of the zone entered.

ZoneVelocity (Velocity)

Zone velocity (?).

ZoneGravity (Velocity)

Gravity in this zone.

GroundFriction (double)

Friction of the floor.

FluidFriction (double)

Friction of the fluid.

TerminalVelocity (double)

Terminal velocity (?).

WaterVolume (boolean)

If this zone is a water.

PainCausing (boolean)

True or false if we get some damage when we stay in this zone.

Destructive (boolean)

If this zone kills most of the actors instantly.

DamagePerSec (double)

Amount of damage we will suffer per second if we stay in this zone.

DamageType (String)

Type of the damage in this zone.

NoInventory (boolean)

If the inventory is allowed here.

MoveProjectiles (boolean)

If this velocity zone should impart velocity to projectiles and effects.

NeutralZone (boolean)

Players can't take damage in this zone.

WAL - WallCollision -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Observer,

Asynchronous message. We have collided with a wall. Note it is common to get a bunch of these when you try to run through a wall or are pushed into one by gunfire or something.

Id (String)

Id of the wall we have hit (level geometry).

Normal (Vector3d)

Normal of the wall bot collided with.

Location (Location)

Absolute location of bot at the time of impact.

WUP - WeaponUpdate -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Bot,

Asynchronous message. Send when the bot changed weapon. Here we will export the status of the old weapon - of the weapon that was changed. So we can have correct info about weapons in our inventory. This could be a problem without this message because of synchronous batch delay.

Id (UnrealId)

Unique Id of the weapon, based on the inventory weapon's name (this is different from the Id of the weapon that can be picked up in the map).

PrimaryAmmo (int)

Holding primary ammo of the old weapon (that was changed).

SecondaryAmmo (int)

Holding secondary ammo of the old weapon (that was changed)

InventoryType (String)

Class of the weapon in the inventory. Matches InventoryType in the item class (ITC) message.

ZCB - ZoneChangedBot -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Observer,

Asynchronous message. Bot changed zones. Entire bot now in new zone.

Id (String)

Id of a zone entered.

Commands

ADDBOT - AddBot -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Server,

Will add original epic bot to a game. May have issues with team balancing.

Name (String)

Optional name of the bot.

StartLocation (Location)

Optional start location of the bot.

StartRotation (Rotation)

Optional start rotation of the bot.

Skill (int)

Skill of the bot - from 1 to 7 (best).

Team (int)

Desired team of the of the bot (0 red, 1 blue).

Type (String)

The class of the added bot - optional.

ADDINV - AddInventory -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Bot, Server,

We can add custom inventory for specified bot. This command can be issued also by bot on the bot itself (in this case Id attribute is not parsed). Issuing by bot is allowed just when the game has allowed cheating (bAllowCheats = True in GameBots2004.ini file).

Id (UnrealId)

Id of the target bot. Is used just when sending command to the server. If sending command to the bot Id is ignored and ADDINV command is executed on the bot (if bAllowCheats == True).

Type (String)

Class of the item we want to add. Must be pickup class (e.g. xWeapons.FlakCannonPickup).

ADDRAY - AddRay -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot,

Add custom ray for automatic ray tracing. If you send Id = Default, all rays will be erased and default set of rays will be loaded (straight ahead (1,0,0) with 250 length, 45 degrees left (1,–1,0) with 200 length, 45 degrees right (1,1,0) with 200 length). This set of rays is also loaded by default. If you want to change existing ray, just support its Id in ADDRAY command along with new parameters. Direction of the rays work as follows. Bot is looking to x axis, that means if I want ray straight ahead I specify some vector on positive x axis (vectors in unreal are specified by (x,y,z) so it would look like this (1,0,0) or this (123,0,0) – numbers doesn't matter, its about direction - vectors will be normalized). If I want ray behind it would be (–1,0,0). 90 degrees right (0,1,0) etc.

Id (String)

User set Id of the ray, so the ray can be identified.

Direction (Vector3d)

Vector direction of the ray (it will be relative - added to the vector, where the bot is looking, also takes into account angle of the floor the bot is standing on).

Length (int)

Specifies the length of the ray (in UT units).

FastTrace (boolean)

True if we want to use FastTrace function instead of Trace function (a bit faster but less information provided - just information if we hit something or not).

FloorCorrection (boolean)

If we should correct ray directions accoring floor normal. Note: Has issue - we can't set set rays up or down when correction is active.

TraceActors (boolean)

If we want to trace also actors – bots, monsters, players, items. False if we want to trace just level geometry.

CHATTR - ChangeAttribute -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Bot, Server,

Will change the specified attribute of the bot. This command can be issued also by bot on the bot itself (in this case Id attribute is not parsed). Issuing by bot is allowed just when the game has allowed cheating (bAllowCheats = True in GameBots2004.ini file).

Id (UnrealId)

Id of the target bot. Not used if sent as a command for the bot.

Health (int)

Sets the bot health. Maximum health level is 199 in UT2004.

Adrenaline (int)

Sets the bot adrenaline. From 0 to 100.

CHANGEMAP - ChangeMap -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Server,

Will change map to MapName - map must exist on server (won't be tested), will send MAPCHANGE message. When map change occurs all connections to the server will be shutted down.

MapName (String)

Name of the new map.

CHANGETEAM - ChangeTeam -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Bot, Server,

Command for changing the bot team. Responds with TEAMCHANGE message. This command can be issued also by bot on the bot itself (in this case Id attribute is not parsed).

Id (UnrealId)

Id of the target bot (won't be parsed if sent to bot connection).

Team (int)

This is the team we want to change to (0 for red, 1 for blue, etc.).

CHANGEWEAPON - ChangeWeapon -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Bot,

Switch the bots weapon to another.

Id (String)

Unique Id of weapon to switch to. If you just send "Best" as Id, the server will pick your best weapon that still has ammo for you. Obtain Unique Id's from AIN messages. Be carefull, the weapon Id in bots inventory is different from the Ids of weapons that are lying in the map!

CHECKREACH - CheckReachability -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot,

Check to see if you can move directly to a destination without hitting an obstruction, falling in a pit, etc. Responding with RCH message.

Id (String)

Message Id made up by you and echoed in response so you can match up response with query.

Target (UnrealId)

The unique Id of a player/object/nav point/whatever.

Location (Location)

Location you want to go to. Normal location rules. Only used if no Target is sent.

COMBO - Combo -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Bot,

Causes bot to perform desired adrenaline combo (only if it has enough adrenaline usually >= 100). Combo cannot be turned off when triggered. Combo will consume bot adrenaline slowly, when it reaches 0 combo stops. Combo can modify bots abilities or appearance. Combos can be xGame.ComboBerserk (bigger damage), xGame.ComboDefensive (every few seconds adds health), xGame.ComboInvis (bot is invisible and is very hard to spot) or xGame.ComboSpeed (bots speed is increased).

Type (String)

Holds the class name of the desired adrenaline combo (can be xGame.ComboBerserk, xGame.ComboDefensive, xGame.ComboInvis or xGame.ComboSpeed).

CONF - Configuration -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server,

Configures various attributes of the bot. This command can be issued also by bot on the bot itself (in this case Id attribute is not parsed).

Id (UnrealId)

Id of the target bot. Not used if sent as a command for the bot.

AutoTrace (boolean)

Enables/disables auto ray tracing feature.

ManualSpawn (boolean)

Sets if the bot wil have tol be respawned after death manually by RESPAWN command. If false, the bot will respawn automatically.

Name (String)

You can change the name of the bot in the game.

Action (String)

Sets atomic action for the bot (BDI).

SpeedMultiplier (double)

Bots default speed will be multiplied by this number. Ranges from 0.1 to 2 (default, can be set in ini in [GameBots2004.RemoteBot] MaxSpeed).

RotationRate (Rotation)

Sets the bot rotation rate. Default rotation rate is: (Pitch=3072,Yaw=60000,Roll=2048) and may be configured in ini file in [GameBots2004.RemoteBot] DefaultRotationRate. (pitch - up/down, yaw - left/right, roll - equivalent of doing a cartwheel)

Invulnerable (boolean)

Will set godmode for bot on (bot can't be killed). This can be changed just when cheating is enabled on the server. (bAllowCheats = True)

VisionTime (double)

Between 0.1 to 2 seconds, it sets the delay between two synchronous batches.

ShowDebug (boolean)

If true some additional debug information will be logged to UT2004 server console window.

ShowFocalPoint (boolean)

If set to true an actor will appear in the game on the location the bot is actually looking at.

DrawTraceLines (boolean)

If set to true, the rays of automatic ray tracing (ATR messages) will be drawn in the game.

SynchronousOff (boolean)

It enables/disables sending of all GB synchronous messages for the bot.

SyncNavPointsOff (boolean)

It enables/disables sending of NavPoints in GB synchronous batch for the bot.

AutoPickupOff (boolean)

It enables/disables automatic pickup of the bot. If true the items can be picked up through PICK command.

CONF - ConfigurationObserver -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Observer,

Configures various attributes of the observer. You can include several of the parameters. The state of options you don't specify will remain unchanged.

UpdateTime (double)

The frequency (in seconds) you will receive updates from the observer.

Update (double)

The frequency (in seconds) you will receive updates from the observer. Same as UpdateTime.

Game (boolean)

Whether to send game-related messages with every update. Affects the following messages: NFO, PLR.

Self (boolean)

Whether to send messages about the observed player with every update. Affects the following messages: SLF, MYINV.

See (boolean)

Whether to send messages about what the observed player sees with every update. Affects the following messages: PLR, INV, NAV, MOV, PRJ, VEH.

Special (boolean)

Whether to send messages about special objects on the map with every update. Affects the following messages: FLG, BOM, DOM.

All (boolean)

Toggles sending all messages with every update. You can still receive the messages by asking for them using the commands GAME, SELF, SEE, SPECIAL and ALL.

Async (boolean)

Whether to send asynchronous messages, such as HIT or AIN. Note that if you turn this off you will not be able to receive these messages at all.

CONSOLE - Console -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Server,

You can run all console command by this.

Command (String)

The actual console command.

CMOVE - ContinuousMove -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot,

The bot will continuously move straight ahead according to his actual rotation. Other move commands will interupt this.

DISCONNECT - DisconnectBot -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Bot,

Tells the GB2004 to destroy the bot inside UT2004 and close the connection which results in the termination of UT2004Bot as well.

DISC - DisconnectObserver -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Observer,

Disconnect the observing connection from the currently observed player. You can pick a new player to observe using the INIT command.

DODGE - Dodge -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Bot,

Causes the bot to dodge to supported direction. Only one (successful) dodge per second allowed.

Direction (Location)

Relative vector, will be normalized. The direction of the dodge will be added to current bot rotation.

FocusPoint (Location)

Point the bot should focus after dodge command. Note that if not specified, this will be set automatically by dodge command to 1200 ut units in front of the bot at the time when the dodge command is issued.

Wall (boolean)

Attemtps to do a wall dodge. There has to be a wall in the opposite direction of the dodge. If there isn't, nothing will happen! This switch overrides "Double" dodge switch.

Double (boolean)

If true performs a double dodge in specified direction.

DRIVETO - DriveTo -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Bot,

Only command that is able to move vehicles. Turn towards target specified and move directly to its destination. If there is an obstacle between target and current position, you will hit it on your way to target (no obstacle avoidance).

Target (UnrealId)

The unique id of a NavPoint, Mover or item (beware, not all of the items have unique id). Recommended is to specify NavPoint Id as it is always unique. Won't work with player IDs.

ENDPLRS - EndPlayers -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Server,

Will stop exporting of IPLR messages synchronously.

ENTER - EnterVehicle -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Bot,

Tries to enter vehicle specified by Id. Note: You have to be in vehicle EntryRadius to enter (default 100 ut units). Response to this command are messages ENTERED and LOCKED. Beware! When in vehicle just command RUNTO with Target specified works for move commands. Any other move commands will cause vehicle to got straight ahead. Also it is not possible to control speed or steering at this moment. Everything is done automaticaly by RUNTO with Target specified.

Id (UnrealId)

Id of the vehicle we want to enter.

USE - FactoryUse -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Bot,

Works only in BotScenario GameType. Bot tries to use Factory - he needs to be at factory position + he needs to have enough adrenaline to trigger the factory. Game responds with USED (FactoryUsed) message. The item will be spawned at bot's location.

FTRACE - FastTrace -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot,

Will send a ray from specified location to specified destination, responds with FTR message. FTRACE uses FastTrace function, which is faster then Trace function, but still rather slow.

Id (String)

Message Id made up by you and echoed in response so you can match up response with query.

From (Location)

Origin point of the ray. If you won't support From attribute, current bot location will be taken as From.

To (Location)

Target point of the ray.

CONFGAME - GameConfiguration -- Supported in packages: GameBots2004, GameBotsUE2, GBEmohawk, Connections: Server,

Configures various attributes of the game.

Restart (boolean)

When set to true, the game state will be restarted (all scores reset to 0 and all players and bots will be restarted). This does not affect Unreal native bots! Note that the restart is then announced by GameRestarted message and when finished another GameRestarted message is sent to mark the end.

GameMessage (String)

Message that will be displayed in the middle of the HUD.

GameMessageTime (double)

Time the displayed message will stay on the HUD.

GETINVS - GetAllInvetories -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server, Observer,

Requests the IINV info batch messages (will be sent as response).

GETNAVS - GetAllNavPoints -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server, Observer,

Requests the INAV info batch messages (will be sent as response).

ALL - GetAllStatus -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Observer,

Request all the possible status messages from the observer. The observer will send the following messages: Game info: NFO, PLR. The observed player: SLF, MYINV. Objects the player sees: PLR, INV, NAV, MOV, PRJ, VEH. Special objects on the map: FLG, BOM, DOM.

GAME - GetGameInfo -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Observer,

Request messages about the game. The observer will send NFO and PLR messages.

GETITC - GetItemCategory -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Observer,

Request to export item category by ITC message. Will respond with ITC message.

Type (String)

Class of the item we want to export ITC message for. Must be pickup class (e.g. xWeapons.FlakCannonPickup).

GETMAPS - GetMaps -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Server,

Will request map list from the server. Server will respond with IMAP batch map info messages.

GETPATH - GetPath -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot,

Get a path to a specified location or a navigation point. An ordered list of path nodes will be returned to you by IPTH messages.

Id (String)

Message Id made up by you and echoed in response so you can match up response with query.

Target (UnrealId)

UnrealId of navigation point you want to find path to. Will be parsed BEFORE Location attribute. If supported, Location attribute won't be parsed. If the point does not exists, blank path will be returned.

Location (Location)

Location you want to go to.

GETPLRS - GetPlayers -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Server, Observer,

Will send list of all players currently playing on the server. Server will respond with IPLR batch players info message.

SELF - GetSelf -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Observer,

Request messages about the observed player. The observer will send SLF and MYINV messages.

SPECIAL - GetSpecialObjects -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Observer,

Request messages about special objects on the map. The observer will send FLG, BOM and DOM messages.

SEE - GetVisibleObjects -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Observer,

Request messages about objects the observed player sees. The observer will send PLR, INV, NAV, MOV, PRJ and VEH messages.

INIT - Initialize -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot,

Message you'll send at the beginning of the communication to create a bot in the game. You must send this message before you can have a character to play in the game.

Name (String)

Desired name.

Team (int)

Preferred team. If illegal or no team provided, one will be provided for you. Normally a team game has team 0 and team 1. In BotDeathMatch, team is meaningless.

ManualSpawn (boolean)

Sets if the bot wil have tol be respawned after death manually by RESPAWN command. If false, the bot will respawn automatically.

AutoTrace (boolean)

Enables/disables auto ray tracing feature.

Location (Location)

Specify start location, if unspecified, then random.

Rotation (Rotation)

Specify start rotation, if unspecified, then random.

Skin (String)

Sets the bot current skin (e.g. "HumanMaleA.MercMaleA"). Find all packages and skins through unrealEd (Actor browser, search in UT2004/Animations folder). Supported bot skins are Aliens (Aliens.), Bots (Bot.), human males (HumanMaleA.), human females (HumanFemaleA. ), juggernauts (Jugg.). Skaarj skins are not supported at the time being.

DesiredSkill (int)

Can range from 0 to 7. This sets the bot accuracy. 1 lowest, 7 highest. Shouldn't have any other effect.

ShouldLeadTarget (boolean)

When firing slow projectiles (missiles...), if the engine will try to count the impact point for the bot or not (when shooting at moving targets).

AutoPickupOff (boolean)

It enables/disables automatic pickup of the bot. If true the items can be picked up through PICK command.

Jmx (String)

Sets the jmx adress we can use to debug the bot from Java (if we are using Pogamut).

ClassName (String)

Sets the Unreal Tournament class of the bot that should be used. By default leave it blank. In UnrealRuntime2 it may be used to spawn bots of different class, see CharacterType class in project PogamutEmohawk project.

INIT - InitializeObserver -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Observer,

Message you'll send at the beginning of the communication to start observing a player. You need to supply either name or ID of the player to observe. If you are already observing a player, you will stop observing that player and start observing the player specified by this message.

Name (String)

Name of the player you wannt to observe.

Id (String)

The ID of the player you want to observe.

JUMP - Jump -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot,

Causes bot to jump.

DoubleJump (boolean)

If set to True will cause the bot to perform double jump.

Delay (double)

After time specified here, the bot performs second jump of a double jump (if DoubleJump is true). Time is in seconds. If not specified and DoubleJump is true, 0.5 seconds will be used.

Force (double)

Force vector specifying how big the jump should be. Can't be set more than bot JumpZ variable for single jump and 2 * JumpZ variable for doube jump. Default value of JumpZ is 340 ut units (for UT2004). If not specified, JumpZ value will be used. If not specified and DoubleJump is true, 2 * JumpZ value will be used.

KICK - Kick -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Server,

Will kick GameBots Bot from the server.

Id (UnrealId)

Id of the bot to be kicked.

LEAVE - LeaveVehicle -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Bot,

Tries to leave vehicle we are currently driving.

MOVE - Move -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot,

The bot will start moving towards FirstLocation. After reaching it will continue to SecondLocation (no delay). If no SecondLocation specified, the movement will end at FirstLocation point. You can specify some location or object you will be facing during the movement (if none specified, the bot will start looking towards its destination point). Object is specified by UnrealId. Player Ids will work, all NavPoints Ids and Movers. Respawned items should work too, but not all of the items have unique Id, thus item Ids are not recommended.

FirstLocation (Location)

The bot will start moving to this location first. If not specified, the bot won't move (even if SecondLocation is specified).

SecondLocation (Location)

After reaching FirstLocation, the bot will start moving to location specified here. If not specified the movement will quit at FirstLocation point.

FocusTarget (UnrealId)

Here you can specify UnrealId of the object you want to face during movement (typically enemy player you want to shoot at). Player Ids will work, all NavPoints Ids, Movers and some of the items (with unique Id). This attribute is parsed before FocusLocation attribute and if set FocusLocation attribute will be ignored.

FocusLocation (Location)

Here you can specify location you want to face during movement. This attribute is parsed after FocusTarget attribute and will be ignored if FocusTarget is set.

PASSWORD - PasswordReply -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server, Observer,

Send password to the server. For more information see command SETPASS.

Password (String)

The password.

PAUSE - Pause -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server,

Will pause/unpause the game. The game can be paused just if bAllowPause = true in GameBots2004.ini (different settings for bots and server possible).

PauseBots (boolean)

Iif true only bots will be paused – players and spectators will move freely.

PauseAll (boolean)

Everyone in the game will be paused if set to true. To unpause send PAUSE command with PauseAll set to false.

PICK - Pick -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot,

When automatic pickup is disabled for bot (in ini bDisableAutoPickup=true) or if set by CONF {AutoPickupOff True}, use this command to pickup inventory the bot is currently at. Will fail if the bot can't pickup the item for some reason - weaponstay true and already had it before or etc.

Id (UnrealId)

Id of the pickup we want to pick up.

PING - Ping -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server, Observer,

Command for connection detection. Server will return PONG.

ACT - PlayAnimation -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot,

Will trigger some of the native animations.

Name (String)

Name of the animation. Possible animations: gesture_beckon, gesture_cheer, gesture_halt, gesture_point, Gesture_Taunt01, PThrust, AssSmack, ThroatCut, Specific_1, Gesture_Taunt02, Idle_Character02, Idle_Character03, Gesture_Taunt03.

Loop (boolean)

When true the animation will be played in loop. Supported un GameBotsUE2.

QUIT - Quit -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server, Observer,

Will shutdown the connection and potentialy kill and remove the bot from a game (if sent to bot), the same can be achieved just by closing the connection.

READY - Ready -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server, Observer,

Command you should send after server HELLO message. The server will send you game NFO message and INAV info batch messages.

REC - Record -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server,

Server will start recording demo of current game. Command is confirmed by RECSTART message.

FileName (String)

Name of the saved demo file. The file will be located on the server.

REMOVERAY - RemoveRay -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot,

Will remove a ray from auto ray trace specified by Id.

Id (String)

Id of the ray to be removed. If Id = "All" all rays will be removedr.

RESPAWN - Respawn -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server,

Use this to kill bot and force him to respawn, you can specify start location and rotation. Work also for human players and spectators in the game. This command can be issued also by bot on the bot itself (in this case Id attribute is not parsed).

Id (UnrealId)

Id of the bot to be respawned (not used if command sent to bot).

StartLocation (Location)

Where bot respawns. If you want to respawn bot at random, don't specify StartLocation.

StartRotation (Rotation)

Initial rotation of the bot.

ROTATE - Rotate -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot,

Turns the bot by a specified amount.

Amount (int)

Amount in UT units to rotate. May be negative to rotate counter clockwise. This rotation is relatively added to bot current rotation, then the shortest turn to achieve this new rotation will be performed (so the maximum turn you can achive is to turn back by supporting value 32778 or -32778).

Axis (String)

If provided as "Vertical", rotation will be done to Pitch (up/down). Any other value, or not provided, and rotation will be to Yaw (left/right).

MESSAGE - SendMessage -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot,

Send a message to the world or just your team.

Id (UnrealId)

Here we can specify Id of the bot, that will receive this message privately (with "Private:" string at the beginning of the message). Doesn't work for players (but if text bubble enabled, players will see this message above the bot head).

Text (String)

Text to send.

Global (boolean)

If True it is sent to everyone. Otherwise (or if not specified), just your team.

FadeOut (double)

Enables text bubble. Sets how long the bubble should stay (in seconds, counted ~ 12 + FadeOut seconds - dunno why, some UT mechanics?). If -1 the bubble won't be shown.

SETCROUCH - SetCrouch -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Bot,

Will crouch/uncrouch the bot. If crouched you cannot jump. If killed, this will be reset.

Crouch (boolean)

True or false to crouch or unrouch.

SETGAMESPEED - SetGameSpeed -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Server,

Will set speed of the game.

Speed (double)

Can range from 0.1 to 50. 1 is normal game speed. The reasonable speeding up is around 10. The game engine stops catching up at higher values.

SETLOCK - SetLock -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Server,

Will disable new connections to bot server and or control server - depends on parameters. If last ControlServer instance is leaving. ControlServer lock will be canceled.

BotServer (boolean)

If BotConnections should be locked.

ControlServer (boolean)

If ControlConnections (server connections) should be locked.

SETNAME - SetName -- Supported in packages: GameBots2004, Connections: Bot,

Sets the name of the bot.

Name (String)

New name of the bot.

SETPASS - SetPassword -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Server,

Sets the password for Bot and control connections. If the password is set the initiation of GB communication is changed to this: 1) A ---> GB sends HELLO message 2) B <--- user sends READY 3) C ... if the server is protected by pass: 3.a) C1 ---> GB sends PASSWORD {BlockedByIP="ip adress with port of the blocker (195.113.12.3:3001)"} 3.b) C2 <--- user sends password ( PASSWORD {Password pass}) ... if correct 3.c) C3 ---> GB sends PASSWDOK and info batch messages, user can continue normally .... if the password is wrong 3.d) C4 ---> PASSWDWRONG and connection ends Note: If the user knows that server is passworded he can use PASSWORD {Password pass} command instead of READY, and will be checked and sent info batch messages immediately

Password (String)

Holds the password.

SETROUTE - SetRoute -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot,

Set whether you want to draw blue lines between supported locations in the game. You need to enable this in the HUD by pressing ALT + R. (Works in UnrealRuntime2 for now). The lines are drawn between neighbouring points. First is point 0.

Erase (boolean)

If true will erase previously set points.

P0 (Location)

Location point.

P1 (Location)

Location point.

P2 (Location)

Location point.

P3 (Location)

Location point.

P4 (Location)

Location point.

P5 (Location)

Location point.

P6 (Location)

Location point.

P7 (Location)

Location point.

P8 (Location)

Location point.

P9 (Location)

Location point.

P10 (Location)

Location point.

P11 (Location)

Location point.

P12 (Location)

Location point.

P13 (Location)

Location point.

P14 (Location)

Location point.

P15 (Location)

Location point.

P16 (Location)

Location point.

P17 (Location)

Location point.

P18 (Location)

Location point.

P19 (Location)

Location point.

P20 (Location)

Location point.

P21 (Location)

Location point.

P22 (Location)

Location point.

P23 (Location)

Location point.

P24 (Location)

Location point.

P25 (Location)

Location point.

P26 (Location)

Location point.

P27 (Location)

Location point.

P28 (Location)

Location point.

P29 (Location)

Location point.

P30 (Location)

Location point.

P31 (Location)

Location point.

SETSKIN - SetSkin -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot,

Sets the bot current skin through Skin attribute (e.g. SETSKIN {Skin "HumanMaleA.MercMaleA"}). Find all packages and skins through unrealEd (Actor browser, search in UT2004/Animations folder). Supported bot skins are Aliens (Aliens.), Bots (Bot.), human males (HumanMaleA.), human females (HumanFemaleA. ), juggernauts (Jugg.). Skaarj skins are not supported at the time being. In UnrealRuntime we use different attributes to set up textures of the bots.

Skin (String)

Holds the desired skin.

URHair (String)

A number representing hair. String type is desired here. Parsed only in UnrealRuntime.

URClothes (String)

A number representing clothes. String type is desired here. Parsed only in UnrealRuntime.

URSkin (String)

A number representing skin. String type is desired here. Parsed only in UnrealRuntime.

SETWALK - SetWalk -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot,

Set whether you are walking or running (default is run).

Walk (boolean)

True or false to enable/disable bot walking.

WalkAnim (String)

Change name of walking animation. Supported in UE2.

RunAnim (String)

Change name of running animation. Supported in UE2

SHOOT - Shoot -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Bot,

Start firing your weapon (until receives STOPSHOOT command, or run out of ammo or die).

Location (Location)

Location you want to shoot at.

Target (UnrealId)

The unique Id of your target. If you specify a target, and it is visible to you, the server will provide aim correction and target leading for you. If not you just shoot at the location specified.

Alt (boolean)

If you send True to this you will alt fire instead of normal fire. For normal fire you don't need to send this argument at all.

SPAWNACTOR - SpawnActor -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Server,

Will spawn an actor in the game specified by Type (holds the class of the actor). Be carefull with what you spawn and where you spawn it. Possible use - for some additional inventory spawns.

Location (Location)

Location where the actor will be spawned.

Rotation (Rotation)

Initial rotation of the actor.

Type (String)

Holds the desired actor class (e.g. xWeapons.FlakCannonPickup).

STARTPLRS - StartPlayers -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Server,

Will start to export IPLR messages regularly (like synchronous batch). Can be used for continuous visualization of players moving around the map. There are three categories (see below). The default values for all category is true, that means that without attributes all the categories will be exported.

Humans (boolean)

All human players will be exported.

GBBots (boolean)

All GameBots bots will be exported.

UnrealBots (boolean)

All UnrealBots will be exported.

STOP - Stop -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot,

Stop all movement.

STOPREC - StopRecord -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot, Server,

Will stop recording a demo. Is confirmed by RECEND message.

STOPSHOOT - StopShooting -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Bot,

Stop firing your weapon.

THROW - Throw -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, Connections: Bot,

Without any parameters. Will drop your current weapon (if it is possible) and will change to best weapon available. If done successfully, message THROWN will come right away.

TRACE - Trace -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot,

Will send a ray from specified location to specified destination, responds with TRC message. TRACE uses Trace function - slower then FastTrace function, but provides more information about collision.

Id (String)

Message Id made up by you and echoed in response so you can match up response with query.

From (Location)

Origin point of the ray. If you won't support From attribute, current bot location will be taken as From.

To (Location)

Target point of the ray.

TraceActors (boolean)

When true it means that all actors will be traced – for example players, bots, monsters, items etc. in a game. With TraceActors false we trace just level geometry.

TURNTO - TurnTo -- Supported in packages: GameBots2004, GBScenario, GameBotsAnim, GameBotsUE2, GBEmohawk, Connections: Bot,

Specify a point, rotation value or object to turn towards.

Target (UnrealId)

The unique id of a player/object/nav point/whatever that you want to face. Must be visible.

Rotation (Rotation)

Absolute rotation you want to spin to. Must be provided as comma delimited ("0,50000,0") and should be in absolute terms and in UT units (2pi = 65535 units). Used only if no target provided. Rotation is parsed: First pitch (up, down), then yaw (left, right), the roll (no effect here, however it is an equivalent of doing a cartwheel).

Location (Location)

Location you want to face. Normal rules for location. Only used if no Target or Rotation.