mirror of
https://github.com/redstrate/Kawari.git
synced 2025-06-30 11:47:45 +00:00

-Renamed permissions to required_rank -Don't panic when the script author omits required_rank -Reset state in the global table after reading it, so scripts can refresh it each time
6 lines
201 B
Lua
6 lines
201 B
Lua
required_rank = GM_RANK_DEBUG
|
|
|
|
function onCommand(args, player)
|
|
local parts = split(args)
|
|
player:set_position({ x = tonumber(parts[1]), y = tonumber(parts[2]), z = tonumber(parts[3]) }, 0)
|
|
end
|