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 map_specific_buff begin
    	state start begin
    		function cfg()
    			local c = {}
    			c.MAP = 63 -- schimba map index
    			c.TIME = 60 * 30
    			c.MOV = 20
    			return c
    		end
    
    		when login begin
    			if pc.get_map_index() == map_specific_buff.cfg().MAP then
    				affect.add(apply.MOV_SPEED, map_specific_buff.cfg().MOV, map_specific_buff.cfg().TIME)
    				syschat("[Map] Ai primit buff de miscare 30 min pe aceasta mapa.")
    			end
    		end
    	end
    end