Advertisement
Hinex_The_Crabe

Untitled

Aug 25th, 2016
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.46 KB | None | 0 0
  1. #include <sourcemod>
  2. // #include <cstrike>
  3.  
  4. public OnPluginStart()
  5. {
  6.     RegConsoleCmd("resetscore", Command_RS);
  7.     RegConsoleCmd("rs", Command_RS);
  8. }
  9. public Action:Command_RS(client,i)
  10. {
  11.     SetEntProp(client, Prop_Data, "m_iFrags", 0);
  12.     SetEntProp(client, Prop_Data, "m_iDeaths", 0);
  13.     // CS_SetClientContributionScore(client, 0);
  14.     // CS_SetMVPCount(client, 0);
  15.     // CS_SetClientAssists(client, 0);
  16.     PrintToChat(client,"[RS] Ваш счёт сброшен!");
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement