This is refresh button for Left Menu. Go to /control/chat.php, then find <div id=“left_menu_content” class=“float_content”> and scroll down to the last button (Leaderboard) then paste this code right below Leaderboard button:
<div id=“refresh_chat” class=“fmenu_item bhover mmenu_item” onclick=“refreshPage();”>
<div class=“fmenu_icon”>
<i class=“fa fa-retweet menui”></i>
</div>
<div class=“fmenu_text”>
<?php echo ‘Refresh Chat’; ?>
</div>
</div>
<script>
function refreshPage() {
location.reload();
}
</script>