setPickupRespawnInterval | Multi Theft Auto: Wiki Skip to content

setPickupRespawnInterval

Client-side
Server-side
Shared

Manual Review Required

Please finish this page using the corresponding Old Wiki article. Go to Contribution guidelines for more information.


Sets the time it takes for a pickup to respawn after a player picked it up.

Syntax

bool setPickupRespawnInterval ( pickup thePickup, int ms )
Required Arguments
  • thePickup: the pickup to set the respawn time of
  • ms: the new respawn time in ms

Returns

  • bool: value

Returns true if the new respawn time was set successfully, false otherwise.

Code Examples

shared

This example adds 3000ms to the current pickup respawn time.

addEventHandler("onPickUpHit",root,function(player)
interval = getPickupRespawnInterval(source)
setPickupRespawnInterval(source,interval + 3000)
outputChatBox("That pickup isn't going to be there until "..tostring(interval).." is done.",player)
end)