• Simple server announcement command
    2 replies, posted
Hey i was wondering if i could have some help with a Garry's Mod server command. I wanted to make something for the players so when someone needs the link for the website or steam community page they can type in chat !website or !community. if i could have some help that would be great. THANKS :D
[lua]AddCSLuaFile() if(CLIENT) then hook.Add("OnPlayerChat", "blarg", function(ply, txt) if(ply == LocalPlayer() and txt:sub(1, 8) == "!website") then gui.OpenURL("http://yoursteamgroup.orgasm") end end) end [/lua] in a file in lua/autorun
Thanks! I will give it a try :dance:
Sorry, you need to Log In to post a reply to this thread.