-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0af4794
commit a967835
Showing
3 changed files
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Can be used as a condition which evaluates as false if stringbuffertext cannot be written to or is invalid. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
* chatlineid value must range between 0-99. Where: | ||
* chatlineid = 0 indicates the latest viewable chat message (when you fully crolled down). | ||
* chatlineid = 99 indicates the oldest viewable chat message (when you fully scrolled up). | ||
* stringbuffertext and stringbufferprefix must be a buffer which the string will be written. | ||
* textcolor and prefixcolor are 0xAARRGGBB format where A = Alpha, R = Red, G = Green, B = Blue. | ||
* Can be used as a condition which evaluates as true if chatlineid is valid. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
* chatlineid value must range between 0-99. Where: | ||
* chatlineid = 0 indicates the latest viewable chat message (when you fully crolled down). | ||
* chatlineid = 99 indicates the oldest viewable chat message (when you fully scrolled up). | ||
* textcolor and prefixcolor must be in 0xAARRGGBB format where A = Alpha, R = Red, G = Green, B = Blue. | ||
* Can be used as a condition which evaluates as true if chatlineid is valid. |