13.10.2012, 14:04
so stop fake commenting
answer was easy ...
see there its very poorly braced up
so it should be
it will work now
u added an extra open ( and an extra ) closing brace over there ...,
answer was easy ...
PHP код:
if((P_DATA[ playerid ][ P_InDM ] == 0 )return SendError( playerid, "[ERROR]: Cant use any commands while dming ..!!"));
so it should be
Код:
if( P_DATA[ playerid ][ P_InDM ] == 0 ) return SendError( playerid, "[ERROR]: Cant use any commands while dming ..!!");
u added an extra open ( and an extra ) closing brace over there ...,