09.09.2017, 22:24
PHP код:
public onCreateFactionVehicle(factionid, model, Float:X, Float:Y, Float:Z, Float:Angle, c1, c2) {
new id = mysql_insert_id();
new msg[128];
format(msg, sizeof(msg), "* Faction Vehicle SQL ID: %d", id);
ABroadcast(X11_YELLOW, msg, EAdminFlags_FactionAdmin);
if(factionid == 1)
{
new carid = CreateVehicle(model,X,Y,Z,Angle,c1,c2,DEF_RESPAWN_DELAY,1);
}
else
{
new carid = CreateVehicle(model,X,Y,Z,Angle,c1,c2,DEF_RESPAWN_DELAY,0);
}
}