Raised This Month: $32 Target: $400
 8% 

[REQ] Show teammate's money


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
Isstrati
Member
Join Date: Feb 2012
Location: Republic of Moldova/Chis
Old 03-29-2012 , 06:28   [REQ] Show teammate's money
Reply With Quote #1

Hello guy's.
I use this plugin on my CW sv. Change please HUD color, for TS with Red & for CT with Blue.
http://forums.alliedmods.net/showthread.php?p=1033664
THX.

PHP Code:
#include <amxmodx>
#include <cstrike>
#include <hamsandwich>

#define NAME "show teammate's money"
#define VERSION "1.3.1"
#define AUTHOR "K.K.Lv"

new g_max_playersg_sync_creat_statustextg_sync_creat_list

new bool:g_teammate[33]

new 
cvar_plugin_on
new cvar_status_on

public plugin_init()
{
    
register_plugin(NAMEVERSIONAUTHOR)
    
    
RegisterHam(Ham_Spawn"player""player_spawn"1)
    
    
register_clcmd("say /money""clcmd_money")
    
    
register_event("StatusValue""show_teammate_money""be""1=2""2!0")
    
register_event("StatusValue""set_team""be""1=1")
    
    
cvar_plugin_on register_cvar("stm_on""1")
    
cvar_status_on register_cvar("stm_st_on""1")
    
    
g_max_players get_maxplayers()
    
g_sync_creat_statustext CreateHudSyncObj()
    
g_sync_creat_list CreateHudSyncObj()
}

public 
clcmd_money(client)
{
    if (!
get_pcvar_num(cvar_plugin_on))
    {
        
client_print(clientprint_chat"[AMXX]: Show Teammate's Money was off.")
        return 
PLUGIN_HANDLED
    
}
    
show_money(client)
    return 
PLUGIN_CONTINUE
}

public 
player_spawn(client)
{
    
remove_task(client)
    if (
is_user_alive(client) && get_pcvar_num(cvar_plugin_on))
    {
        
set_task(1.0"show_money"client)
    }
}

public 
show_money(client)
{
    static 
message[1024];
    static 
name[32];
    
    new 
moneyidlen;
    
    
len format(messagecharsmax(message), "The teammate's money:^n");
    for (
id 1id <= g_max_playersid++)
    {
        if (
id != client && is_user_connected(id) && cs_get_user_team(id) == cs_get_user_team(client))
        {
            
money cs_get_user_money(id);
            
get_user_name(idname31);
            
len += format(message[len], charsmax(message) - len"%-22.22s: %d^n"namemoney);
        }
    }
    
set_hudmessage(10020000.050.3500.025.00.10.22);
    
ShowSyncHudMsg(clientg_sync_creat_listmessage);
}

public 
set_team(id)
    
g_teammate[id] = bool:(read_data(2) == 1);

public 
show_teammate_money(id)
{
    if (!
get_pcvar_num(cvar_plugin_on))
        return 
PLUGIN_HANDLED
    
if(!is_user_bot(id) && is_user_connected(id) && get_pcvar_num(cvar_status_on))
    {
        static 
name[32]
        
        new 
pid read_data(2)
        new 
red 0blue 0
        
        
if (cs_get_user_team(pid) == CS_TEAM_T)
            
red 255
        
else if(cs_get_user_team(pid) == CS_TEAM_CT)
            
blue 255
        
        get_user_name
(pidnamecharsmax(name))
        new 
money cs_get_user_money(pid)
        if (
g_teammate[id])
        {
            
set_hudmessage(red50blue, -1.00.6010.010.60.010.018)
            
ShowSyncHudMsg(idg_sync_creat_statustext"Friend:%s -- Money:%d"namemoney)
        }
        else {
            
set_hudmessage(red50blue, -1.00.6010.010.60.010.018)
            
ShowSyncHudMsg(idg_sync_creat_statustext"Enemy:%s"name)
        }
    }
    return 
PLUGIN_CONTINUE
}

public 
client_disconnect(client)
{
    
remove_task(client)

Isstrati is offline
Send a message via Skype™ to Isstrati
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 20:21.


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