Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update EndTextCommandIsThisHelpMessageBeingDisplayed.md #797

Merged
merged 3 commits into from
Jul 6, 2023
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions HUD/EndTextCommandIsThisHelpMessageBeingDisplayed.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,20 @@ aliases: ["0x10BDDBFC529428DD"]

```c
// 0x10BDDBFC529428DD 0xF63A13EC
BOOL END_TEXT_COMMAND_IS_THIS_HELP_MESSAGE_BEING_DISPLAYED(int p0);
BOOL END_TEXT_COMMAND_IS_THIS_HELP_MESSAGE_BEING_DISPLAYED(int hudIndex);
```


## Parameters
* **p0**:
* **hudIndex**: The hud index for help message.
```csharp
Copy link
Contributor

@4mmonium 4mmonium Jun 21, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Move all this C# code over to line 12, I attached a file showing you how it should look, you can replace everything with the contents from this file I attached if you want.

EndTextCommandIsThisHelpMessageBeingDsiplayed.md

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you, I have replaced the content you sent to me and made a commit.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you, I have replaced the content you sent to me and made a commit.

Amazing, thank you! I'll approve this now 🙂

enum HudIndexes {
HELP_TEXT = 0,
FLOATING_HELP_TEXT_1 = 1,
FLOATING_HELP_TEXT_2 = 2,
}
```

## Return value
`true`: Indicates if the specific help message has been displayed.\
`false`: Indicates that the specific help message is still being displayed.