Hey everyone, I am not looking for a straight up "this is how you do it for me" answer. I am going through the scripts and trying to learn the different aspects of LUA, especially those I will be using in my game. I am working on turning off the HUD altogether because it is not needed. So, I found this in the globals:
SendMessageF("hidehuds",0)
end
function ShowHuds()
SendMessageF("showhuds",0)
end
Do I switch the "0" to "1" to change the hidehuds to true? Or do I need to script it separately and write it as its own function? Any help and advice of this would be appreciated.