Notice that you use $text as the body of your email... where is this variable? probably it is empty.
<?php
@extract($_POST);
$name = stripslashes($name);
$email = stripslashes($email);
$game = stripslashes($game);
$clans = stripslashes($clans);
$comments = stripslashes($comments);
mail('elitegamingleague@hotmail.com',"$subject","$text","From: $name <$email>");
?>
try this
<?
foreach ($HTTP_POST_VARS as $key => $value)
{
$text="$key => $value\n";
}
$subject="hi there";
mail('elitegamingleague@hotmail.com',"$subject","$text","From: $name <$email>");
?>