SetPickupVisibleForPlayers: Difference between revisions

From Onset Developer Wiki
No edit summary
No edit summary
Line 1: Line 1:
{{Info|Function|Server|1.0}}
{{Info|Function|Server|1.0}}
'''This function is now obsolete.'''


{{FuncDescription|Set pickup visible only for a certain array of players}}
{{FuncDescription|Set pickup visible only for a certain array of players}}

Revision as of 15:00, 16 November 2019

SetPickupVisibleForPlayers

Type: Function
Context: Server
Introduced: v1.0

This function is now obsolete.

Description

Set pickup visible only for a certain array of players

Syntax

SetPickupVisibleForPlayers(Pickup, Players)

Parameters

  • Pickup
    ID of the pickup
  • Players
    Player list in a form of an array

Return Value

  • Returns true on success.

Example

function OnPackageStart()
   local pickup = CreatePickup(2, 1000, 5330, 1503)

   local players = {}
   for _, v in pairs(GetAllPlayers()) do
      --Only players who's property tag of "team" has been set to "zombie"
      if GetPlayerPropertyValue(v, "team") == "zombie" then
         table.insert(players, v)
      end
   end
   
   SetPickupVisibleForPlayers(pickup, players)   

end
AddEvent('OnPackageStart', OnPackageStart)


See also

__EDIT_ME__