How to change some code

Kayvster

New Member
Is there a tool or something that can change

Code:
_vehicle_1 = objNull;
if (true) then
{
  _this = createVehicle ["Land_PBstadS", [1043.5726, 2335.2249, 0.27577388], [], 0, "CAN_COLLIDE"];
  _vehicle_1 = _this;
  _this setDir -762.263;
  _this setPos [1043.5726, 2335.2249, 0.27577388];
};

to

Code:
_vehicle_1 = objNull;
sleep 0.01; if (true) then
{
  _this = createVehicle ["Land_PBstadS", [1043.5726, 2335.2249, 0.27577388], [], 0, "CAN_COLLIDE"];
  _vehicle_1 = _this;
  _this setDir -762.263;
  _this setPos [1043.5726, 2335.2249, 0.27577388];
};


and also carry on the count from where it ended? I want add to a main.sqf that exists already from my mission.sqf that I have made in arma editor. There are a few thousand parts that need to be added to it so im hoping there is an easy way!
 
Back
Top