Jump to content

[Release] Vehicle Service Point (Refuel, Repair, Rearm) [Script]


Axe Cop

Recommended Posts

Why is the format for the service_point.sqf completely boned for me?  Its nearly implossible to change any variable settings because this is what my downloaded SQF for service_point looks like:
 

  <td class="blob-line-code">
                    <div class="highlight"><pre><div class='line' id='LC1'>// Vehicle Service Point by Axe Cop</div><div class='line' id='LC2'><br/></div><div class='line' id='LC3'>private [&quot;_folder&quot;,&quot;_servicePointClasses&quot;,&quot;_maxDistance&quot;,&quot;_actionTitleFormat&quot;,&quot;_actionCostsFormat&quot;,&quot;_costsFree&quot;,&quot;_message&quot;,&quot;_messageShown&quot;,&quot;_refuel_enable&quot;,&quot;_refuel_costs&quot;,&quot;_refuel_updateInterval&quot;,&quot;_refuel_amount&quot;,&quot;_repair_enable&quot;,&quot;_repair_costs&quot;,&quot;_repair_repairTime&quot;,&quot;_rearm_enable&quot;,&quot;_rearm_costs&quot;,&quot;_rearm_magazineCount&quot;,&quot;_lastVehicle&quot;,&quot;_lastRole&quot;,&quot;_refuel_action&quot;,&quot;_repair_action&quot;,&quot;_rearm_actions&quot;,&quot;_fnc_removeActions&quot;,&quot;_fnc_getCosts&quot;,&quot;_fnc_actionTitle&quot;,&quot;_fnc_isArmed&quot;,&quot;_fnc_getWeapons&quot;];</div><div class='line' id='LC4'><br/></div><div class='line' id='LC5'>// ---------------- CONFIG START ----------------</div><div class='line' id='LC6'><br/></div><div class='line' id='LC7'>// general settings</div><div class='line' id='LC8'>_folder = &quot;service_point\&quot;; // folder where the service point scripts are saved, relative to the mission file</div><div class='line' id='LC9'>_servicePointClasses = [&quot;Land_A_FuelStation_Feed&quot;]; // service point classes (add &quot;FuelPump_DZ&quot; to use the dynamic Epoch fuel pumps)</div><div class='line' id='LC10'>_maxDistance = 10; // maximum distance from a service point for the options to be shown</div><div class='line' id='LC11'>_actionTitleFormat = &quot;%1 (%2)&quot;; // text of the vehicle menu, %1 = action name (Refuel, Repair, Rearm), %2 = costs (see format below)</div><div class='line' id='LC12'>_actionCostsFormat = &quot;%2 %1&quot;; // %1 = item name, %2 = item count</div><div class='line' id='LC13'>_costsFree = &quot;free&quot;; // text for no costs</div><div class='line' id='LC14'>_message = &quot;Vehicle Service Point nearby&quot;; // message to be shown when in range of a service point (set to &quot;&quot; to disable)</div><div class='line' id='LC15'><br/></div><div class='line' id='LC16'>// refuel settings</div><div class='line' id='LC17'>_refuel_enable = true; // enable or disable the refuel option</div><div class='line' id='LC18'>_refuel_costs = []; // free for all vehicles (equal to [[&quot;AllVehicles&quot;,[]]])</div><div class='line' id='LC19'>_refuel_updateInterval = 0.5; // update interval (in seconds)</div><div class='line' id='LC20'>_refuel_amount = 0.02; // amount of fuel to add with every update (in percent)</div><div class='line' id='LC21'><br/></div><div class='line' id='LC22'>// repair settings</div><div class='line' id='LC23'>_repair_enable = true; // enable or disable the repair option</div><div class='line' id='LC24'>_repair_costs = [</div><div class='line' id='LC25'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[&quot;Air&quot;,[&quot;ItemGoldBar&quot;,5]], // 5 Gold for helicopters and planes</div><div class='line' id='LC26'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[&quot;AllVehicles&quot;,[&quot;ItemGoldBar&quot;,2]] // 2 Gold for all other vehicles</div><div class='line' id='LC27'>];</div><div class='line' id='LC28'>_repair_repairTime = 2; // time needed to repair each damaged part (in seconds)</div><div class='line' id='LC29'><br/></div><div class='line' id='LC30'>// rearm settings</div><div class='line' id='LC31'>_rearm_enable =false; // enable or disable the rearm option</div><div class='line' id='LC32'>_rearm_costs = [</div><div class='line' id='LC33'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[&quot;ArmoredSUV_PMC_DZE&quot;,[&quot;ItemGoldBar10oz&quot;,2]], // special costs for a single vehicle type</div><div class='line' id='LC34'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[&quot;Air&quot;,[&quot;ItemGoldBar10oz&quot;,2]], // 2 10oz Gold for helicopters and planes</div><div class='line' id='LC35'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[&quot;AllVehicles&quot;,[&quot;ItemGoldBar10oz&quot;,1]] // 1 10oz Gold for all other vehicles</div><div class='line' id='LC36'>];</div><div class='line' id='LC37'>_rearm_magazineCount = 3; // amount of magazines to be added to the vehicle weapon</div><div class='line' id='LC38'><br/></div><div class='line' id='LC39'>// ----------------- CONFIG END -----------------</div><div class='line' id='LC40'><br/></div><div class='line' id='LC41'>call compile preprocessFileLineNumbers (_folder + &quot;ac_functions.sqf&quot;);</div><div class='line' id='LC42'><br/></div><div class='line' id='LC43'>_lastVehicle = objNull;</div><div class='line' id='LC44'>_lastRole = [];</div><div class='line' id='LC45'><br/></div><div class='line' id='LC46'>_refuel_action = -1;</div><div class='line' id='LC47'>_repair_action = -1;</div><div class='line' id='LC48'>_rearm_actions = [];</div><div class='line' id='LC49'><br/></div><div class='line' id='LC50'>_messageShown = false;</div><div class='line' id='LC51'><br/></div><div class='line' id='LC52'>_fnc_removeActions = {</div><div class='line' id='LC53'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (isNull _lastVehicle) exitWith {};</div><div class='line' id='LC54'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_lastVehicle removeAction _refuel_action;</div><div class='line' id='LC55'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_refuel_action = -1;</div><div class='line' id='LC56'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_lastVehicle removeAction _repair_action;</div><div class='line' id='LC57'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_repair_action = -1;</div><div class='line' id='LC58'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{</div><div class='line' id='LC59'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_lastVehicle removeAction _x;</div><div class='line' id='LC60'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} forEach _rearm_actions;</div><div class='line' id='LC61'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_rearm_actions = [];</div><div class='line' id='LC62'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_lastVehicle = objNull;</div><div class='line' id='LC63'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_lastRole = [];</div><div class='line' id='LC64'>};</div><div class='line' id='LC65'><br/></div><div class='line' id='LC66'>_fnc_getCosts = {</div><div class='line' id='LC67'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;private [&quot;_vehicle&quot;,&quot;_costs&quot;,&quot;_cost&quot;];</div><div class='line' id='LC68'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_vehicle = _this select 0;</div><div class='line' id='LC69'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_costs = _this select 1;</div><div class='line' id='LC70'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_cost = [];</div><div class='line' id='LC71'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{</div><div class='line' id='LC72'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;private &quot;_typeName&quot;;</div><div class='line' id='LC73'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_typeName = _x select 0;</div><div class='line' id='LC74'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (_vehicle isKindOf _typeName) exitWith {</div><div class='line' id='LC75'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_cost = _x select 1;</div><div class='line' id='LC76'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;};</div><div class='line' id='LC77'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} forEach _costs;</div><div class='line' id='LC78'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_cost</div><div class='line' id='LC79'>};</div><div class='line' id='LC80'><br/></div><div class='line' id='LC81'>_fnc_actionTitle = {</div><div class='line' id='LC82'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;private [&quot;_actionName&quot;,&quot;_costs&quot;,&quot;_costsText&quot;,&quot;_actionTitle&quot;];</div><div class='line' id='LC83'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_actionName = _this select 0;</div><div class='line' id='LC84'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_costs = _this select 1;</div><div class='line' id='LC85'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_costsText = _costsFree;</div><div class='line' id='LC86'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (count _costs == 2) then {</div><div class='line' id='LC87'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;private [&quot;_itemName&quot;,&quot;_itemCount&quot;,&quot;_displayName&quot;];</div><div class='line' id='LC88'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_itemName = _costs select 0;</div><div class='line' id='LC89'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_itemCount = _costs select 1;</div><div class='line' id='LC90'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_displayName = getText (configFile &gt;&gt; &quot;CfgMagazines&quot; &gt;&gt; _itemName &gt;&gt; &quot;displayName&quot;);</div><div class='line' id='LC91'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_costsText = format [_actionCostsFormat, _displayName, _itemCount];</div><div class='line' id='LC92'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;};</div><div class='line' id='LC93'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_actionTitle = format [_actionTitleFormat, _actionName, _costsText];</div><div class='line' id='LC94'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_actionTitle</div><div class='line' id='LC95'>};</div><div class='line' id='LC96'><br/></div><div class='line' id='LC97'>_fnc_isArmed = {</div><div class='line' id='LC98'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;private [&quot;_role&quot;,&quot;_armed&quot;];</div><div class='line' id='LC99'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_role = _this;</div><div class='line' id='LC100'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_armed = count _role &gt; 1;</div><div class='line' id='LC101'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_armed</div><div class='line' id='LC102'>};</div><div class='line' id='LC103'><br/></div><div class='line' id='LC104'>_fnc_getWeapons = {</div><div class='line' id='LC105'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;private [&quot;_vehicle&quot;,&quot;_role&quot;,&quot;_weapons&quot;];</div><div class='line' id='LC106'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_vehicle = _this select 0;</div><div class='line' id='LC107'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_role = _this select 1;</div><div class='line' id='LC108'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_weapons = [];</div><div class='line' id='LC109'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (count _role &gt; 1) then {</div><div class='line' id='LC110'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;private [&quot;_turret&quot;,&quot;_weaponsTurret&quot;];</div><div class='line' id='LC111'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_turret = _role select 1;</div><div class='line' id='LC112'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_weaponsTurret = _vehicle weaponsTurret _turret;</div><div class='line' id='LC113'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{</div><div class='line' id='LC114'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;private &quot;_weaponName&quot;;</div><div class='line' id='LC115'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_weaponName = getText (configFile &gt;&gt; &quot;CfgWeapons&quot; &gt;&gt; _x &gt;&gt; &quot;displayName&quot;);</div><div class='line' id='LC116'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_weapons set [count _weapons, [_x, _weaponName, _turret]];</div><div class='line' id='LC117'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} forEach _weaponsTurret;</div><div class='line' id='LC118'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;};</div><div class='line' id='LC119'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_weapons</div><div class='line' id='LC120'>};</div><div class='line' id='LC121'><br/></div><div class='line' id='LC122'>while {true} do {</div><div class='line' id='LC123'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;private [&quot;_vehicle&quot;,&quot;_inVehicle&quot;];</div><div class='line' id='LC124'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_vehicle = vehicle player;</div><div class='line' id='LC125'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_inVehicle = _vehicle != player;</div><div class='line' id='LC126'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (local _vehicle &amp;&amp; _inVehicle) then {</div><div class='line' id='LC127'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;private [&quot;_pos&quot;,&quot;_objects&quot;,&quot;_inRange&quot;];</div><div class='line' id='LC128'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_pos = position _vehicle;</div><div class='line' id='LC129'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_objects = nearestObjects [_pos, _servicePointClasses, _maxDistance];</div><div class='line' id='LC130'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_inRange = count _objects &gt; 0;</div><div class='line' id='LC131'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (_inRange) then {</div><div class='line' id='LC132'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;private [&quot;_role&quot;,&quot;_actionCondition&quot;,&quot;_costs&quot;,&quot;_actionTitle&quot;];</div><div class='line' id='LC133'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_role = assignedVehicleRole player;</div><div class='line' id='LC134'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (((str _role) != (str _lastRole)) || (_vehicle != _lastVehicle)) then {</div><div class='line' id='LC135'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// vehicle or seat changed</div><div class='line' id='LC136'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;call _fnc_removeActions;</div><div class='line' id='LC137'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;};</div><div class='line' id='LC138'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_lastVehicle = _vehicle;</div><div class='line' id='LC139'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_lastRole = _role;</div><div class='line' id='LC140'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_actionCondition = &quot;vehicle _this == _target &amp;&amp; local _target&quot;;</div><div class='line' id='LC141'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (_refuel_action &lt; 0 &amp;&amp; _refuel_enable) then {</div><div class='line' id='LC142'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_costs = [_vehicle, _refuel_costs] call _fnc_getCosts;</div><div class='line' id='LC143'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_actionTitle = [&quot;Refuel&quot;, _costs] call _fnc_actionTitle;</div><div class='line' id='LC144'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_refuel_action = _vehicle addAction [_actionTitle, _folder + &quot;service_point_refuel.sqf&quot;, [_costs, _refuel_updateInterval, _refuel_amount], -1, false, true, &quot;&quot;, _actionCondition];</div><div class='line' id='LC145'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;};</div><div class='line' id='LC146'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (_repair_action &lt; 0 &amp;&amp; _repair_enable) then {</div><div class='line' id='LC147'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_costs = [_vehicle, _repair_costs] call _fnc_getCosts;</div><div class='line' id='LC148'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_actionTitle = [&quot;Repair&quot;, _costs] call _fnc_actionTitle;</div><div class='line' id='LC149'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_repair_action = _vehicle addAction [_actionTitle, _folder + &quot;service_point_repair.sqf&quot;, [_costs, _repair_repairTime], -1, false, true, &quot;&quot;, _actionCondition];</div><div class='line' id='LC150'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;};</div><div class='line' id='LC151'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if ((_role call _fnc_isArmed) &amp;&amp; (count _rearm_actions == 0) &amp;&amp; _rearm_enable) then {</div><div class='line' id='LC152'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;private [&quot;_weapons&quot;];</div><div class='line' id='LC153'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_costs = [_vehicle, _rearm_costs] call _fnc_getCosts;</div><div class='line' id='LC154'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_weapons = [_vehicle, _role] call _fnc_getWeapons;</div><div class='line' id='LC155'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{</div><div class='line' id='LC156'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;private [&quot;_weaponName&quot;,&quot;_rearm_action&quot;];</div><div class='line' id='LC157'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_weaponName = _x select 1;</div><div class='line' id='LC158'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_actionTitle = [format[&quot;Rearm %1&quot;, _weaponName], _costs] call _fnc_actionTitle;</div><div class='line' id='LC159'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_rearm_action = _vehicle addAction [_actionTitle, _folder + &quot;service_point_rearm.sqf&quot;, [_costs, _rearm_magazineCount, _x], -1, false, true, &quot;&quot;, _actionCondition];</div><div class='line' id='LC160'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_rearm_actions set [count _rearm_actions, _rearm_action];</div><div class='line' id='LC161'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} forEach _weapons;</div><div class='line' id='LC162'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;};</div><div class='line' id='LC163'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (!_messageShown &amp;&amp; _message != &quot;&quot;) then {</div><div class='line' id='LC164'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_messageShown = true;</div><div class='line' id='LC165'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_vehicle vehicleChat _message;</div><div class='line' id='LC166'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;};</div><div class='line' id='LC167'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} else {</div><div class='line' id='LC168'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;call _fnc_removeActions;</div><div class='line' id='LC169'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_messageShown = false;</div><div class='line' id='LC170'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;};</div><div class='line' id='LC171'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;} else {</div><div class='line' id='LC172'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;call _fnc_removeActions;</div><div class='line' id='LC173'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;_messageShown = false;</div><div class='line' id='LC174'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;};</div><div class='line' id='LC175'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;sleep 2;</div><div class='line' id='LC176'>};</div></pre></div>
            </td>
          </tr>
        </table>
  </div>

I'm no expert, but this looks like its written in HTML.  the fuck?

 

I've tried opening the file using Notepad++ And Notepad.

 

 

Edit:  I guess its because I right clicked on the github and used the "save file as" option and its completely boning the format.  Whats the deal? I can't find a download zip button or anything on your github page to download normally.  I have that option if I go to the mainpage of your Github, but that does me no good because it wants me to dowload all your scripts, and I'm not interested in the others.  Why does github have to be such a pain in the ass?

 

I guess ill have to download everything and just sort out what I need.  Pretty annoying though.

Link to comment
Share on other sites

would be cool if we could split up what we can do on which building...

so for example

refueling on fuel stations, fuel pumps or fuel tanks

repairing/rearmin on garages or repair buildings...

 

any suggestions on this?

If you want you can do that by simply copying the service_point.sqf script 3 times and only enable one of repair, refuel or rearm in each script and then change the service point class and start all 3 in your init.sqf, I hope you know what i mean. :D

That should work, it's about the same performance as if the script itself would check 3 different buildings, not that the script uses much performance but still this is the easiest way without changing the whole script for what you want.

Link to comment
Share on other sites

Andygully

try paste this code for me  working

_servicePointClasses = ["Land_A_FuelStation_Feed", "Land_A_FuelStation_Feed", "Land_benzina_schnell", "Land_Ind_TankSmall", "Land_Ind_TankSmall2", "Land_Ind_TankSmall2_EP1", "Land_fuel_tank_stairs"]; // service point classes (add "FuelPump_DZ" to use the dynamic Epoch fuel pumps)

Link to comment
Share on other sites

Andygully

try paste this code for me  working

_servicePointClasses = ["Land_A_FuelStation_Feed", "Land_A_FuelStation_Feed", "Land_benzina_schnell", "Land_Ind_TankSmall", "Land_Ind_TankSmall2", "Land_Ind_TankSmall2_EP1", "Land_fuel_tank_stairs"]; // service point classes (add "FuelPump_DZ" to use the dynamic Epoch fuel pumps)

Just keep in mind this will enable the players to refuel, repair and rearm at almost any fuel tank on the map!

Link to comment
Share on other sites

thanks for the help but its just not working iv added the line to the init but no joy

that may be because you have no idea what you are doing, you can't just copy things in any file and it magically works dude :P

The part Jaroo posted needs to replace my line in the file service_point.sqf in the config section. :)

Link to comment
Share on other sites

nice way to talk to people dude! i no what im doing iv changed the line service_point.sqf to what jaroo posted also followed your instructions and had no joy so thanked people including yourself for your help and you act like a d##k i was not saying anything bad it did not work for me that is all....

Link to comment
Share on other sites

Got a quickie for you axe cop.  I've added refuel trucks to the list of refuel point vehicles, so a player can drive to their buddy in one and repair / refuel a vehicle.. It works great, but one issue I'm struggling with is that I don't want them sat in the vehicle using it as god mode, if you know what I mean.  So I'm trying to get the script to check that the vehicle is within a set distance, i.e no more than 15 meters , but no less than 5 meters, so they can't use the truck to repair / refuel itself .. Any ideas? 

Link to comment
Share on other sites

nice way to talk to people dude! i no what im doing iv changed the line service_point.sqf to what jaroo posted also followed your instructions and had no joy so thanked people including yourself for your help and you act like a d##k i was not saying anything bad it did not work for me that is all....

 

He was actually speaking tongue in cheek , I was thinking the same thing as he was (but I was not thinking so politely).  You say you put it in the init, but it doesn't go in the init, the line you were told to change goes in another file.  Maybe if you provided more information, the full code for that document you've changed maybe too ? This is us, trying to help you, help yourself :p

Link to comment
Share on other sites

Got a quickie for you axe cop.  I've added refuel trucks to the list of refuel point vehicles, so a player can drive to their buddy in one and repair / refuel a vehicle.. It works great, but one issue I'm struggling with is that I don't want them sat in the vehicle using it as god mode, if you know what I mean.  So I'm trying to get the script to check that the vehicle is within a set distance, i.e no more than 15 meters , but no less than 5 meters, so they can't use the truck to repair / refuel itself .. Any ideas? 

Quick and easy solution, after:

_objects = nearestObjects [_pos, _servicePointClasses, _maxDistance];
_inRange = count _objects > 0;

add this line:

{ if (_x distance _vehicle < 5) exitWith { _inRange = false; }; } forEach _objects;

if the vehicle is too close to any service point (usually just one in range, but in your case you never know haha) it sets "_inRange" to false so it will not add the action menu.

Should work, pretty easy i think? :D oh and change the 5 to whatever your closest range should be, obviously less than _maxDistance...

Edited by Axe Cop
Link to comment
Share on other sites

i am a little sleepy yeah maybe you are right if < 5 then it will be "out of range", I better change it in the code above when sombody else reads that  :P

 

After thinking a little about that, maybe change that to a better solution, so a vehicle cannot use itself as a service point that would be better I think? instead of this if you have more service poinst you won't get the option if you are to close which might seems like a bug   :D

 

try this instead, not tested:

if (!(_vehicle in _objects) && _inRange) then {

so if the vehicle is not a service point and in range... that should be better and makes more sense

Edited by Axe Cop
Link to comment
Share on other sites

i am a little sleepy yeah maybe you are right if < 5 then it will be "out of range", I better change it in the code above when sombody else reads that  :P

 

After thinking a little about that, maybe change that to a better solution, so a vehicle cannot use itself as a service point that would be better I think? instead of this if you have more service poinst you won't get the option if you are to close which might seems like a bug   :D

 

try this instead, not tested:

if (!(_vehicle in _objects) && _inRange) then {

so if the vehicle is not a service point and in range... that should be better and makes more sense

 

Will try this when i get up later today. It's 2am for me and I've not slept since erm... about a day ago haha! 

 

Thanks for the help on this one, I'll let you know as soon as I've tested it.  :)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...