Can you elaborate a bit more detailed? I'm not quite sure I get what you want to accomplish.
Maybe use arrays instead of appends?
PHP Code:
$vbulletin->options['boofo_sucks'][] = Some info here;
$vbulletin->options['boofo_sucks'][] = Slam Boofo here;
$vbulletin->options['boofo_sucks'][] = Hit him again;
$vbulletin->options['boofo_sucks'][] = Bounce him off the floor;
$vbulletin->options['boofo_sucks'][] = Push him out the door;
This way you could 'switch' 2 array fields:
PHP Code:
$tmp = $vbulletin->options['boofo_sucks'][1];
$vbulletin->options['boofo_sucks'][1] = $vbulletin->options['boofo_sucks'][3];
$vbulletin->options['boofo_sucks'][3] = $tmp;
And afterward append them all together:
PHP Code:
echo implode($vbulletin->options['boofo_sucks']);