GetSoundMaxDistance: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(created)
 
Line 10: Line 10:


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


==Example==  
==Example==  

Revision as of 17:26, 29 March 2009

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)

See Also