• Print

Author Topic: ULX Ping Spoofer  (Read 6026 times)

0 Members and 1 Guest are viewing this topic.

Offline aznninja5996

  • Newbie
  • *
  • Posts: 2
  • Karma: 0
ULX Ping Spoofer
« on: March 01, 2015, 10:30:11 am »
Hello, this is my first post, and I believe this is where I can suggest new idea's for the ULX Addon. I wanted to suggest a Ping/Latency Spoofer or Faker in order to not be noticed by other players that I am the admin. I just need to raise it about 20 to 40 ping so I won't be noticed and questioned. I prefer being an undercover admin to catch those pesky hackers and cheaters. Anyways, if anyone knows of a addon or windows software that exist already, let me know please and thank you!

Offline Neku

  • Hero Member
  • *****
  • Posts: 549
  • Karma: 27
Re: ULX Ping Spoofer
« Reply #1 on: March 01, 2015, 12:12:05 pm »
How would your ping being low let them know you're an admin?
A player on my server has 5 ping, while I have 20.

Anyway, there is no Ping Spoofer as far as I know, but it is possible to change the scoreboard to show a different ping, depending on what scoreboard you have.

EDIT: Uh, let's see.

Code: Lua
  1. local meta = FindMetaTable( "Player" )
  2. local steamid = "insertsteamid"
  3. local ping = { min, max }
  4.  
  5. meta.oPing = meta.Ping
  6.  
  7. function meta:Ping()
  8.         if not self:SteamID() == steamid and self:oPing() > ping[1] then
  9.                 return self:oPing
  10.         else
  11.                 return math.random( ping[0], ping[1] )
  12.         end
  13. end

I guess that could work. This is a stand-alone script that does not rely on ULX.
« Last Edit: March 01, 2015, 12:52:30 pm by Neku »
Out of the Garry's Mod business.

  • Print