Squirrel/Server/Functions/Blips/Size

From Liberty Unleashed Wiki
(Difference between revisions)
Jump to: navigation, search
(Notes)
 
(One intermediate revision by one user not shown)
Line 12: Line 12:
  
 
== Example 1. Returning the value ==
 
== Example 1. Returning the value ==
 +
 +
This command returns the scale of blip ID 0.
  
 
<code lang="squirrel">
 
<code lang="squirrel">
 
function onPlayerCommand( pPlayer, szCommand, szText )
 
function onPlayerCommand( pPlayer, szCommand, szText )
 
{
 
{
if ( szCommand == "size" )
+
    if ( szCommand == "size" )
{
+
    {
local pBlip = FindBlip( 0 );
+
          local pBlip = FindBlip( 0 );
if ( pBlip ) MessagePlayer( "Blip ID 0 size is - " + pBlip.Size, pPlayer );
+
          if ( pBlip ) MessagePlayer( "Blip ID 0 size is - " + pBlip.Size, pPlayer );
}
+
    }
 +
   
 +
    return 1;
 
}
 
}
 
</code>
 
</code>
Line 26: Line 30:
 
=== Notes ===
 
=== Notes ===
  
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.
+
The functions [[Squirrel/Server/Functions/Blips/FindBlip|FindBlip]], [[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 ==
  
{{Squirrel/NeedsExample}}
+
This command sets the scale of blip ID 0 to 4 when someone types '/setsize'.
 +
 
 
<code lang="squirrel">
 
<code lang="squirrel">
-- todo
+
function onPlayerCommand( pPlayer, szCommand, szText )
 +
{
 +
    if ( szCommand == "setsize" )
 +
    {
 +
          local pBlip = FindBlip( 0 );
 +
          if ( pBlip ) pBlip.Size = 4;
 +
    }
 +
   
 +
    return 1;
 +
}
 
</code>
 
</code>
  
 
=== Notes ===
 
=== Notes ===
  
Example notes and used functions here.
+
The function [[Squirrel/Server/Functions/Blips/FindBlip|FindBlip]] and event [[Squirrel/Server/Events/Player/onPlayerCommand|onPlayerCommand]] were used in in this example. More info about them in the corresponding pages.
  
 
== Related Functions ==
 
== Related Functions ==
  
 
{{Squirrel/Server/Functions/Blips}}
 
{{Squirrel/Server/Functions/Blips}}

Latest revision as of 00:08, 29 September 2010

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.

[edit] Syntax

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

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

[edit] Arguments

  • size - The size of the blip

[edit] 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.  

[edit] Notes

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

[edit] 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.  

[edit] Notes

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

[edit] Related Functions

Personal tools
Namespaces

Variants
Actions
Navigation
scripting
Toolbox