summaryrefslogtreecommitdiff
path: root/orderchecker.sp
blob: a80ac4d779f12db567e9af0c47251d9aa40c605a (plain)
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
#pragma newdecls required
#pragma semicolon 1

#include <sourcemod>

public Plugin myinfo = {
    name            = "orderchecker",
    description     = "logs a message in chat when a callback is fired",
    author          = "NW/RL",
    version         = "alpha-0.1",
    url             = ""
};

public void OnAllPluginsLoaded() {
    PrintToChatAll("OnAllPluginsLoaded");
}

public void OnConfigsExecuted() {
    PrintToChatAll("OnConfigsExecuted");
}

public void OnClientPostAdminCheck(int client) {
    PrintToChatAll("OnClientPostAdminCheck on %N", client);
}

public void OnClientSettingsChanged(int client) {
    PrintToChatAll("OnClientSettingsChanged on %N", client);
}