OnClientFileDownloadComplete

From Multi Theft Auto: Wiki
Jump to navigation Jump to search

my test example until I get a chance to document properly

function onStart ( )
	outputChatBox ( "downloading test.mp3" )
	downloadFile ( "test.mp3" )
end
addEventHandler ( "onClientResourceStart", getRootElement(), onStart )

function onDownloadFinish ( file, success )
	if ( success ) then
		if ( file == "test.mp3" ) then
			outputChatBox ( "test.mp3 downloaded successfully" )
			playSound ( "test.mp3" )
			outputChatBox ( "playing test.mp3" )
		end
	else
		if ( file == "test.mp3" ) then
			outputChatBox ( "test.mp3 failed to download" )
		end
	end
end
addEventHandler ( "onFileDownloadComplete", getRootElement(), onDownloadFinish )

See Also

Other client events