coftsock 90 Report post Posted February 8, 2016 (edited) Made a Script for use with the custom xm8, The feature costs 300 pops (default) and will create a local map marker on the vehicle you are next too along with its classname as the marker text that will stay on the vehicle until server restart. This download has the script and the app icon. NOTE For correct Poptab updating you need @happydayz addon http://exile.majormittens.co.uk/topic/7577-update-respectpoptabs-and-save-to-database/ Edited February 9, 2016 by coftsock 4 Share this post Link to post Share on other sites
Shix 379 Report post Posted February 9, 2016 (edited) ExileClientPlayerMoney = ExileClientPlayerMoney - _Poptabs; JUST NO Edited February 9, 2016 by Shix 1 Share this post Link to post Share on other sites
Pradatoru 3 Report post Posted February 9, 2016 First I thought this is a vehicles tracking for your own vehicles but paying to get locations of vehicles around you ,,,,, i don't know about this . 2 Share this post Link to post Share on other sites
coftsock 90 Report post Posted February 9, 2016 fixed so that the poptab deduction will now save to database Share this post Link to post Share on other sites
iJeeves 10 Report post Posted February 10, 2016 Would be cool to track your own vehicles as said above. Then would put in place. Save admins time if anything happens with the magical "vehicle stealing fairy" That appears after every restart. 5 Share this post Link to post Share on other sites
Xine 20 Report post Posted February 25, 2016 On 10-2-2016 at 2:15 AM, iJeeves said: Would be cool to track your own vehicles as said above. Then would put in place. Save admins time if anything happens with the magical "vehicle stealing fairy" That appears after every restart. That's a great idea for an APP! Would implement in a heartbeat. 1 Share this post Link to post Share on other sites
leonardos1978 33 Report post Posted April 10, 2016 +1 Share this post Link to post Share on other sites
zisb 67 Report post Posted April 10, 2016 Woah Bloody beautiful app! I love seeing all of these ideas being executed by the community. Share this post Link to post Share on other sites
Tobias Solem 559 Report post Posted April 10, 2016 Would something like this work for tracking a car you were sitting in? private["_vehicle"]; _vehicle = _this; if !(local _vehicle) then { throw "Please get in as driver first"; }; _vehDisplayName = gettext (configFile >> "CfgVehicles" >> (typeof _vehicle) >> "displayName"); hint format ["Tracking %1", _vehDisplayName]; _marker_name = "marker" + str _vehicle; _marker = createMarkerlocal [_marker_name , getPosASL _vehicle]; _marker setMarkerType "Select"; //marker type _marker setMarkerColor "ColorBlue"; //marker color _marker setMarkerText format ["%1", _vehDisplayName]; while {alive _vehicle} do { _marker setMarkerPos getpos _vehicle; }; Share this post Link to post Share on other sites
Delish 6 Report post Posted May 12, 2016 did it work ? @Tobias Solem Share this post Link to post Share on other sites