Files
The-Only-Cure/media/lua/client/TOC_Animations.lua
2023-02-06 19:40:36 +01:00

25 lines
392 B
Lua

-- 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