IsTransferBoxActive: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
m (Example tweak)
Line 15: Line 15:
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
function OnClientResrcStart(resourcename)
function OnClientResrcStart(resourcename)
if(resourcename==getThisResource()) then
CheckTransfere()
CheckTransfere()
end
end
end
function CheckTransfere()
function CheckTransfere()
Line 25: Line 23:
end
end
end
end
addEventHandler("onClientResourceStart",getRootElement(),OnClientResrcStart)
addEventHandler("onClientResourceStart",getThisResource(),OnClientResrcStart)
</syntaxhighlight>
</syntaxhighlight>



Revision as of 08:29, 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.

function OnClientResrcStart(resourcename)
	CheckTransfere()
end
function CheckTransfere()
	if isTransferBoxActive() == true then
		setTimer(CheckTransfere,2000,1) -- Check again after 2 seconds
	else fadeCamera(true)  -- TransferBox isnt active, fade in camera
	end
end
addEventHandler("onClientResourceStart",getThisResource(),OnClientResrcStart)

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