16.06.2012, 18:52
Important fix!
Guess I just found why some commands would work and some would not. For some reason I used break to stop the loop when the index wasn't found, while there are commands in the remaining indexes. Here's a simple fix, open the include and replace this:
with this:
and it should work just fine! I changed it in the download link too.
Guess I just found why some commands would work and some would not. For some reason I used break to stop the loop when the index wasn't found, while there are commands in the remaining indexes. Here's a simple fix, open the include and replace this:
pawn Code:
if(!GetPublicNameByIndex(i, s_szFunc, sizeof(s_szFunc))) {
break;
}
pawn Code:
if(!GetPublicNameByIndex(i, s_szFunc, sizeof(s_szFunc))) {
continue;
}