Squirrel/Server/Functions/Blips/DisplayType

From Liberty Unleashed Wiki
(Difference between revisions)
Jump to: navigation, search
(Example 1. Returning the value)
Line 13: Line 13:
 
== Example 1. Returning the value ==
 
== Example 1. Returning the value ==
  
{{Squirrel/NeedsExample}}
 
 
<code lang="squirrel">
 
<code lang="squirrel">
-- todo
+
function onPlayerCommand( pPlayer, szCommand, szText )
 +
{
 +
else if ( szCommand == "type" )
 +
{
 +
local pBlip = FindBlip( 0 );
 +
if ( pBlip ) MessagePlayer( "Blip ID 0 is type ID - " + pBlip.DisplayType, pPlayer );
 +
}
 +
}
 
</code>
 
</code>
  
 
=== Notes ===
 
=== Notes ===
  
Example notes and used functions here.
+
The function [[Squirrel/Server/Functions/Messages/MessagePlayer|MessagePlayer]] and event [[Squirrel/Server/Events/Player/onPlayerCommand|onPlayerCommand]] were used in in this example. More info about them in the corresponding pages.
  
 
== Example 2. Setting a new value ==
 
== Example 2. Setting a new value ==

Revision as of 19:11, 28 September 2010

Home   |   Squirrel Scripting   |   Server Functions   |   Server Events   |   Client Functions   |   Client Events

This Blip class member returns or sets the display type of the radar blip.

Syntax

You can either return or set a new value using this member:

  1. int Blip.DisplayType
  1. Blip.DisplayType = int newtype

Arguments

  • newtype - The new type of the blip. For reference, check here.

Example 1. Returning the value

  1.  
  2. function onPlayerCommand( pPlayer, szCommand, szText )
  3. {
  4. else if ( szCommand == "type" )
  5. {
  6. local pBlip = FindBlip( 0 );
  7. if ( pBlip ) MessagePlayer( "Blip ID 0 is type ID - " + pBlip.DisplayType, pPlayer );
  8. }
  9. }
  10.  

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

This function needs an example. You can help us complete the wiki by writing one, or maybe even more :o
  1.  
  2. -- todo
  3.  

Notes

Example notes and used functions here.

Related Functions

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox