View Single Post
DJ Data
SourceMod Donor
Join Date: Dec 2012
Location: Switzerland
Old 11-25-2014 , 17:30   Re: UNSOLVED | Multiple ShowHudText?
Reply With Quote #32

Quote:
Originally Posted by ddhoward View Post
If you are already storing their ready states in a global boolean variable array, then you don't need to "retrieve" those states. You already have them, in that array.

Code:
ShowHudText(i, 1, "%s: %s", clientNames[1], isReady[1] ? "is ready." : "is not ready.");
Cool i'll give that a try.

Quote:
"%s: %s", clientNames[1], isReady[1] ? "is ready." : "is not ready."
EDIT: Does a bool return a string?
__________________
SourcePawn Coding Level: Novice

Last edited by DJ Data; 11-25-2014 at 17:32.
DJ Data is offline