Difference between revisions of "0164"

From GTAMods Wiki
Jump to navigation Jump to search
(this disables any markers/blips)
(page updates)
 
Line 1: Line 1:
__NOTOC__
+
{{Icon|t}} '''REMOVE_BLIP'''
{{OpCode
+
<hr />
| ini        = 0164=1, %1d%
+
'''Description'''
| description = Disables the blip
+
: Removes the specified [[blip]]
| p1          = Blip handle
+
'''Syntax'''
| game        = [[GTA 3]], [[Vice City]], [[San Andreas]]
+
: 0164: disable_marker [''blip handle'']
| native      = [[REMOVE_BLIP]]
+
: Marker.Disable( [''blip handle''] )
}}
+
'''Parameter'''
This opcode disables any blips, created by [[018A]], etc., and including arrows created using [[0186]], [[0187]], [[0188]], etc.
+
: [''blip handle'']
 +
:: The handle of the blip
 +
'''Native analog'''
 +
: [[REMOVE_BLIP]]
  
==Sanny Builder example==
+
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.
  
<source lang="scm">0164: disable_marker 0@</source>
+
== Keywords ==
 +
marker, blip, remove, disable
  
==Note==
+
[[Category:OpCodes]]
 
 
In Sanny Builder, this opcode is equivalent to the command '''Marker.Disable'''.
 
Example: <source lang="scm">Marker.Disable(0@)</source>
 
 
 
==See also==
 
*[[0186]] &ndash; Creates a marker above a car.
 
*[[0187]] &ndash; Creates a marker above an actor.
 
*[[0188]] &ndash; Creates a marker above an object.
 
*[[018A]] &ndash; Creates a map blip.
 
 
 
==Keywords==
 
marker, blip, remove, 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