AR/getSoundMaxDistance

From Multi Theft Auto: Wiki
Revision as of 03:31, 6 May 2013 by Tete (talk | contribs) (Created page with "__NOTOC__ {{Client function}} Gets a custom sound max distance at which the sound stops. ==Syntax== <syntaxhighlight lang="lua">int getSoundMaxDistance ( element sound )</syntaxhighlight> ===Requ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Gets a custom sound max distance at which the sound stops.

Syntax

int getSoundMaxDistance ( element sound )

Required Arguments

Returns

Returns an integer of the max distance, false if invalid arguments where passed.

Example

Click to collapse [-]
Client
local sound = playSound3D("sounds/song.mp3", 373.14, -125.21, 1001, true)

function getmaxdistanceFunc()
  outputChatBox("Max distance: "..getSoundMaxDistance(sound))
end
addCommandHandler("getmaxdistance", getmaxdistanceFunc)

أنظر أيضاً