From 1dd29ad2737b8007ab0736727733cde030dbaa81 Mon Sep 17 00:00:00 2001 From: Felix Geyer Date: Sun, 7 Mar 2004 20:16:17 +0000 Subject: [PATCH] added set_user_deaths and set_user_frags --- plugins/include/amxmodx.inc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/plugins/include/amxmodx.inc b/plugins/include/amxmodx.inc index 540500f8..24acda51 100755 --- a/plugins/include/amxmodx.inc +++ b/plugins/include/amxmodx.inc @@ -196,9 +196,15 @@ native get_user_armor(index); /* Returns player deaths. */ native get_user_deaths(index); +/* Sets player deaths. */ +native set_user_deaths(index, newdeaths); + /* Returns player frags. */ native get_user_frags(index); +/* Sets player frags. */ +native set_user_frags(index, frags); + /* Returns player health. */ native get_user_health(index);