13.03.2011, 09:39
Why Do I keep getting errors about this? Its not empty statement:
The other line im getting errors too is this:
These are the full codes:
&
how to fix
pawn Код:
if(IsPlayerInRangeOfPoint(playerid, 10, 2350.339843,-1181.649902,1027.976562));
pawn Код:
if(IsPlayerInRangeOfPoint(playerid, 10, 1567.8489, -1898.0112, 13.5609));
pawn Код:
CMD:exit(playerid, params[])
{
if(IsPlayerInRangeOfPoint(playerid, 10, 2350.339843,-1181.649902,1027.976562));
{
SetPlayerInterior(playerid, 0);
SetPlayerPos(playerid, 1567.8489, -1898.0112, 13.5609);
return 1;
}
}
pawn Код:
CMD:enter(playerid, params[])
{
if(IsPlayerInRangeOfPoint(playerid, 10, 1567.8489, -1898.0112, 13.5609));
{
SetPlayerInterior(playerid, 5);
SetPlayerPos(playerid, 2350.339843,-1181.649902,1027.976562);
return 1;
}
}