v1.8.6 - (mikethe223) Added lscor.
* add lscor
* add lscor help file
* add lscor to argentum.cfg
* add labels to coroutines
* add ps as lscor alias
* Update boot.lua version number
* add lscor (and help) to halyde packages
* fix shitty copy paste
sorry wah
* i'm fucking stupid
replace fetch with lscor in help file 💀
This commit was merged in pull request #18.
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
Usage: lscor
|
||||
Lists every active coroutine by ID and name.
|
||||
|
||||
Examples:
|
||||
lscor Lists every active coroutine by ID and name.
|
||||
@@ -0,0 +1,9 @@
|
||||
print("\27[93m"..tostring(#cormgr.corList).."\27[0m coroutines active")
|
||||
for i=1, #cormgr.corList do
|
||||
if i==#cormgr.corList then
|
||||
print("\27[93m└ "..i.."\27[0m - "..cormgr.labelList[i].." \27[0m")
|
||||
else
|
||||
print("\27[93m├ "..i.."\27[0m - "..cormgr.labelList[i].." \27[0m")
|
||||
end
|
||||
|
||||
end
|
||||
Reference in New Issue
Block a user