Как удалить сообщения "Вы можете потратить" и "Ваш Score" при входе на сервер?

зображення
Как удалить эту фигню?

-- путь установки
-- addons/igs-modification/lua/autorun/server/igs_notify_override.lua

hook.Add("IGS.Initialized", "igs_notify_override", function()
	IGS.Notify_orig = IGS.Notify_orig or IGS.Notify
	assert(IGS.Notify_orig, "IGS.Notify почему-то отсутствует на сервере")

	function IGS.Notify(pl, ...)
		local args = {...}
		if isstring(args[1]) and (args[1]:StartWith("Вы можете потратить") or args[1]:StartWith("Ваш Score")) then
			return
		end

		return IGS.Notify_orig(pl, unpack(args))
	end
end)

IGS.Notify override by @amd_nick - Pastebin.com

Куда кидать?

addons/igs-modification/lua/autorun/server/igs_notify_override.lua

Почему-то не удаляеться…