still none however i have fixed that
Open the admin panel and open User option templates>modifyprofile
then find
PHP Code:
<select name="element">
<option value="0" selected>None</option>
<option value="1" >Light</option>
<option value="2" >Water</option>
<option value="3" >Wind</option>
<option value="4" >Lightning</option>
<option value="5" >Earth</option>
<option value="6" >Fire</option>
<option value="7" >Dark</option>
</select>
and replace with
PHP Code:
<select name="element">
<option value="$bbuserinfo[element]" selected>Current Element</option>
<option value="0" >None</option>
<option value="1" >Light</option>
<option value="2" >Water</option>
<option value="3" >Wind</option>
<option value="4" >Lightning</option>
<option value="5" >Earth</option>
<option value="6" >Fire</option>
<option value="7" >Dark</option>
</select>
that will fix the problem with the element returning to none.
(note that fix only works for the newest version of the element hack)