Example : http://unrealsoftware.de/files_show.php?file=9744
It says " Blue flag taken" but instead of words , it would display a pic .
Scripts
Display a picture in the middle of the screen
Display a picture in the middle of the screen
1

function showImg(path, time) -- time in milliseconds ( 1000 milliseconds = 1 second )
	if imgPicture then
		freeimage(imgPicture);
	end
	
	imgPicture = image(path, 320, 240, 2);
	tween_alpha(imgPicture, time, 0.0);
end
addhook("serveraction","onKey")
function onKey(id)
	showImg("gfx/cs2d.bmp", 1000);
end
image("gfx/cs2d.bmp", 320, 240, 2);
addhook("second","_second")
function _second()
	local livingplayers = player(0,"tableliving")
	for _,id in pairs(livingplayers) do
		image("gfx/cs2d.bmp", 320, 240, 2);
	end
end
1
