[IGS] Открытие кастомного меню через NPC

Решение:
“IGS.Initialized” не запускается

hook.Add("Initialize", "igs_override_nps_use", function()
	local npc_igs = scripted_ents.GetStored("npc_igs")
	assert(npc_igs, "[IGS] npc_igs >> does not exist")

	local ENT = npc_igs.t

	function ENT:PlayerUse(pl)
		pl:ConCommand("donate_menu")
	end
end)