Pagina 1 din 1

🟪 QUEST: Mesaj informativ periodic (la fiecare 15 minute)

Scris: Dum Feb 01, 2026 10:47 am
de ProFight3D

Cod: SelectaĊ£i tot

quest info_messages_timer begin
	state start begin
		function cfg()
			local c = {}
			c.SEC = 15 * 60
			return c
		end

		when login begin
			if pc.getqf("imt_on") != 1 then
				pc.setqf("imt_on", 1)
				loop_timer("imt_tick", info_messages_timer.cfg().SEC)
			end
		end

		when imt_tick.timer begin
			local r = number(1, 3)
			if r == 1 then
				syschat("[Info] Recompense zilnice la NPC / Daily missions active!")
			elseif r == 2 then
				syschat("[Info] Intra pe Discord pentru update-uri si event-uri!")
			else
				syschat("[Info] Farm corect: foloseste mapele potrivite nivelului tau.")
			end
		end
	end
end