Thread: [Solved] Compiler Internal Error
View Single Post
edon1337
Penguin Enthusiast
Join Date: Jun 2016
Location: Macedonia
Old 07-31-2019 , 14:17   Re: Compiler Internal Error
Reply With Quote #4

Fixed.

Natsheh's post + this

Code:

    if( szFlags, "v" ) != -1 && is_user_connected( id ) ) 
    { 
        set_speak( iPlayer, SPEAK_MUTED ); 
    }
-->
Code:
	if( equali( szFlags, "v" ) != -1 && is_user_connected( id ) )
	{
		set_speak( iPlayer, SPEAK_MUTED );
	}
I'm interested in knowing why only 2 mistakes would cause such confusing error?
__________________

Last edited by edon1337; 07-31-2019 at 14:18.
edon1337 is offline