Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions addons/sourcemod/scripting/VIP_SourcemodFlags.sp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

#include <sourcemod>
#include <vip_core>
#include <multicolors>
#include <utilshelper>

#undef REQUIRE_PLUGIN
Expand Down Expand Up @@ -31,7 +30,7 @@ public Plugin myinfo =
name = "[VIP] Sourcemod Flags",
author = "R1KO & inGame & maxime1907",
description = "Sets the sourcemod flags related to VIP features",
version = "3.2.3"
version = "3.2.4"
};

public APLRes AskPluginLoad2(Handle myself, bool late, char[] error, int err_max)
Expand Down Expand Up @@ -97,7 +96,7 @@ public Action Command_GetImmunityLevel(int client, int args)

if (args < 1)
{
CPrintToChat(client, "{green}[SM] {white}Usage: sm_adminimmunity <#userid|name>");
PrintToChat(client, "[SM] Usage: sm_adminimmunity <#userid|name>");
return Plugin_Handled;
}

Expand All @@ -118,7 +117,7 @@ public Action Command_GetImmunityLevel(int client, int args)
{
AdminId aid = GetUserAdmin(iTargets[i]);
int iImmunityLevel = GetAdminImmunityLevel(aid);
CPrintToChat(client, "{green}[SM] {white}Immunity level of player %N is %d", iTargets[i], iImmunityLevel);
PrintToChat(client, "[SM] Immunity level of player %N is %d", iTargets[i], iImmunityLevel);
}

return Plugin_Handled;
Expand Down Expand Up @@ -327,4 +326,4 @@ stock void ReloadVIPs()
LoadVIPClient(i);
}
}
}
}
7 changes: 0 additions & 7 deletions sourceknight.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,6 @@ project:
- source: /addons
dest: /addons

- name: multicolors
type: git
repo: https://github.com/srcdslab/sm-plugin-MultiColors
unpack:
- source: /addons/sourcemod/scripting/include
dest: /addons/sourcemod/scripting/include

- name: ccc
type: git
repo: https://github.com/srcdslab/sm-plugin-CustomChatColors
Expand Down