Fixed, a mate on efnet channel told me how to fix it, just in case you have the same error, the answer is changing
set matches [regexp {<div class="general rating">.+?<b>(.+?)/10</b>.+?<a href=\"ratings\" class=\"tn15more\">(.+?) votes</a>.+?</div>} $data -> rating votes]
TO
set matches [regexp {<div class="starbar-meta">.+?<b>(.+?)/10</b>.+?<a href=\"ratings\" class=\"tn15more\">(.+?) votes</a>.+?</div>} $data -> rating votes]
|