IsTransferBoxActive: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (Fixed example)
No edit summary
Line 15: Line 15:
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
resourceRoot = getResourceRootElement(getThisResource())
resourceRoot = getResourceRootElement(getThisResource())
function OnClientResrcStart(resourcename)
function checkTransfer()
CheckTransfere()
end
function CheckTransfere()
if isTransferBoxActive() == true then
if isTransferBoxActive() == true then
setTimer(CheckTransfere,2000,1) -- Check again after 2 seconds
setTimer(checkTransfer,2000,1) -- Check again after 2 seconds
else fadeCamera(true)  -- TransferBox isnt active, fade in camera
else  
fadeCamera(true)  -- TransferBox isnt active, fade in camera
end
end
end
end
addEventHandler("onClientResourceStart",resourceRoot,OnClientResrcStart)
addEventHandler("resourceStart",resourceRoot,checkTransfer)
</syntaxhighlight>
</syntaxhighlight>



Revision as of 12:45, 17 February 2008

This function returns whether the transferbox is visible or not.

Syntax

bool isTransferBoxActive ()

Returns

Returns true if the transferbox is visible, false if not.

Example

This will camera fade in, when resource transfere will be finished.

resourceRoot = getResourceRootElement(getThisResource())
function checkTransfer()
	if isTransferBoxActive() == true then
		setTimer(checkTransfer,2000,1) -- Check again after 2 seconds
	else 
		fadeCamera(true)  -- TransferBox isnt active, fade in camera
	end
end
addEventHandler("resourceStart",resourceRoot,checkTransfer)

See Also

General functions

Browsers

Buttons

Checkboxes

Comboboxes

Edit Boxes

Gridlists

Memos

Progressbars

Radio Buttons

Scrollbars

Scrollpanes

Static Images

Tab Panels

Tabs

Text Labels

Windows