01.03.2009, 10:22
Fear, please mind the indentation!
This looks better(easier to read) and avoids chance of not working thanks to blurred indentation.
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
if(strcmp(cmdtext, "/Nrgball", true) == 0)
{
if(GetVehicleModel(GetPlayerVehicleID(playerid)) == 522)
{
SendClientMessage(playerid, COLOR_RED, "Welcome to the ball");
SetVehiclePos(GetPlayerVehicleID(playerid), -1299.1689,-98.2901,14.9644);
SetVehicleZAngle(GetPlayerVehicleID(playerid), 3.872666);
LinkVehicleToInterior(GetPlayerVehicleID(playerid), 0);
}
return 1;
}
return 0;
}