Difference between revisions of "0164"

From GTAMods Wiki
Jump to navigation Jump to search
(Created page with '{{OpCode | ini = 0164=1, %1d% | description = Disables a marker. | p1 = Any existing marker handle. | game = GTA 3, Vice City, San Andreas }} …')
 
(page updates)
 
(7 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{OpCode
+
{{Icon|t}} '''REMOVE_BLIP'''
| ini        = 0164=1, %1d%
+
<hr />
| description = Disables a marker.
+
'''Description'''
| p1          = Any existing marker handle.
+
: Removes the specified [[blip]]
| game        = [[GTA 3]], [[Vice City]], [[San Andreas]]
+
'''Syntax'''
}}
+
: 0164: disable_marker [''blip handle'']
 +
: Marker.Disable( [''blip handle''] )
 +
'''Parameter'''
 +
: [''blip handle'']
 +
:: The handle of the blip
 +
'''Native analog'''
 +
: [[REMOVE_BLIP]]
  
This opcode disables a marker.
+
This opcode removes the specified blip created by any of the opcodes listed [[Blip#Mission script|here]] and any properties associated to it when it was created like an arrow or a sphere.
  
==Sanny Builder Example==
+
== Keywords ==
 +
marker, blip, remove, disable
  
<source lang="scm">0164: disable_marker $MARKER_CATALINA</source>
+
[[Category:OpCodes]]
 
 
==Keywords==
 
marker, disable
 

Latest revision as of 03:53, 6 January 2015

GTA III Vice City San Andreas REMOVE_BLIP


Description

Removes the specified blip

Syntax

0164: disable_marker [blip handle]
Marker.Disable( [blip handle] )

Parameter

[blip handle]
The handle of the blip

Native analog

REMOVE_BLIP

This opcode removes the specified blip created by any of the opcodes listed here and any properties associated to it when it was created like an arrow or a sphere.

Keywords

marker, blip, remove, disable