-
Notifications
You must be signed in to change notification settings - Fork 21
/
zp_extraitem_buy_nemesis.sp
88 lines (79 loc) · 2.27 KB
/
zp_extraitem_buy_nemesis.sp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/**
* ============================================================================
*
* Zombie Plague
*
*
* Copyright (C) 2015-2023 qubka (Nikita Ushakov)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* ============================================================================
**/
#include <sourcemod>
#include <sdktools>
#include <zombieplague>
#pragma newdecls required
#pragma semicolon 1
/**
* @brief Record plugin info.
**/
public Plugin myinfo =
{
name = "[ZP] ExtraItem: Buy Nemesis",
author = "qubka (Nikita Ushakov)",
description = "Addon of extra items",
version = "1.0",
url = "https://forums.alliedmods.net/showthread.php?t=290657"
}
// Item index
int gItem;
// Type index
int gType;
/**
* @brief Called after a library is added that the current plugin references optionally.
* A library is either a plugin name or extension name, as exposed via its include file.
**/
public void OnLibraryAdded(const char[] sLibrary)
{
if (!strcmp(sLibrary, "zombieplague", false))
{
if (ZP_IsMapLoaded())
{
ZP_OnEngineExecute();
}
}
}
/**
* @brief Called after a zombie core is loaded.
**/
public void ZP_OnEngineExecute()
{
gItem = ZP_GetExtraItemNameID("buy nemesis");
gType = ZP_GetClassTypeID("nemesis");
if (gType == -1) SetFailState("[ZP] Custom class type ID from name : \"nemesis\" wasn't find");
}
/**
* @brief Called after select an extraitem in the equipment menu.
*
* @param client The client index.
* @param itemID The item index.
**/
public void ZP_OnClientBuyExtraItem(int client, int itemID)
{
if (itemID == gItem)
{
ZP_ChangeClient(client, -1, gType);
}
}