Scripting/Squirrel/Functions/Player.IsOnRadar

From Vice City Multiplayer
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing

This function will set a user visible or invisible on radar.

Syntax

player.IsOnRadar = toggle

Arguments

  • bool toggle - A boolean value representing either visible ( true ) or invisible on radar ( false )

Example

function onPlayerCommand( player, cmd, text )
{
    if( cmd == "hide" )
    {
        player.IsOnRadar = !player.IsOnRadar;
        if( player.IsOnRadar ) return MessagePlayer( "* You are visible on radar!", player );
        else if( !player.IsOnRadar ) return MessagePlayer( "* You are invisible on radar!", player );
    }
}

Related Functions

Player Game Functions

These functions exist for compatibility with the R2 Squirrel server.