Blip.Size

From Liberty Unleashed Wiki
Revision as of 00:08, 29 September 2010 by Juppi (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
Home   |   Squirrel Scripting   |   Server Functions   |   Server Events   |   Client Functions   |   Client Events

This Blip class member returns or sets the size (scale) of the radar blip.

Syntax

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

  1. int Blip.Size
  1. Blip.Size = int size

Arguments

  • size - The size of the blip

Example 1. Returning the value

This command returns the scale of blip ID 0.

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

Notes

The functions FindBlip, 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 command sets the scale of blip ID 0 to 4 when someone types '/setsize'.

  1.  
  2. function onPlayerCommand( pPlayer, szCommand, szText )
  3. {
  4. if ( szCommand == "setsize" )
  5. {
  6. local pBlip = FindBlip( 0 );
  7. if ( pBlip ) pBlip.Size = 4;
  8. }
  9. return 1;
  10. }
  11.  

Notes

The function FindBlip and event onPlayerCommand were used in in this example. More info about them in the corresponding pages.

Related Functions

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox