Raised This Month: $ Target: $400
 0% 

Show all players on Motd


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
kramesa
Veteran Member
Join Date: Feb 2011
Location: Brazil
Old 12-30-2011 , 20:10   Show all players on Motd
Reply With Quote #1

PHP Code:
#include <amxmodx>
#include <amxmisc>

public plugin_init()
{
    
register_plugin("Get User Info""v0.1""kramesa")
    
    
register_clcmd("say /rates""Menu_Rates");
    
register_clcmd("say !rates""Menu_Rates");
    
register_clcmd("say .rates""Menu_Rates");
}

public 
Menu_Rates(id)
{
    
client_print(idprint_chat"[AMXX] See console for more infos!");
    
    new 
iPlayers[32], iNum;
    
get_players(iPlayersiNum"ch");
    for(--
iNumiNum >= 0iNum--)
    {
        new 
Rate[32], UpdRate[32], CmdRate[32], SteamID[32], Name[32];
        
        
get_user_info(iPlayers[iNum], "rate"Rate31);
        
get_user_info(iPlayers[iNum], "cl_updaterate"UpdRate31);
        
get_user_info(iPlayers[iNum], "cl_cmdrate"CmdRate31);
        
get_user_authid(iPlayers[iNum], SteamID31);
        
get_user_name(iPlayers[iNum], Name31);
        
        static 
motd[1501], len;
        
        
len format(motd1500,"<body bgcolor=#000000><font color=#87cefa><pre>");
        
len += format(motd[len], 1500-len,"<center><h4><font color=^"green^">Player: %s </font></h4></center>"Name);
        
len += format(motd[len], 1500-len,"<left><font color=^"red^"><B>Rate      :</B> <font color=^"white^">%s</color></left>^n"Rate);
        
len += format(motd[len], 1500-len,"<left><font color=^"red^"><B>Cmdrate   :</B> <font color=^"white^">%s</color></left>^n"CmdRate);
        
len += format(motd[len], 1500-len,"<left><font color=^"red^"><B>Upaterate :</B> <font color=^"white^">%s</color></left>^n"UpdRate);
        
len += format(motd[len], 1500-len,"<left><font color=^"red^"><B>SteamID   :</B> <font color=^"white^">%s</color></left>^n"SteamID);
        
        
show_motd(idmotd"Players Rates");
    }
    return 
0;

How I can show all players on this Motd?
__________________

Last edited by kramesa; 12-30-2011 at 20:12.
kramesa is offline
Reply



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 10:54.


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