Untitled
Anonymous
plain_text
01/28/2025 3:42 PM
828 B
20
Indexable
toggleezprone()
{
if(self.ezprone==false)
{
self iPrintln("Fast Prone ^2ON");
self.ezprone=true;
self instantProneBind();
}
else if(self.ezprone==true)
{
self iPrintln("Fast Prone ^1OFF");
self.ezprone=false;
self notify("stop_prone");
}
}
instantProneBind() /////WORK IN PROGRESS
{
self endon("stop_prone");
self endon("disconnect");
for(;;)
{
self notifyOnPlayerCommand("ezp", "+stance"); ///////
self waittill("ezp");
self setStance("prone");
wait 0.5; ////
}
}Editor is loading...
Leave a Comment