Forum
Scripts
startround hook
startround hook
4 replies
1

I'm not sure what your problem is, but you can put Lua code that you want to execute right after starting the server directly in your Lua script. you don't have to use a hook in that case.
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
addhook("startround","_sr")
function _sr()
	callImages()
end
function callImages()
	image("---bleh")
end
callImages()
1

Offline