ResendPlayerACInfo

From Multi Theft Auto: Wiki
Revision as of 22:42, 6 September 2024 by FileEX (talk | contribs) (→‎See Also)
Jump to navigation Jump to search

This function will force the specified player to resend their AC info, triggering the onPlayerACInfo event again.

Syntax

bool resendPlayerACInfo ( player thePlayer )

Required Arguments

  • thePlayer: A player object referencing the specified player

Returns

Returns true if the AC info will be resent, false otherwise.

Example

This example shows how to resend each players AC info during onResourceStart

addEventHandler( "onResourceStart", resourceRoot,
    function()
        for _,player in ipairs( getElementsByType("player") ) do
            resendPlayerACInfo( player )
        end
    end
)

Requirements

This template will be deleted.

See Also