Search the Community
Showing results for tags 'cgf'.
Found 3 results
-
GF Auto Loot Script - Mod by GEORGE FLOROS [GR] Description: GF Auto Loot Script , will detect the enable Mods , without editing lists. You are free to do anything but i would like to give me Credits for this! Simple and easy to use and adapt . Have Fun ! Installation / Usage: For usage instructions and information of how to use the GF Auto Loot Script please refer to the included documentation and/or example mission. Place in your mission the files . There is everything included , in the initServer.sqf , to copy paste in your mission . https://community.bistudio.com/wiki/SQF_syntax Don't try to open this with the simple notepad. For everything that is with comment // in front or between /* means that it is disabled , so there is no need to delete the extra lines. You can open this ex: with notepad++ https://notepad-plus-plus.org/ and also use the extra pluggins (this way will be better , it will give also some certain colours to be able to detect ex. problems ) http://www.armaholic.com/page.php?id=8680 or use any other program for editing . For the Compilation List of my GF Scripts , you can search in: https://forums.bohemia.net/forums/topic/215850-compilation-list-of-my-gf-scripts/ Notes: GF Auto Loot Script , will detect the enabled Mods , without editing lists. There are 4 options available : 1 = Load every Mod + Bohemia Items , 2 = Load every Mod - No Bohemia Items , 3 = Load Bohemia Items Only , 4 = Custom items only There is a Possibility option available. There are Blacklist Zones available , 5 from default and a safe distanse from players , to prevent the loot from spawn. The loot will spawn also , at the spawned or placed in editor Buildings. There is also included a mod version , posible to unpack and edit. Credits and Thanks to : Thanks to All script contributors Thanks to everyone who tries to do the best for this game! Thanks to BIS for such a great platform . Thanks to BIS Community and BIS Community Forums . Thanks to Armaholic Community and Forums . Changelog: v3.1 Fixed , working now also on Dedicated , with auto init. v3.0 A lot of the previous code is reedited. Added option for the spawned items number. Code optimization. v2.0 It is possible to add your custom item list. There are 4 options available : 1 = Load every Mod + Bohemia Items , 2 = Load every Mod - No Bohemia Items , 3 = Load Bohemia Items Only , 4 = Custom items only Changed the codes for the search of the configs. Minor Fixes. v1.0 Forum topic: - Armaholic forums http://www.armaholic.com/forums.php?m=posts&q=40299 Armaholic GF Auto Loot Script - Mod Thank you very much Realthinged , i hope you like it ! You can add a case 4 : case 4 : { /* ________________ How to disable a certain mod : ________________ example 1 : (!(getText( _x >> 'author' ) == 'The CUP Team')) example 2 : (!(getText( _x >> 'DLC' ) == 'CUP_Weapons')) */ //________________ Load every Mod / No CUP Loot ________________ _CfgWeapons = ("(!(getText( _x >> 'author' ) == 'The CUP Team')) && getNumber (_x>> 'scope') > 1" configClasses (configfile >> "CfgWeapons")) apply {configName _x}; "getNumber (_x >> 'scope') >= 2 && {getNumber (_x >> 'type') in [256,16,2*256,3*256,6*256] && {_CfgWeapons pushBack (configName _x);false}}"configClasses (configFile >> "CfgMagazines"); _CfgGlasses = ("(!(getText( _x >> 'author' ) == 'The CUP Team')) && getNumber (_x >> 'scope') > 1" configClasses (configfile >> "CfgGlasses")) apply {configName _x}; _cfgArray_backpack = ("(!(getText( _x >> 'author' ) == 'The CUP Team')) && getNumber (_x >> 'isbackpack') isEqualTo 1 && getNumber (_x>> 'scope') >1 && getNumber (_x>> 'maximumLoad') != 0" configClasses (configfile >> "CfgVehicles")) apply {configName _x}; _Loot_case = "Load every Mod - No CUP Loot"; _Select_Loot_Loaded = true; }; or if you want to exclude completely the weapons for example : go to this line : //________________ To disable the weapons completely , you can delete for example the: _CfgWeapons ________________ GF_Auto_Loot_with_userconfig_cfgArray = _CfgWeapons + _CfgGlasses + _cfgArray_backpack;
-
GF Auto Loot with userconfig Mod
GEORGE FLOROS GR posted a topic in ARMA 3 - ADDONS & MODS: COMPLETE
GF Auto Loot with userconfig by GEORGE FLOROS [GR] Description: GF Auto Loot with userconfig , will detect the enable Mods , without editing lists. You are free to do anything but i would like to give me Credits for this! Simple and easy to use and adapt . Have Fun ! Installation / Usage: To install GF Auto Loot with userconfig , you should use modfolders to keep it seperate from the official game content to prevent issues. With Arma 3 you can use different ways to set up your modfolders to use custom content you have downloaded. Please visit the Arma 3 Mod install instructions page for more information about using custom mods and addons in Arma 3. Place the "userconfig" folder into your game install folder, usually: "C:\Program Files (x64)\Steam\steamapps\common\Arma 3". You may already have "userconfig" folder from other addons and/or mods in which case it is safe to merge the contents from this archive. https://community.bistudio.com/wiki/SQF_syntax Don't try to open this with the simple notepad. For everything that is with comment // in front or between /* means that it is disabled , so there is no need to delete the extra lines. You can open this ex: with notepad++ https://notepad-plus-plus.org/ and also use the extra pluggins (this way will be better , it will give also some certain colours to be able to detect ex. problems ) http://www.armaholic.com/page.php?id=8680 or use any other program for editing . For the Compilation List of my GF Scripts , you can search in: https://forums.bohemia.net/forums/topic/215850-compilation-list-of-my-gf-scripts/ Notes: This mod , is including a userconfig folder. The userconfig folder , must be in the main arma 3 game folder. Inside the userconfig folder , are the settings. To make changes in the userconfig , you need to close the game. GF Auto Loot with userconfig , will detect the enabled Mods , without editing lists. There are 4 options available : 1 = Load every Mod + Bohemia Items , 2 = Load every Mod - No Bohemia Items , 3 = Load Bohemia Items Only , 4 = Custom items only There is a Possibility option available. There are Blacklist Zones available , 5 from default and a safe distanse from players , to prevent the loot from spawn. The loot will spawn also , at the spawned or placed in editor Buildings. More information inside the Settings.sqf It is also posible to unpack and edit. Credits and Thanks to : Thanks to All script contributors Thanks to everyone who tries to do the best for this game! Thanks to BIS for such a great platform . Thanks to BIS Community and BIS Community Forums . Thanks to Armaholic Community and Forums . Changelog: v3.1 Fixed , working now also on Dedicated , with auto init. v3.0 A lot of the previous code is reedited. Added option for the spawned items number. Code optimization. v2.0 It is possible to add your custom item list. There are 4 options available : 1 = Load every Mod + Bohemia Items , 2 = Load every Mod - No Bohemia Items , 3 = Load Bohemia Items Only , 4 = Custom items only Changed the codes for the search of the configs. Minor Fixes. v1.0 Forum topic: - Armaholic forums http://www.armaholic.com/forums.php?m=posts&q=40300 Armaholic GF Auto Loot with userconfig -
Hi, I'm having a trouble when I create CfRadio in my Description.ext file. It says "radio message GodDamnit not found". Class CfgRadio { sounds[] = {"GodDamnit"}; Class GodDamnit { Name = "GodDamnit" ; Sound[] = {"Goddamnit.ogg", db + 1, 1.0}; Title = "For FUCK SAKE!"; }; };