Swordplay Posted December 10, 2013 Report Share Posted December 10, 2013 I've been searching the wiki and all over the forums here as well as google and I can't find the classname for the chainsaw so it can be spawned in. Link to comment Share on other sites More sharing options...
0 Defent Posted December 10, 2013 Report Share Posted December 10, 2013 ChainSaw (standard, orange), ChainSawB (Blue), ChainSawG (green), ChainSawP (pink), ChainSawR (red) I believe these are the names, I could be wrong. They are named that in CfgWeapons.hpp at least. Link to comment Share on other sites More sharing options...
0 Swordplay Posted December 10, 2013 Author Report Share Posted December 10, 2013 Thanks, that worked! Link to comment Share on other sites More sharing options...
0 AlienLab Posted December 10, 2013 Report Share Posted December 10, 2013 Orange one is "Chansaw" (pretty original huh) The other colors have the initial following chainsaw...for example "chainsawp" (purple chainsaw) Link to comment Share on other sites More sharing options...
0 MatthewK Posted December 12, 2013 Report Share Posted December 12, 2013 Adding this to my ikea mission loot crate has improved the competitiveness on my server loads, it has also increased the popularity of the missions. _ChainSaws = ["ChainSaw","ChainSawB","ChainSawG","ChainSawP","ChainSawR"] call BIS_fnc_selectRandom; _ChainSawChance = floor(random 100); if (_ChainSawChance < 5) then { _crate addWeaponCargoGlobal [_ChainSaws,1]; _crate addMagazineCargoGlobal ["ItemMixOil",ceil(Random 2)]}; Link to comment Share on other sites More sharing options...
0 knightsofra Posted December 17, 2013 Report Share Posted December 17, 2013 How about the classname for the oil needed to run a chainsaw? Link to comment Share on other sites More sharing options...
0 Defent Posted December 17, 2013 Report Share Posted December 17, 2013 It's not that hard to find guys: ItemMixOil for the oil needed Also @MatthewK You just gave me a splendid idea, ikea missions - mind if I borrow that concept? Link to comment Share on other sites More sharing options...
0 MatthewK Posted December 17, 2013 Report Share Posted December 17, 2013 How about the classname for the oil needed to run a chainsaw? It's mentioned in the code sample I provided :D @Defenting, that's why I post it :) Share and share alike I say :) Defent and 2sugars 2 Link to comment Share on other sites More sharing options...
0 sadpk88 Posted April 20, 2014 Report Share Posted April 20, 2014 Thanks for the class name ! :) Link to comment Share on other sites More sharing options...
0 NickStewart Posted May 8, 2014 Report Share Posted May 8, 2014 Run this query to insert the chainsaws into your traders. You can adjust buy/sell as you wish., INSERT INTO `traders_data` (`item`,`qty`,`buy`,`sell`,`order`,`tid`,`afile`) VALUES ('["ChainSawB",3]',50,'[4,"ItemGoldBar10oz",1]','[2,"ItemGoldBar10oz",1]',0,662,'trade_weapons'), ('["ChainSawB",3]',50,'[4,"ItemGoldBar10oz",1]','[2,"ItemGoldBar10oz",1]',0,530,'trade_weapons'), ('["ChainSawB",3]',50,'[4,"ItemGoldBar10oz",1]','[2,"ItemGoldBar10oz",1]',0,508,'trade_weapons'), ('["ChainSawG",3]',50,'[4,"ItemGoldBar10oz",1]','[2,"ItemGoldBar10oz",1]',0,662,'trade_weapons'), ('["ChainSawG",3]',50,'[4,"ItemGoldBar10oz",1]','[2,"ItemGoldBar10oz",1]',0,530,'trade_weapons'), ('["ChainSawG",3]',50,'[4,"ItemGoldBar10oz",1]','[2,"ItemGoldBar10oz",1]',0,508,'trade_weapons'), ('["ChainSawP",3]',50,'[4,"ItemGoldBar10oz",1]','[2,"ItemGoldBar10oz",1]',0,662,'trade_weapons'), ('["ChainSawP",3]',50,'[4,"ItemGoldBar10oz",1]','[2,"ItemGoldBar10oz",1]',0,530,'trade_weapons'), ('["ChainSawP",3]',50,'[4,"ItemGoldBar10oz",1]','[2,"ItemGoldBar10oz",1]',0,508,'trade_weapons'), ('["ChainSawR",3]',50,'[4,"ItemGoldBar10oz",1]','[2,"ItemGoldBar10oz",1]',0,662,'trade_weapons'), ('["ChainSawR",3]',50,'[4,"ItemGoldBar10oz",1]','[2,"ItemGoldBar10oz",1]',0,530,'trade_weapons'), ('["ChainSawR",3]',50,'[4,"ItemGoldBar10oz",1]','[2,"ItemGoldBar10oz",1]',0,508,'trade_weapons') Link to comment Share on other sites More sharing options...
Question
Swordplay
I've been searching the wiki and all over the forums here as well as google and I can't find the classname for the chainsaw so it can be spawned in.
Link to comment
Share on other sites
9 answers to this question
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now