CRecipientFilter:AddPVS
Description
Adds all players that are in the same PVS(Potential Visibility Set) as this position.
Arguments
Example
Adds players that are visible from the origin of the map to a recipient filter, then sends them a message.
function SendMessage()
local filter = RecipientFilter()
filter:AddPVS( Vector( 0, 0, 0 ) )
net.Start( "message" )
net.Send( filter )
end
Output: Sends a net message to every player visible from 0,0,0