new logos

This commit is contained in:
2026-01-30 18:49:15 -05:00
parent daf8653d29
commit 2d185f3a6b
13 changed files with 160 additions and 5 deletions

View File

@@ -0,0 +1,42 @@
local user=syscall.OS_getUser()
if user~="root" then
error("Must be root to play")
end
print("Welcome to task unmanager (for HyperionOS)")
print("WARNING: This is malware it can destroy your system and you cannot exit it!!!")
print("Would you like to continue...")
print("[y/n]")
while true do
local event={syscall.IO_pullEvent()}
if event[1] then
if event[1]=="n" then
syscall.HPV_exit()
elseif event[1]=="y" then
break
end
end
end
print("Are you sure [y/n]")
while true do
local event={syscall.IO_pullEvent()}
if event[1] then
if event[1]=="n" then
syscall.HPV_exit()
elseif event[1]=="y" then
break
end
end
end
local ok, err = pcall(syscall.rootkit_getKernel)
if not ok then
print("rootkit package not installed.")
syscall.HPV_exit()
end
local kernel=err
local pid=syscall.HPV_getPid()
kernel.tasks["1"].eventq="halt"