AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Suggestions / Requests (https://forums.alliedmods.net/forumdisplay.php?f=12)
-   -   [Req] a Hud message (https://forums.alliedmods.net/showthread.php?t=320259)

Mikaeel123 12-12-2019 12:39

[Req] a Hud message
 
Hello . i want a plugin for a hud message . i want this 3 secconds come in hud . its coming when player come to server and want play .

^SmileY 12-12-2019 13:16

Re: [Req] a Hud message
 
Not tested!
PHP Code:

#include <amxmodx>
#include <cstrike>
#include <fakemeta>

public plugin_init()
{
    
register_plugin("HUD Message","1.0","SmileY");
}

public 
JoinedClass(id)
{
    if(
get_ent_data(id,"CBasePlayer","m_iMenu") == CS_Menu_ChooseAppearance)
    {
        
set_hudmessage(0,255,0,-1.0,0.1,1,6.0,4.0);
        
show_hudmessage(id,"WELCOME TO MY SERVER!");
    }



Mikaeel123 12-12-2019 13:34

Re: [Req] a Hud message
 
Thank you so much i was need it
Quote:

set_hudmessage(0,255,0,-1.0,0.1,1,6.0,4.0);
:X


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

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