AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   Vip hud stats (https://forums.alliedmods.net/showthread.php?t=287386)

djfox3d 09-06-2016 12:34

Vip hud stats
 
hello guys !! I saw a plugin that shows your status if vip yes or no on screen hud, like a menu, does anyone know the name of this plugin?

the screen hud is this: Status: [VIP] or Status: [NO VIP]

Napoleon_be 09-07-2016 07:35

Re: Vip hud stats
 
PHP Code:

/* Plugin generated by AMXX-Studio */

#include <amxmodx>
#include <amxmisc>

#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "author"


public plugin_init() {
    
register_plugin(PLUGINVERSIONAUTHOR)
    
register_clcmd("say /vip""CmdVip")
}

public 
CmdVip(id) {
    if(
get_user_flags(id) & ADMIN_LEVEL_H) {
        
set_hudmessage(02550, -1.00.3506.06.00.10.2, -1)
        
show_hudmessage(id"Status: [VIP]")
    } else {
        
set_hudmessage(25500, -1.00.3506.06.00.10.2, -1)
        
show_hudmessage(id"Status: [NO VIP]")
    }



PlayStation 09-07-2016 19:41

Re: Vip hud stats
 
i think he asks about a plugin, which administrates VIP and shows the status


All times are GMT -4. The time now is 00:23.

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