14.01.2015, 14:31
(
Последний раз редактировалось salev13; 14.01.2015 в 15:20.
)
See the code and told me why when i do
/fedit [Slot] Vehicle [Vehicleslot] [VehicleID] [Color1] [Color2]
When i writes in Vehicle slot 6
thats told me unknown command
Please +REP i want to post my server
/fedit [Slot] Vehicle [Vehicleslot] [VehicleID] [Color1] [Color2]
When i writes in Vehicle slot 6
thats told me unknown command
PHP код:
else if(!strcmp(option, "vehicle", true, 7))
{
if(sscanf(params, "is[32]iiii", idx, option, veh, vehid, col1, col2)) return SendClientMessage(playerid, COLOR_WHITE, "USAGE: /fedit [familyslot] vehicle [vehicleslot] [vehiclemodel] [color1] [color2]");
if(veh < 1 || veh > 25) return SendClientMessage(playerid, COLOR_GREY, "Vehicle slots are between 1 and 25.");
veh = veh-1;
if(FamInfo[idx][fVehType][veh])
{
FamInfo[idx][fVehType][veh] = 0;
FamInfo[idx][fVehCoX][veh] = 0;
FamInfo[idx][fVehCoY][veh] = 0;
FamInfo[idx][fVehCoZ][veh] = 0;
FamInfo[idx][fVehRot][veh] = 0;
FamInfo[idx][fVehCol1][veh] = 0;
FamInfo[idx][fVehCol2][veh] = 0;
DestroyVehicle(FamInfo[idx][fVeh][veh]);
}
if(vehid)
{
FamInfo[idx][fVehType][veh] = vehid;
GetPlayerPos(playerid, FamInfo[idx][fVehCoX][veh], FamInfo[idx][fVehCoY][veh], FamInfo[idx][fVehCoZ][veh]);
GetPlayerFacingAngle(playerid, FamInfo[idx][fVehRot][veh]);
FamInfo[idx][fVehCol1][veh] = col1;
FamInfo[idx][fVehCol2][veh] = col2;
FamInfo[idx][fVeh][veh] = CreateVehicle(vehid, FamInfo[idx][fVehCoX][veh], FamInfo[idx][fVehCoY][veh], FamInfo[idx][fVehCoZ][veh], FamInfo[idx][fVehRot][veh], FamInfo[idx][fVehCol1][veh], FamInfo[idx][fVehCol2][veh], 12000);
ChangeVehicleColor(FamInfo[idx][fVeh][veh], FamInfo[idx][fVehCol1][veh], FamInfo[idx][fVehCol2][veh]);
Fam[FamInfo[idx][fVeh][veh]] = idx;
format(string, sizeof(string), "{FF0000}[Admin Warn]{FF6347} %s has set family %d's vehicle slot %d to ID %d.", NORPN(playerid), idx, veh+1, vehid);
SendAdminMessage(COLOR_DARKRED, 1, string);
}
}
else SendClientMessage(playerid, COLOR_GREY, "Invalid option.");
return 1;
}