Kolmain 6 Posted February 25, 2011 Is there anyway (im spawning composition btw) to tell the AI to turn on their campfires that they are near? Thanks! Share this post Link to post Share on other sites
ryguy 10 Posted February 25, 2011 You mean if you're the group leader? Share this post Link to post Share on other sites
tpw 2315 Posted February 25, 2011 Yes, select the unit with F whatever, hit 6, then there should be an option to light a fire (or put out a lit one). Share this post Link to post Share on other sites
swargy 10 Posted February 25, 2011 I don't see how that wouldn't be possible. Share this post Link to post Share on other sites
Kolmain 6 Posted February 25, 2011 Theres no way to light a campfire in a radius? maybe via trigger? Share this post Link to post Share on other sites
granQ 293 Posted February 25, 2011 http://community.bistudio.com/wiki/inflame Share this post Link to post Share on other sites
ProfTournesol 956 Posted February 25, 2011 (edited) I don't see how that wouldn't be possible. Useless post ever. This forum isn't a place for spamming. Theres no way to light a campfire in a radius? maybe via trigger? Of course, use the inflame command. EDIT : too late :rolleyes: EDIT 2 : you can try some actions like FireInFlame. Edited February 25, 2011 by ProfTournesol Share this post Link to post Share on other sites
Kolmain 6 Posted February 25, 2011 Right, but they are part of compositions so how can I do that?... Share this post Link to post Share on other sites
f2k sel 164 Posted February 25, 2011 (edited) If your creating the composition at a game logic named gamelogic you could use this placed in the gamelogic or trigger, it will light fires within a 20 meter radius To turn on things = nearestObjects [gamelogic,["land_campfire"],20]; {_x inflame true;} forEach things; To turn off things = nearestObjects [gamelogic,["land_campfire"],20]; {_x inflame true;} forEach things; Not tested with compositions but should work. Edited February 25, 2011 by F2k Sel Share this post Link to post Share on other sites
Kolmain 6 Posted February 25, 2011 Works like a charm! Thanks! :D Share this post Link to post Share on other sites