Участник
Пользователь
- Сообщения
- 213
- Реакции
- 71
- Помог
- 2 раз(а)
10 Terrorists Left
09 Terrorists Left
08 Counter-Terrorists Left
07 Counter-Terrorists Left
Shown Only, When someone Kill !!
If it don't exist can anyone make it?
------------------------------------------------
I found it, its associated with miscstats.sma/.amxx
OR
You can Try This:
09 Terrorists Left
08 Counter-Terrorists Left
07 Counter-Terrorists Left
Shown Only, When someone Kill !!
If it don't exist can anyone make it?
------------------------------------------------
I found it, its associated with miscstats.sma/.amxx
OR
You can Try This:
Код:
#include <amxmodx>
#include <hamsandwich>
#define PLUGIN "Enemies Left"
#define VERSION "31/12/2018"
#define AUTHOR "raizo11"
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
RegisterHam(Ham_Killed, "player", "PlayerKilled", 1)
}
public PlayerKilled(id)
{
static X[32], Y[32], XNum, YNum
get_players(X, XNum, "ae", "TERRORIST")
get_players(Y, YNum, "ae", "CT")
set_dhudmessage(110, 55, 110, -1.0, 0.70, 1, 0.1, 3.0, 0.1, 2.0)
show_dhudmessage(0, "TERO %d - CT %d!", XNum, YNum)
}
Код:
#include <amxmodx>
#include <hamsandwich>
#include <dhudmessage>
#define PLUGIN "Enemies Left"
#define VERSION "31/12/2018"
#define AUTHOR "raizo11"
public plugin_init()
{
register_plugin(PLUGIN, VERSION, AUTHOR)
RegisterHam(Ham_Killed, "player", "PlayerKilled", 1)
}
public PlayerKilled(id)
{
static X[32], Y[32], XNum, YNum
get_players(X, XNum, "ae", "TERRORIST")
get_players(Y, YNum, "ae", "CT")
set_dhudmessage(110, 55, 110, -1.0, 0.70, 1, 0.1, 3.0, 0.1, 2.0, false)
show_dhudmessage(0, "TERO %d - CT %d!", XNum, YNum)
}
Последнее редактирование: