View Single Post
HamletEagle
AMX Mod X Plugin Approver
Join Date: Sep 2013
Location: Romania
Old 07-15-2020 , 11:06   Re: how to fix warning 213: tag mismatch
Reply With Quote #9

That's not what I said. You have an example in the second while loop.

PHP Code:
while((var = something)) 
This is the equivalent of:
PHP Code:
var = something
while(var)
{
    
//code that uses var
    
var = something

__________________

Last edited by HamletEagle; 07-15-2020 at 11:10.
HamletEagle is offline