Forum

> > CS2D > Scripts > DIsplay message
Forums overviewCS2D overview Scripts overviewLog in to reply

English DIsplay message

4 replies
To the start Previous 1 Next To the start

old DIsplay message

Flame
BANNED Off Offline

Quote
Hi all again!
I need help with lua as always
Can you guys make a lua that in server ewery 30 secs displays a message and says : Hi

old Re: DIsplay message

Yates
Reviewer Off Offline

Quote
1
2
3
4
addhook("minute","hi")
function hi()
msg("Hi.")
end
Because I don't want people to get the shit outta them spammed. Here's one every min.

old Re: DIsplay message

Bowlinghead
User Off Offline

Quote
1
2
3
4
5
6
7
8
9
timer = 0
addhook("second","second")
function second()
	timer=timer+1
	if timer==30 then
		timer=0
		msg("Hi :D")
	end
end

Here is one with 30sec.
To the start Previous 1 Next To the start
Log in to reply Scripts overviewCS2D overviewForums overview