hint: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - " \| ofp \|1.00 +\|([^g])" to " | ofp |1.00 |game2= ofpe |version2= 1.00 |game3= arma1 |version3= 1.00 |game4= arma2 |version4= 1.00 |game5= arma2oa |version5= 1.50 |game6= tkoh |version6= 1.00 |game7= arma3 |version7= 0.50 |$1") |
Lou Montana (talk | contribs) m (Text replacement - " \| *(([^=\| ]+)('''|\[\[)([^=\| ]+)) * \|p1=" to " |s1= $1 |p1=") |
||
Line 32: | Line 32: | ||
| Outputs a hint message to the right of the screen (left of the screen in {{ofp}}) with a sound (except in {{arma1}}). Use [[hintSilent]] for soundless hint. To split message in multiple lines either use [[Structured Text]] or <tt>\n</tt> (in lower case). | | Outputs a hint message to the right of the screen (left of the screen in {{ofp}}) with a sound (except in {{arma1}}). Use [[hintSilent]] for soundless hint. To split message in multiple lines either use [[Structured Text]] or <tt>\n</tt> (in lower case). | ||
| [[hint]] message | |s1= [[hint]] message | ||
|p1= message: [[String]] or [[Structured Text]] - the message to display. | |p1= message: [[String]] or [[Structured Text]] - the message to display. |
Revision as of 23:07, 12 June 2021
Description
- Description:
- Description needed
- Problems:
- 1.00 1.00 1.00 Hint messages that exceed the screen may lead to crashes.
1.00 The game would not crash but suffer FPS drop / temporary freezing. - Groups:
- InteractionStructured TextStrings
Syntax
- Syntax:
- hint message
- Parameters:
- message: String or Structured Text - the message to display.
- Return Value:
- Nothing
Examples
- Example 1:
// outputs the following: // Press W to move forward. // Press S to move backwards. hint "Press W to move forward.\nPress S to move backwards."
- Example 2:
hint format ["Hello, %1!", name player];
- Example 3:
hint str count allPlayers; sleep 10; hintSilent ""; // hides the previous hint display
- Example 4:
hint parseText "<t size='2.0'>Large text</t>"; // Displays text twice as large as the default one
Additional Information
- See also:
- hintChintCadethintSilentdiag_log
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
- Posted on October 20, 2014 - 19:27 (UTC)
- DreadedEntity
-
Be careful when using hints to visualize the effects of commands using the Debug Console. Hint can accept an undefined variable and neither the error nor the hint is shown, the command simply fails. Also notice how the hint command should be
hint str _i;
:for "_i" from 0 to 50 do { hint _i; };
tested in A3 1.32.127785
In a script, an "undefined variable" error will be shown as expected. - Posted on October 21, 2014 - 23:07 (UTC)
- DreadedEntity
-
Contrary to previous games, Arma 3 will happily display hints that far exceed screen space.
However, as hints get longer, FPS suffers tremendously.
tested in Debug Console, A3 1.32.127785 with the following:hint str ((nearestObjects [player, ["BUILDING"], 100]) - [player]); [] spawn { sleep 5; systemChat str diag_fps; }; sleep 10; hint str ((nearestObjects [player, ["BUILDING"], 1000]) - [player]); [] spawn { sleep 5; systemChat str diag_fps; };
Results were: 59.7015 and 5.17297, respectively. Drawing a hint even longer than this, such as nearestObjects with a radius of 10,000 or 100,000 reduces your FPS so much Arma 3 appears to crash, though it doesn't.
Unrelated: Hints will stay on screen for 30 seconds, then fade away over the course of 5 seconds. Tested with: A3 1.32.127785 - Posted on February 17, 2015 - 23:14 (UTC)
- DreadedEntity
- An open dialog will pause the 30-second hint fade timer. (A3 1.38.128937)
- Posted on March 25, 2017 - 20:47 (UTC)
- Feint
-
The hint sound is audible only when you have the music volume turned up above 0 in the audio settings.
Otherwise, it seems to act the same as hintSilent.
This is important because if you are running a hint that fires at 30 fps or more, the hint will slow down machines that have the music volume turned up but won't slow down machines that have the music volume turned off.
Best practice is to use hint for an alert to the player and use hintSilent for a makeshift display of data to the player that is updated fairly often.
Categories:
- Stubs
- Scripting Commands
- Operation Flashpoint: Elite: Scripting Commands
- ArmA: Armed Assault: Scripting Commands
- Arma 2: Scripting Commands
- Arma 2: Operation Arrowhead: Scripting Commands
- Take On Helicopters: Scripting Commands
- Arma 3: Scripting Commands
- Command Group: Interaction
- Command Group: Structured Text
- Command Group: Strings
- Scripting Commands: Local Effect