Potrzebuję modyfikacji tego pluginu , aby najlepszy gracz rundy dostawał określoną przezemnie ilość pieniędzy.
Oto Plugin :
/* Plugin generated by AMXX-Studio */
#include <amxmodx>
#include <amxmisc>
#include <csx>
#define PLUGIN "Nowy Plugin"
#define VERSION "1.0"
#define AUTHOR "Sn!ff3r"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
register_logevent("round_end", 2, "1=Round_End");
}
public round_end()
{
static stats[8], bodyhits[8], players[32], bestscore = 0, bestplayer, besths, num, i
get_players(players, num, "h")
for(i = 0; i <= num; i++)
{
get_user_rstats(players[i], stats, bodyhits)
if(stats[0] > bestscore)
{
bestscore = stats[0]
bestplayer = players[i]
besths = stats[2]
}
}
if(is_user_connected(bestplayer))
{
static name[33]
get_user_name(bestplayer, name, 32)
client_print(0, print_chat, "*** Najlepszym graczem rundy jest %s! ***", name)
client_print(0, print_chat, "*** Zabil %d graczy, w tym %d headshot'ow ***", bestscore, besths)
}
else
{
client_print(0, print_chat, "*** Brak najlepszego gracza rundy... ***")
}
}