Advertisement
Guest User

Untitled

a guest
May 26th, 2015
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pawn 0.68 KB | None | 0 0
  1. #include <sourcemod>
  2. #include <smlib>
  3. #include "include/multi1v1.inc"
  4. #include "multi1v1/version.sp"
  5.  
  6. #pragma semicolon 1
  7.  
  8. public Plugin:myinfo = {
  9.     name = "P90 Rounds",
  10.     author = "eZ",
  11.     description = "Adds unranked P90",
  12.     version = PLUGIN_VERSION,
  13.     url = "https://github.com/splewis/csgo-multi-1v1"
  14. };
  15.  
  16. public void Multi1v1_OnRoundTypesAdded() {
  17.     Multi1v1_AddRoundType("HP", "HP", HPHandler, Multi1v1_NullChoiceMenu, true, false);
  18. }
  19.  
  20. public void P90Handler(int client){
  21.     Client_RemoveAllWeapons(client, "", true);
  22.     Client_SetArmor(client, 100);
  23.     GivePlayerItem(client, "weapon_knife");
  24.     GivePlayerItem(client, "g_PrimaryWeapon[client]");
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement