Scripting/Squirrel/Functions/Sphere.Owner

From Vice City Multiplayer
Revision as of 19:57, 13 March 2016 by Decent 946 (talk | contribs) (Created page with "allows you to check Sphere's Owner. where Owner stands for "creater of Sphere" == Syntax == <pre>Sphere.Color</pre> == Example == <source lang=D> function onSphereEntered...")
(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

allows you to check Sphere's Owner. where Owner stands for "creater of Sphere"

Syntax

Sphere.Color


Example

function onSphereEntered( player, Sphere )
{
  MessagePlayer( "Sphere's Owner: "+ Sphere.Owner, player );
}

Notes

[onSphereEntered] was used in this example..