supportInfo – Talk

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
(updated with some basic info on the commands.)
Line 1: Line 1:
Here is some possibly interesting unfamiliar output generated by this command :  
==Locations==
Here are some interesting new commands (in 1.08 hotfix) found using this command. Locations are the markings on the game map for things like town names, peak heights of hills, forest type icons, lighthouses, etc. This info is just my findings, nothing official or thoroughly tested:


*b:LOCATION settype STRING
*b:LOCATION setType STRING
*b:LOCATION setvariable ARRAY
: Can be used to change the type of location. Types are defined in CfgLocationTypes. Eg: "RockArea","VegetationVineyard".
*b:LOCATION attachobject OBJECT
*b:LOCATION setVariable ARRAY
*b:LOCATION setimportance SCALAR
: Same as [[setVariable]].
*b:CONTROL drawlocation LOCATION
*b:LOCATION attachObject OBJECT
*b:LOCATION setname STRING
: Attach location to an object, it's location will automatically update on the map. This does not seem to affect the locations position. Attach to [[objNull]] to detach from an object.
*b:LOCATION getvariable STRING
*b:LOCATION setImportance SCALAR
: Importance probably controls which location shall be drawn on the map in case of overlap. Values defined in CfgLocationTypes in the config range from 1 (not-important) to 7 (important).
*b:CONTROL drawLocation LOCATION
: not tested
*b:LOCATION setName STRING
: similar to [[setVehicleVarName]]. The use of these commands is beyond me.
*b:LOCATION getVariable STRING
: same as [[getVariable]]
*b:ARRAY in LOCATION
*b:ARRAY in LOCATION
*b:LOCATION setsize ARRAY
: check if position is within location's area. Area is based on it's attached position. A non-trigger spatial test!
*b:LOCATION settext STRING
*b:LOCATION setSize ARRAY
*b:LOCATION setdirection SCALAR
: set the location's area size, [x,y]. Map visual representation of location does not change.
*b:LOCATION setposition ARRAY
*b:LOCATION setText STRING
*b:LOCATION setrectangular BOOL
: set's the triggers text. Used for text based location types.
*b:LOCATION setside SIDE
*b:LOCATION setDirection SCALAR
*u:nearestlocations ARRAY
: equivalent to [[setMarkerDir]]. I assume it rotates the location area. Map visual representation of location does not rotate.
*b:LOCATION setPosition ARRAY
: similar to [[setPos]]. Locations seem to have a 3D position.
*b:LOCATION setRectangular BOOL
: presumably locations are ellipses if they are not rectangular. No effect on map visuals.
*b:LOCATION setSide SIDE
: No idea what impact this has. MP testing required.
*u:nearestLocations ARRAY
: return nearest locations to a position array. Syntax is ''nearestLocations [positionArray,[locationType,locationType2,...],searchRadius]''
*u:rectangular LOCATION
*u:rectangular LOCATION
: return location's shape
*u:type LOCATION
*u:type LOCATION
*u:locationposition LOCATION
: returns location's type.
*u:locationPosition LOCATION
: return location's actual location, works with attached object.
*u:name LOCATION
*u:name LOCATION
*u:attachedobject LOCATION
: return location's name.
*u:attachedObject LOCATION
: return the object a location is attached to.
*u:size LOCATION
*u:size LOCATION
: return location's size array [x,y]
*u:text LOCATION
*u:text LOCATION
*u:createlocation ARRAY
: return location's text.
*u:deletelocation LOCATION
*u:createLocation ARRAY
: create a new location. returns the location. syntax is ''_myLocation = createLocation [locationType,positionArray,sizeX,sizeY]''
*u:deleteLocation LOCATION
: delete a location.
*u:side LOCATION
*u:side LOCATION
*u:nearestlocation ARRAY
: return location's side
*u:nearestLocation ARRAY
: return the nearest location to a given position array of a given type. syntax = nearestLocation [positionArray,locationType]
*u:importance LOCATION
*u:importance LOCATION
: return location's importance value.
*u:position LOCATION
*u:position LOCATION
The commands appear to work in ArmA 1.08, but their usefulness is unknown. --[[User:Ceeeb|Ceeeb]] 03:11, 22 November 2007 (CET)
: return location's position. If location is attached to an object, the returned value is the location's position if it were not attached to an object.
 
This info needs a proper home. --[[User:Ceeeb|Ceeeb]] 11:07, 23 November 2007 (CET)

Revision as of 12:07, 23 November 2007

Locations

Here are some interesting new commands (in 1.08 hotfix) found using this command. Locations are the markings on the game map for things like town names, peak heights of hills, forest type icons, lighthouses, etc. This info is just my findings, nothing official or thoroughly tested:

  • b:LOCATION setType STRING
Can be used to change the type of location. Types are defined in CfgLocationTypes. Eg: "RockArea","VegetationVineyard".
  • b:LOCATION setVariable ARRAY
Same as setVariable.
  • b:LOCATION attachObject OBJECT
Attach location to an object, it's location will automatically update on the map. This does not seem to affect the locations position. Attach to objNull to detach from an object.
  • b:LOCATION setImportance SCALAR
Importance probably controls which location shall be drawn on the map in case of overlap. Values defined in CfgLocationTypes in the config range from 1 (not-important) to 7 (important).
  • b:CONTROL drawLocation LOCATION
not tested
  • b:LOCATION setName STRING
similar to setVehicleVarName. The use of these commands is beyond me.
  • b:LOCATION getVariable STRING
same as getVariable
  • b:ARRAY in LOCATION
check if position is within location's area. Area is based on it's attached position. A non-trigger spatial test!
  • b:LOCATION setSize ARRAY
set the location's area size, [x,y]. Map visual representation of location does not change.
  • b:LOCATION setText STRING
set's the triggers text. Used for text based location types.
  • b:LOCATION setDirection SCALAR
equivalent to setMarkerDir. I assume it rotates the location area. Map visual representation of location does not rotate.
  • b:LOCATION setPosition ARRAY
similar to setPos. Locations seem to have a 3D position.
  • b:LOCATION setRectangular BOOL
presumably locations are ellipses if they are not rectangular. No effect on map visuals.
  • b:LOCATION setSide SIDE
No idea what impact this has. MP testing required.
  • u:nearestLocations ARRAY
return nearest locations to a position array. Syntax is nearestLocations [positionArray,[locationType,locationType2,...],searchRadius]
  • u:rectangular LOCATION
return location's shape
  • u:type LOCATION
returns location's type.
  • u:locationPosition LOCATION
return location's actual location, works with attached object.
  • u:name LOCATION
return location's name.
  • u:attachedObject LOCATION
return the object a location is attached to.
  • u:size LOCATION
return location's size array [x,y]
  • u:text LOCATION
return location's text.
  • u:createLocation ARRAY
create a new location. returns the location. syntax is _myLocation = createLocation [locationType,positionArray,sizeX,sizeY]
  • u:deleteLocation LOCATION
delete a location.
  • u:side LOCATION
return location's side
  • u:nearestLocation ARRAY
return the nearest location to a given position array of a given type. syntax = nearestLocation [positionArray,locationType]
  • u:importance LOCATION
return location's importance value.
  • u:position LOCATION
return location's position. If location is attached to an object, the returned value is the location's position if it were not attached to an object.

This info needs a proper home. --Ceeeb 11:07, 23 November 2007 (CET)