OnSphereEntered

From Vice City Multiplayer
Revision as of 10:17, 9 March 2016 by KingOfVC (talk | contribs) (Created page with "This is called when a player enters any sphere. == Syntax == function OnSphereEntered( player, sphere ) == Example == <source lang="squirrel"> function OnSphereEntered( pla...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Caution icon
This wiki is using an old backup from 2020
Some information may be old/missing

This is called when a player enters any sphere.

Syntax

function OnSphereEntered( player, sphere )

Example

function OnSphereEntered( player, sphere )
{
   MessagePlayer("You're entered a sphere! ID " + sphere.ID , player );
}