2019-04-25, 02:07 PM
PHP Code:
482: if(isequal(operator_str, "")) {
483:? ? ?if(int_check == 1) PlayerInfo[playerid][pInfo:id] = strval(str_split[1]);
484:? ? ?else if(int_check == 2) PlayerInfo[playerid][pInfo:id] = floatstr(str_split[1]);
485: }
486:?else {
487:? ? ?if(int_check == 1) PlayerInfo[playerid][pInfo:id] = strval(str_split[1]);
488:? ? ?else if(int_check == 2) PlayerInfo[playerid][pInfo:id] = floatstr(str_split[1]);
489:? ? ?else format(PlayerInfo[playerid][pInfo:id], 256, "%s", str_split[1]);
490: }
.pwn(488) : warning 213: tag mismatch
It's funny because lines 484 and 488 are basically the same, just the different operator and yet I get an error on 488. Why?