error 017: undefined symbol "playerid"
#1

Код:
(712) : error 017: undefined symbol "playerid"
(714) : error 017: undefined symbol "playerid"
(717) : error 017: undefined symbol "playerid"
(719) : error 017: undefined symbol "playerid"
(724) : error 017: undefined symbol "playerid"
Код:
CMD:busroute(palyerid, params[])
	{
		if(IsAtBlueBusStop(playerid))
		{
			SendClientMessage(playerid, COLOR_TEAL, "A-1 Bus Route: East Beach - The Stadium - The Gym - The County General Hospital - Los Santos International Airport - Taxi Stand");
			return 1;
		}
		else if(IsAtBlackBusStop(playerid))
		{
			SendClientMessage(playerid, COLOR_TEAL, "A-2 Bus Route: Taxi Stand - Police Department - The Bank - All Saints Hospital - Market Station - Santa Maria Beach");
			return 1;
		}
		else
		{
			SendClientMessage(playerid, COLOR_RED, "You are not at any bus stop");
		}
		return 1;
	}
Help me !
Reply
#2

pawn Код:
CMD:busroute(playerid, params[])
{
    if(IsAtBlueBusStop(playerid))
    {
        SendClientMessage(playerid, COLOR_TEAL, "A-1 Bus Route: East Beach - The Stadium - The Gym - The County General Hospital - Los Santos International Airport - Taxi Stand");
        return 1;
    }
    else if(IsAtBlackBusStop(playerid))
    {
        SendClientMessage(playerid, COLOR_TEAL, "A-2 Bus Route: Taxi Stand - Police Department - The Bank - All Saints Hospital - Market Station - Santa Maria Beach");
        return 1;
    }
    else
    {
        SendClientMessage(playerid, COLOR_RED, "You are not at any bus stop");
    }
    return 1;
}
Reply
#3

Sorry ! I do not see
Reply
#4

You wrote palyerid instead of playerid
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)