mirror of
https://github.com/Jackzmc/sourcemod-plugins.git
synced 2025-05-06 01:23:21 +00:00
changes! yay!
This commit is contained in:
parent
bf5cf2d520
commit
34a85513fb
3 changed files with 5 additions and 2 deletions
Binary file not shown.
Binary file not shown.
|
@ -108,6 +108,7 @@ public Action Command_SpawnSpecial(int client, int args) {
|
|||
ReplyToCommand(client, "[SM] Director will now attempt to spawn %dx %s.", amount, arg1);
|
||||
}
|
||||
AnnounceSpawn(arg1);
|
||||
LogAction(client, -1, "\"%L\" spawned %dx \"%s\"", client, amount, arg1);
|
||||
ShowActivity(client, "spawned %dx \"%s\"", amount, arg1);
|
||||
}
|
||||
}
|
||||
|
@ -147,7 +148,8 @@ public Action Command_SpawnSpecialForceLocal(int client, int args) {
|
|||
ReplyToCommand(client, "[SM] Spawned %dx %s.", amount, arg1);
|
||||
}
|
||||
AnnounceSpawn(arg1);
|
||||
ShowActivity(client, "cursor spawned %dx \"%s\"", amount, arg1);
|
||||
LogAction(client, -1, "\"%L\" spawned %dx \"%s\" at cursor", client, amount, arg1);
|
||||
ShowActivity(client, "spawned %dx \"%s\" at cursor", amount, arg1);
|
||||
}
|
||||
return Plugin_Continue;
|
||||
}
|
||||
|
@ -184,7 +186,8 @@ public Action Command_SpawnSpecialForce(int client, int args) {
|
|||
ReplyToCommand(client, "[SM] Spawned a %dx %s.", amount, arg1);
|
||||
}
|
||||
AnnounceSpawn(arg1);
|
||||
ShowActivity(client, "forced spawned %dx \"%s\"", amount, arg1);
|
||||
LogAction(client, -1, "\"%L\" force spawned %dx \"%s\"", client, amount, arg1);
|
||||
ShowActivity(client, "force spawned %dx \"%s\"", amount, arg1);
|
||||
}
|
||||
return Plugin_Handled;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue