mirror of
https://github.com/Jackzmc/sourcemod-plugins.git
synced 2026-04-11 03:20:04 -05:00
14 lines
457 B
SourcePawn
14 lines
457 B
SourcePawn
static char STORE_KEY[] = "__name__";
|
|
|
|
void __name___OnActivate(int activator, int target, const char[] eventId) {
|
|
|
|
}
|
|
|
|
Action __name____OnPlayerRunCmd(int client, int& buttons, int& impulse, float vel[3], float angles[3], int& weapon, int& subtype, int& cmdnum, int& tickcount, int& seed, int mouse[2]) {
|
|
return Plugin_Continue;
|
|
}
|
|
|
|
Action __name____OnClientSayCommand(int client, const char[] command, const char[] sArgs) {
|
|
return Plugin_Continue;
|
|
}
|
|
|