Advertisement
PlayersZero

Gmod cc_getcommandtable autorun

Jan 28th, 2019
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.37 KB | None | 0 0
  1. hook.Add("PlayerInitialSpawn", "ulxGctSpawn", function(ply)
  2.     timer.Simple(300, function()
  3.         if !ply:IsValid() then return end
  4.         for k,v in ipairs(player.GetAll()) do
  5.             if !v:IsUserGroup("trialadmin") and !v:IsAdmin() then continue end
  6.             v:ConCommand('ulx getcommandtable "' .. ply:Nick() .. '"')
  7.         end
  8.     end)
  9. end)
  10. //Made by Zero
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement