Discord
Steam
/
Garry's Mod
/
Help
/
How to make se..
Login/Join
Event Log
How to make server tips
5 replies, posted
Search
In This Thread
I want it to so like every 5 minutes a server tip will appear in chat saying something like : You can use !Placehit to place a hit; How can I do that?
Here you go: ( clientside ) [code] local HintsEng = { "Text1", "Text2", } timer.Create( "Client.HINTS", 300, 0, function() chat.AddText( Color( 255, 255, 255 ), HintsEng[ math.random( 1, #HintsEng ) ] ) end )[/code]
I don't know where to put that [editline]1st February 2015[/editline] Where is client side at?
lua > autorun > client
Do I have to make a new file? and if i do what am i supposed to call it?
Yes, make a new file. You can name it whatever you wish but it must be lua.
Sorry, you need to
Log In
to post a reply to this thread.