[IGS] Активация донат купона чат командой /activate

Как реализовать команду /activate промокод
На сервере слишком глупые игроки :sob: :sob: :sob:

Это не чат команда, а консольная, но вдруг тебе подойдет

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

concommand.Add("activate_cp", function(pl, _, args)
	if not args[1] then pl:ChatPrint("Введите код купона") return end

	IGS.PlayerActivateCoupon(pl, args[1], function(ok, err_txt)
		pl:ChatPrint(ok and "Купон активирован" or err_txt)
	end)
end)
1 лайк

Привет, поместите этот LUA код в

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

hook.Add("PlayerSay", "GMD_ChatCode", function(pl, text)
	local args = string.Explode(" ", text)

	if args[1] == "/activate" then
		if not args[2] then
			pl:ChatPrint("Введите код купона")
			return
		end

		IGS.PlayerActivateCoupon(pl, args[2], function(ok, err_txt)
			pl:ChatPrint(ok and "Купон активирован" or err_txt)
		end)
	end
end)
1 лайк