didJIP: Difference between revisions

From Bohemia Interactive Community
m (Text replacement - ">Posted on February ([0-9]{2})[ a-zA-Z]*, ([0-9]{4})" to ">Posted on $2-02-$1")
m (Some wiki formatting)
 
Line 6: Line 6:
|gr1= Multiplayer
|gr1= Multiplayer


|descr= Checks if the current client Joined In Progress.
|descr= Checks if the current client {{Link|Multiplayer Scripting#Join In Progress|Joined In Progress}}.


|s1= '''didJIP'''
|s1= [[didJIP]]


|r1= [[Boolean]]
|r1= [[Boolean]]


|x1= <sqf>clientDidJIP = didJIP;</sqf>
|x1= <sqf>
if (didJIP) then
{
hint "you're late to the party!";
};
</sqf>


|seealso= [[didJIPOwner]] [[exportJIPMessages]]
|seealso= [[didJIPOwner]] [[exportJIPMessages]]
}}
}}


<dl class="command_description">
{{Note
 
|user= Commy2
<dt></dt>
|timestamp= 20160223223300
<dd class="notedate">Posted on 2016-02-23 - 22:33 (UTC)</dd>
|text= reports false in {{hl|CfgFunctions}} with <syntaxhighlight lang="cpp" inline>preInit = 1;</syntaxhighlight> even when the client joined in progress.
<dt class="note">[[User:Commy2|Commy2]]</dt>
}}
<dd class="note">
reports false in CfgFunctions with preInit = 1; even when the client joined in progress.
</dd>
 
</dl>

Latest revision as of 23:33, 31 December 2025

Hover & click on the images for description

Description

Description:
Checks if the current client Joined In Progress.
Groups:
Multiplayer

Syntax

Syntax:
didJIP
Return Value:
Boolean

Examples

Example 1:
if (didJIP) then { hint "you're late to the party!"; };

Additional Information

See also:
didJIPOwner exportJIPMessages

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord.
Only post proven facts here! Add Note
Commy2 - c
Posted on Feb 23, 2016 - 22:33 (UTC)
reports false in CfgFunctions with preInit = 1; even when the client joined in progress.