πŸ’‘Events

This are some server side events that can be listned in other scripts.

w_collectables:Server:getPickup

  • Description: Event triggered when a player is near a pickup and collects it.

  • Parameters:

    • coords: Vector3 - The coordinates of the pickup collected by the player.

  • Example Usage:

    AddEventHandler('w_collectables:Server:getPickup', function(coords)
        -- Your code logic here
    end)

Last updated