mirror of
https://github.com/ravmustang/A3_R3F_LOG_Epoch.git
synced 2024-08-30 16:32:11 +00:00
17 lines
357 B
Plaintext
17 lines
357 B
Plaintext
|
/**
|
|||
|
* Passe la variable R3F_LOG_joueur_deplace_objet <20> objNull pour informer le script "deplacer" d'arr<72>ter de d<>placer l'objet
|
|||
|
*/
|
|||
|
|
|||
|
if (R3F_LOG_mutex_local_verrou) then
|
|||
|
{
|
|||
|
hintC STR_R3F_LOG_mutex_action_en_cours;
|
|||
|
}
|
|||
|
else
|
|||
|
{
|
|||
|
R3F_LOG_mutex_local_verrou = true;
|
|||
|
|
|||
|
R3F_LOG_joueur_deplace_objet = objNull;
|
|||
|
sleep 0.25;
|
|||
|
|
|||
|
R3F_LOG_mutex_local_verrou = false;
|
|||
|
};
|