Blockland Forums > Suggestions & Requests
Toggle Crouch
Alt:
If this already made I searched for it, but im requesting a toggle crouch client sided command with a keybind, thats about it. Thanks if anyone decides to do this.
Setro:
Do you mean keybinds for this?
crouch(1);
and
crouch(0);
Alt:
yes! that makes it more clear doesn't it.
ChappersTeddy:
so, like, a crouch option with 3 stages?
1. stand
2. kneel
3. crouch
Xalos:
Make a folder in Add-Ons labelled Client_SomeTextHere, make a Description.txt with text inside, and then this:
--- Code: (Client.cs) ---package ToggleCrouch
{
function crouch(%tog)
{
Parent::crouch($Crouching = !$Crouching);
}
};
activatePackage("ToggleCrouch");
--- End code ---