Hovis 0 Posted April 14, 2011 Lo folks, just a quickie question (title is a bit of a give away). Can you have drones in multiplayer games, and if so, could somebody tell me how to set them up. Basically I just want somebody to be able to operate a drone as CAS/recon for an infantry element in a MP environment. Share this post Link to post Share on other sites
Lonestar 11 Posted April 14, 2011 http://community.bistudio.com/wiki/UAV Share this post Link to post Share on other sites
Hovis 0 Posted April 14, 2011 Thanks, I'll give that a go. And I'll add that wiki to my favourites to say me asking nub questions in future. :D Share this post Link to post Share on other sites
=101AD=Richard 10 Posted April 14, 2011 Youll also need to resync your player if he respawns, put this in the init line of the units you sync with the uav module this addEventHandler ["Killed", {uav synchronizeObjectsAdd [this];}]; And this will help if you dont want the UAV to die in MP, also this will give it unlimited fuel and the AI will never target anything on their own this flyinheight 500; this allowdamage false; this setcaptive true; this setBehaviour "careless"; this setCombatMode "BLUE"; this disableAI "AUTOTARGET";this disableAI "TARGET"; nul = this spawn { while {alive _this} do { _this setFuel 1; sleep 60 } }; Share this post Link to post Share on other sites
HunterTX 10 Posted April 15, 2011 This one works great as well! http://forums.bistudio.com/showthread.php?t=99545 Share this post Link to post Share on other sites