Tests with amputating legs

This commit is contained in:
Pao
2023-02-06 19:40:36 +01:00
parent cb2fe5e36d
commit ff7915abbd
12 changed files with 299 additions and 14 deletions

View File

@@ -0,0 +1,24 @@
-- Thanks to Glytcher and Matías N. Salas for helping out with this
function SetMissingFootAnimation(check)
local player = getPlayer()
if check then
player:setVariable("IsCrawling", "true")
else
player:setVariable("IsCrawling", "false")
end
-- if isClient() then
-- sendClientCommand("TOC", "SetCrawlAnimation", {})
-- end
end