1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
addhook("say","sdz.say")
function sdz.say(id, message)
local i = tonumber(message:sub(5))
if not i then i = id end
if not player(i, "exists") then i = id end
-- FREEZE/DEFREEZE PLAYER
if message=="!frz" then
vav=player(id, "speedmod")
parse("speedmod "..id.." -100")
end
if message=="!dfrz" then
parse("speedmod "..id.. " vav")
end
return 1
end