Difference between revisions of "0187"

From GTAMods Wiki
Jump to navigation Jump to search
m
 
(3 intermediate revisions by one other user not shown)
Line 1: Line 1:
 
[[File:0187.jpg|thumb|0187 in action in Vice City]]
 
[[File:0187.jpg|thumb|0187 in action in Vice City]]
{{OpCode
+
{{Icon|trilogy}} '''ADD_BLIP_FOR_CHAR'''
| ini        = 0187=2,{{Hint|%2d%|parameter 2: blip handle}} {{Hint|%1d%|parameter 1: character handle}}
+
<hr />
| description = Creates a blip and an arrow on the character
+
'''Description'''
| p1          = Existing character handle
+
: Adds a [[blip]] and a marker to the character
| p2          = Blip handle
+
'''Syntax'''
| game        = [[GTA 3]], [[Vice City]], [[San Andreas]]
+
: 0187: [''var''] = create_marker_above_actor [''char handle'']
}}
+
: Marker.CreateAboveActor( [''var''], [''char handle''] )
This opcode creates a square blip denoting the location of the character and an arrow above the character. In GTA III the arrow would be blue, in Vice City it would be pink, and in San Andreas it would be red. The default size of the blip (usually set by opcode [[0168]]) is 3. The blip and arrow can be removed using opcode [[0164]]. Note that the parameters are swapped.
+
'''Parameter'''
[[Sanny Builder]] example:<source lang="scm">0187: 1@ = create_marker_above_actor 0@</source>
+
: [''char handle'']
 +
:: The handle of the character
 +
: [''var'']
 +
:: Variable to store the handle of the blip
  
==Notes==
+
This opcode adds a square blip in the radar denoting the location of the character and a marker above the character. In GTA III the arrow is blue, in Vice City it is pink, and in San Andreas it is red. The opcode is almost equivalent to [[0162]] but the properties of the blip are preset. The default properties of the blip, which can be changed using other opcodes, are:
The above format is more commonly used. The actual format of this opcode is in order:<br>
+
* [[0165|Color]]: 1 (green) in GTA III and 4 (yellow) in Vice City
<code>0187=2,%1d% %2d%</code><br>
+
* [[0168|Scale]]: 3
The format to use depends on which INI file you use.
+
* [[018B|Display]]: 3 (both blip and marker)
 +
Both the blip and marker can be removed using opcode [[0164]].
  
In Sanny Builder, this opcode is equivalent to the command '''Marker.CreateAboveActor'''.
+
== Keywords ==
Example: <source lang="scm">Marker.CreateAboveActor(1@, 0@)</source>
 
 
 
==Keywords==
 
 
create, set, marker, blip, arrow, actor, ped, character
 
create, set, marker, blip, arrow, actor, ped, character
  
==See also==
+
[[Category:OpCodes]]
*[[0186]] - For vehicles
 
*[[0188]] - For objects
 

Latest revision as of 00:16, 20 November 2016

0187 in action in Vice City

GTA III Vice City San Andreas ADD_BLIP_FOR_CHAR


Description

Adds a blip and a marker to the character

Syntax

0187: [var] = create_marker_above_actor [char handle]
Marker.CreateAboveActor( [var], [char handle] )

Parameter

[char handle]
The handle of the character
[var]
Variable to store the handle of the blip

This opcode adds a square blip in the radar denoting the location of the character and a marker above the character. In GTA III the arrow is blue, in Vice City it is pink, and in San Andreas it is red. The opcode is almost equivalent to 0162 but the properties of the blip are preset. The default properties of the blip, which can be changed using other opcodes, are:

  • Color: 1 (green) in GTA III and 4 (yellow) in Vice City
  • Scale: 3
  • Display: 3 (both blip and marker)

Both the blip and marker can be removed using opcode 0164.

Keywords

create, set, marker, blip, arrow, actor, ped, character