Last active
August 29, 2015 14:26
-
-
Save MattJeanes/7608a3d798dccf4a916b to your computer and use it in GitHub Desktop.
Quick one-liner to print the names, op counts, time-benches and player info of all currently spawned E2s
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for k,v in pairs(ents.FindByClass("gmod_wire_expression2")) do print(v.name,math.Round(v.context.prfbench).." ops",math.Round(v.context.timebench*1000000).." us", v.context.player:Nick(), v.context.player:SteamID()) end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment