1
1
mirror of https://git.shadowkat.net/izaya/OC-PsychOS2.git synced 2024-09-21 11:11:21 -04:00
OC-PsychOS2/exec/ps.lua

5 lines
109 B
Lua
Raw Normal View History

2018-11-02 12:05:41 -04:00
print("PID# VTY# Name")
for k,v in pairs(tTasks) do
print(string.format("%4d %4d %s",k,v.e.t or 0,v.n))
2018-11-02 12:05:41 -04:00
end