Scripting/Squirrel/Functions/Sphere.ID: Difference between revisions
Jump to navigation
Jump to search
This wiki is using an old backup from 2020
Some information may be old/missing
Decent 946 (talk | contribs) (Created page with "allows you to check Sphere's color in RGB == Syntax == <pre>Sphere.ID</pre> == Example == <source lang=D> function onSphereEntered( player, Sphere ) { MessagePlayer( "...") |
Decent 946 (talk | contribs) No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
allows you to check Sphere's | allows you to check Sphere's ID. | ||
== Syntax == | == Syntax == | ||
Line 15: | Line 15: | ||
</source> | </source> | ||
=== Notes === | === Notes === | ||
Call [[onSphereEntered]] was used in this example.. | |||
== Related Functions == | |||
{{Scripting/Squirrel/Functions/Sphere_Functions}} |
Latest revision as of 17:00, 15 March 2016
allows you to check Sphere's ID.
Syntax
Sphere.ID
Example
function onSphereEntered( player, Sphere )
{
MessagePlayer( "you have entered in a Sphere, Sphere's ID "+ Sphere.ID, player );
}
Notes
Call onSphereEntered was used in this example..