I am using the Alka's UserRegister System v1.0
The plugin is register by console, but I want register by using say.
Here is the plugin:
http://forums.alliedmods.net/showthread.php?t=59596
Second, the following plugin is make by me.
But I find the message show the maximum of kill number is 5.
Never show > 5 even I kill more then 5.
Lastly, can someone add if tow player kill number is same, show their name too.
Best Killer: Player1 & Player2 ^nKill: 3 / HS: 1 & 2
Code:
#include <amxmodx>
#include <amxmisc>
#include <csstats>
#include <cstrike>
#define PLUGIN "Round Message"
#define VERSION "1.0"
#define AUTHOR "WS:)"
new SzAddCmd[] = "amx_pausecfg add ^"%s^""
new hudsync
new SzTeamScore[2]
new SzKills = 0, SzWho = 0, SzHs = 0
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
register_logevent("ERM",2,"1=Round_End")
register_logevent("New_Round",2,"1=Round_Start")
register_event( "TeamScore", "eTeamScore", "a" )
hudsync = CreateHudSyncObj()
server_print("^n^t%s v%s, Copyright (C) 2010 by %s^n", PLUGIN, VERSION, AUTHOR)
}
public plugin_cfg()
{
// Put here titles of plugins which you don't want to pause
server_cmd(SzAddCmd, "Round Message")
}
public New_Round()
{
SzKills = 0, SzWho = 0, SzHs = 0
// g_Killers[ id ][0] = 0
}
public eTeamScore()
{
new SzTeam[2]
read_data( 1, SzTeam, 1 )
SzTeamScore[ (SzTeam[0]=='C') ? 1 : 0 ] = read_data(2)
}
public ERM()
{
new SzPlayers[32], SzPnum, SzStats[8], SzBodyhits[8]
get_players(SzPlayers, SzPnum)
for(new i = 0; i < SzPnum; ++i)
{
get_user_rstats( SzPlayers[i], SzStats, SzBodyhits)
if ( SzStats[0] > SzKills )
{
SzWho = SzPlayers[i]
SzKills = SzStats[0]
SzHs = SzStats[2]
}
if (is_user_connected(SzWho))
{
new SzName[32]
get_user_name(SzWho, SzName, 31)
set_hudmessage(10, 70, 10, 0.05, 0.50, 0, 3.0, 4.0, 1.0, 1.0, -1)
ShowSyncHudMsg(0, hudsync, "Best Killer: %s^nKill: %d / HS: %d^n覧覧覧覧覧覧覧覧^nTr: %d / CT: %d", SzName, SzKills, SzHs, SzTeamScore[0] , SzTeamScore[1])
}
}
}
__________________
You can be a SUPER coder but you Haven't to say such as "stupid, etc." words to the others