Help with my code
#1

Hey my code gives me errors but I don't know why and how to fix it:

Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
	if (strcmp("/aup", cmdtext, true, 10) == 0)
	{
		if(IsPlayerInRangeOfPoint(playerid, 7.0, 949.50, -1468.24, 17.39))
		( // line 119
		MoveObject(elevator1, 950.55139160156, -1468.2270507813, 16.267026901245, 2.00);
		MoveObject(elevator2, 949.18682861328, -1468.2270507813, 16.267026901245, 2.00);
		MoveObject(elevator3, 947.82708740234, -1468.2270507813, 16.267026901245, 2.00);
		return 1;
	}
	return 0;
}
These errors:

Код:
C:\...(119 -- 120) : error 001: expected token: ")", but found ";"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


1 Error.
Thanks for your help
Reply
#2

pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
    if (strcmp("/aup", cmdtext, true, 10) == 0)
    {
        if(IsPlayerInRangeOfPoint(playerid, 7.0, 949.50, -1468.24, 17.39))
        {
             MoveObject(elevator1, 950.55139160156, -1468.2270507813, 16.267026901245, 2.00);
             MoveObject(elevator2, 949.18682861328, -1468.2270507813, 16.267026901245, 2.00);
             MoveObject(elevator3, 947.82708740234, -1468.2270507813, 16.267026901245, 2.00);
        }
        return 1;
    }
    return 0;
}
Reply
#3

lol thank you so much
Reply
#4

pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
    if (strcmp("/aup", cmdtext, true, 10) == 0)
    {
        if(IsPlayerInRangeOfPoint(playerid, 7.0, 949.50, -1468.24, 17.39))
        { //here
        MoveObject(elevator1, 950.55139160156, -1468.2270507813, 16.267026901245, 2.00);
        MoveObject(elevator2, 949.18682861328, -1468.2270507813, 16.267026901245, 2.00);
        MoveObject(elevator3, 947.82708740234, -1468.2270507813, 16.267026901245, 2.00);
        return 1;
    }
    return 0;
}
You put a '(' instead '{'
Reply
#5

Quote:
Originally Posted by [M]xFire
Посмотреть сообщение
You put a '(' instead '{'
And he forgot the } above return 1;
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)