10.09.2017, 18:58
Hello to all, i have problem with warning 225, i tryed to fix it with remove returns but it isnt works, thanks to all in advance
PHP код:
if( newkeys == KEY_SECONDARY_ATTACK ) //55589
{
if( IsPlayerInRangeOfPoint( playerid, 3.0, 1480.9410,-1771.8586,18.7958 ) )
{
SetPlayerPos( playerid, 386.2978,173.8582,1008.3828 );
SetPlayerInterior( playerid, 15 );
GameTextForPlayer( playerid, "Welcome to city hall", 3000, 1 );
return 1;
}
}
if( newkeys == KEY_SECONDARY_ATTACK )
{
if( IsPlayerInRangeOfPoint( playerid, 3.0, 386.2978,173.8582,1008.3828 ) )
SetPlayerPos( playerid, 1480.9410,-1771.8586,18.7958 );
SetPlayerInterior( playerid, 0);
GameTextForPlayer( playerid, "Goodbye", 3000, 1 );
return 1;
}
}
}
}
return 1;
}