mirror of
https://github.com/redstrate/Kawari.git
synced 2025-06-30 19:57:46 +00:00
10 lines
270 B
Lua
10 lines
270 B
Lua
![]() |
required_rank = GM_RANK_DEBUG
|
||
|
|
||
|
function onCommand(args, player)
|
||
|
local sender = "[invis] "
|
||
|
local usage = "\nThis command makes the user invisible to all other actors."
|
||
|
|
||
|
player:toggle_invisibility()
|
||
|
player:send_message(sender.."Invisibility toggled.")
|
||
|
end
|