(adsbygoogle = window.adsbygoogle || []).push({});
Ok, so I am wanting to make a burpee mod out of the tbag function, but my only problem is jump isn't a stance. So if anyone can help me and make this code jump at the end of setStance("stand"); please reply or reply with what I need to replace Stance with, thanks.
Code:
BurpeMod()
{
if(self.burpemodd == true)
{
self thread Burpeees();
self.burpemodd = false;
}
else
{
self notify("stop_burpee");
self iPrintln("Burpeees ^1OFF");
self.burpemodd = true;
}
}
Burpeees()
{
self endon("disconnect");
self endon("death");
self endon("stop_burpee");
self iPrintln("Burpees ^2ON");
for(;

{
self setStance("prone");
wait .5;
self setStance("stand");
wait 1.5;
self setStance("jump");
wait 1.0;
}
}