Experimentat
Experimentat
Mesaje: 72
Membru din: Sâm Ian 31, 2026 4:11 pm
Server: metin2avange.mt2.xyz
Rasă: Ninja
Regat: Chunjo
  • Has thanked: 1 time
  • 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