hi guys,
I've been using this plugin (
http://forums.alliedmods.net/showthread.php?p=652449) for a while but it's not working for me, as it was mentioned.
This plugin should set player's both frags and deaths to 0 when /resetscore command is used. However when I use the command, my frags & deaths becomes 0 at that time, but my deaths returns to previous on the next round start.
this is the code part of the action;
PHP Code:
public reset_score(id)
{
//These both NEED to be done twice, otherwise your frags wont
//until the next round
cs_set_user_deaths(id, 0)
set_user_frags(id, 0)
cs_set_user_deaths(id, 0)
set_user_frags(id, 0)
and ideas?