GetPickupRespawnInterval: Difference between revisions
Jump to navigation
Jump to search
(New page: __NOTOC__ {{Server function}} Returns the time it takes before a pickup respawns after a player picked it up. The time is specified in milliseconds. ==Syntax== <syntaxhighlight lang="lua"> int getPickupRe...) |
m (Needs example) |
||
Line 15: | Line 15: | ||
==Example== | ==Example== | ||
<syntaxhighlight lang="lua"> | |||
--TODO | |||
</syntaxhighlight> | |||
==See Also== | ==See Also== | ||
{{Pickup functions}} | {{Pickup functions}} | ||
[[Category:Needs Example]] |
Revision as of 07:20, 19 June 2009
Returns the time it takes before a pickup respawns after a player picked it up. The time is specified in milliseconds.
Syntax
int getPickupRespawnInterval ( pickup thePickup )
Required Arguments
- thePickup: the pickup you want the respawn time of
Returns
Returns the respawn time of the pickup if successful, false in case of failure.
Example
--TODO