Squirrel/Server/Functions/Blips/Pos
From Liberty Unleashed Wiki
(Difference between revisions)
(→Example 1. Returning the value) |
(→Example 2. Setting a new value) |
||
Line 30: | Line 30: | ||
== Example 2. Setting a new value == | == Example 2. Setting a new value == | ||
− | |||
<code lang="squirrel"> | <code lang="squirrel"> | ||
− | + | function onPlayerCommand( pPlayer, szCommand, szText ) | |
+ | { | ||
+ | if ( szCommand == "pos2" ) | ||
+ | { | ||
+ | local pBlip = FindBlip( 0 ); | ||
+ | if ( pBlip ) pBlip.Pos = pPlayer.Pos; | ||
+ | } | ||
+ | } | ||
</code> | </code> | ||
=== Notes === | === Notes === | ||
− | + | The event [[Squirrel/Server/Events/Player/onPlayerCommand|onPlayerCommand]] was used in in this example. More info about this in the corresponding page. | |
== Related Functions == | == Related Functions == | ||
{{Squirrel/Server/Functions/Blips}} | {{Squirrel/Server/Functions/Blips}} |
Revision as of 18:29, 28 September 2010
This Blip class member returns or sets the position of the blip on the radar.
Syntax
You can either return or set a new value using this member:
Vector Blip.Pos
Blip.Pos = Vector newPos
Arguments
- newPos - A vector representing the new position of the blip.
Example 1. Returning the value
function onPlayerCommand( pPlayer, szCommand, szText ) { else if ( szCommand == "pos" ) { local pBlip = FindBlip( 0 ); if ( pBlip ) MessagePlayer( "Blip ID 0 is at pos - " + pBlip.Pos, pPlayer ); } }
Notes
The function MessagePlayer and event onPlayerCommand were used in in this example. More info about them in the corresponding pages.
Example 2. Setting a new value
function onPlayerCommand( pPlayer, szCommand, szText ) { if ( szCommand == "pos2" ) { local pBlip = FindBlip( 0 ); if ( pBlip ) pBlip.Pos = pPlayer.Pos; } }
Notes
The event onPlayerCommand was used in in this example. More info about this in the corresponding page.