Can you give me some Scripts about Mapchange Every 60minute?
i mean,
Map will changed every 60minute (LOOP)
Thanks.
mapChange = true; maps = { 	[1] = "MAP1_NAME"; 	[2] = "MAP2_NAME"; 	[3] = "MAP3_NAME"; } function _changeMap() 	mapChange = true; 	parse("changemap "..maps[math.random(1, #maps)]); end while mapChange do 	mapChange = false; 	timer(60000*60, "_changeMap"); end
times = 3600 addhook("second","me") function me() 	if times and times > 0 then 		parse('hudtxt 1 "MapChange in : '..timer..' " 40 40 0") 	elseif times == 0 then 		parse('hutxt 1 "" 0 0 0') 		timer = nil 	end end addhook("startround" , "_mes") function _mes() 	timer = 3600 end
minute = 60 second = 59 PosX = -- Position X here PosY = -- Position Y here maps = { [1] = "MAP1_NAME", [2] = "MAP2_NAME", [3] = "MAP3_NAME", } function CountTimeHUD() 	second = second - 1 	if second >= 59 then 		minute = minute - 1 		if minute == 00 then 			parse("changemap " .. maps[math.random(1, #maps)]) 		end 	end 	parse('hudtxt 0 "\169255255255Changemap till: " .. minute .. ":" .. second .. " " .. PosX .. " " .. PosY .. " 0') end function startround_() 	minute = 60 	second = 59 end addhook("startround","startround_") addhook("second","CountTimeHUD")
minute = 60 second = 59 PosX = 40 PosY = 40 maps = { [1] = "rp_amstria_v0.4", [2] = "MAP2_NAME", [3] = "MAP3_NAME", } function CountTimeHUD() second = second - 1 if second >= 59 then minute = minute - 1 if minute == 00 then parse("changemap " .. maps[math.random(1, #maps)]) end end parse('hudtxt 0 "\169255255255Changemap till: '..minute..' '..second..'" 40 40 0') end function startround_() minute = 60 second = 59 end addhook("startround","startround_") addhook("second","CountTimeHUD")