AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   General (https://forums.alliedmods.net/forumdisplay.php?f=58)
-   -   Solved [TF2 Bug] sm_tsay not working (https://forums.alliedmods.net/showthread.php?t=316429)

Dr.Doctor 05-22-2019 11:24

[TF2 Bug] sm_tsay not working
 
I had tried !sm_tsay on my servers and it didn't work.

Also I had tried to use this function but it doesn't work too.
PHP Code:

void SendDialogToOne(int clientint color, const char[] textany ...)
{
    
char message[100];
    
VFormat(messagesizeof(message), text4);    
    
    
KeyValues kv = new KeyValues("Stuff""title"message);
    
kv.SetColor("color"g_Colors[color][0], g_Colors[color][1], g_Colors[color][2], 255);
    
kv.SetNum("level"1);
    
kv.SetNum("time"10);
    
    
CreateDialog(clientkvDialogType_Msg);

    
delete kv;


Any idea?

CrazyHackGUT 05-22-2019 11:29

Re: [TF2 Bug] sm_tsay not working
 
Code:

"Stuff"
Replace to "text".

Dr.Doctor 05-22-2019 12:41

Re: [TF2 Bug] sm_tsay not working
 
Well :/

TF2 !tsay is broken because of
PHP Code:

"cl_showpluginmessages" "0"
 
archive
 
Allow plugins to display messages to you 

Thanks Pelipoika for reminding me


All times are GMT -4. The time now is 12:49.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.