Thread: Force Round End
View Single Post
Lee
AlliedModders Donor
Join Date: Feb 2006
Old 06-24-2007 , 22:35   Re: Force Round End
Reply With Quote #4

Code:
for (new a = 0; a < sizeof ents_list; a++) {     if (engfunc(EngFunc_FindEntityByString, -1, "classname", ents_list[a]))     {         pause("a")     } }
The boolean variable is completely unnecessary. It's also redundant to initialize boolean variables to false in Pawn as they're always 'zeroed', but I suspect you knew that.

Last edited by Lee; 06-24-2007 at 22:40.
Lee is offline