base.lua 393 B

123456789101112
  1. local module = DMod:new("spoofin' time", {
  2. author = "koytar", categories = { "players" },
  3. dependency = "matchmaking_common", version = "0.1" })
  4. function my_name()
  5. return "Insert your name of choice here"
  6. end
  7. rawset(getmetatable(Steam),'username',function() return my_name() end) --Comment this out if you want to use your steam name
  8. return module