Hey everyone I was recently screwing around with some code and decided to make a AutoTaunter. I've seen people around with it before. So here you go

var config bool bAutoTaunter;
var Int TauntInt;
if ( bAutoTaunter )
{
TauntInt = (TauntInt + 1);
if (TauntInt == 6)
{
TauntInt=1;
}
AutoTaunts(TauntInt);
}
Final Function AutoTaunts(Int Taunts)
{
Local Array<String> CharacterTaunt;
CharacterTaunt[1]="Gesture_Halt";
CharacterTaunt[2]="ThroatCut";
CharacterTaunt[3]="Gesture_Point";
CharacterTaunt[4]="PThrust";
CharacterTaunt[5]="Gesture_Halt";
PC.ConsoleCommand("Taunt " $CharacterTaunt[Taunts]);
}
-Static