01.12.2013, 16:41
I want to make a command which will remove two vehicle objects, i only know how attach the objects.
I don't have a problem with this command:
But as i said i cant make a de-attach command to de-attach them.
I don't have a problem with this command:
Код:
if (strcmp(cmdtext, "/plsultan", true) == 0){ new sultan1 = CreateObject( 18646,0,0,0,0,0,0,80 ); // Sultan AttachObjectToVehicle( sultan1, GetPlayerVehicleID(playerid), 0.500000, 0.299999, 0.800000, 0.000000, 0.000000, 0.000000 ); new sultan2 = CreateObject( 18646,0,0,0,0,0,0,80 ); // Sultan AttachObjectToVehicle( sultan2, GetPlayerVehicleID(playerid), -0.500000, -0.799999, 0.800000, 0.000000, 0.000000, 0.000000 ); return 1; }