View Single Post
Ilusion9
Veteran Member
Join Date: Jun 2018
Location: Romania
Old 09-07-2019 , 06:41   Re: Random Code Archive
Reply With Quote #29

ShowSyncHudTextToAll:

PHP Code:

stock void ShowSyncHudTextToAll
(Handle syncObj, const char[] formatany ...)
{
    
char buffer[254];
    
    for (
int i 1<= MaxClientsi++)
    {
        if (
IsClientInGame(i))
        {
            
SetGlobalTransTarget(i);
            
VFormat(buffersizeof(buffer), format3);
            
            
ClearSyncHud(isyncObj);
            
ShowSyncHudText(isyncObjbuffer);
        }
    }

__________________
Ilusion9 is offline