Jump to content

Search the Community

Showing results for tags 'furnitures'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • BOHEMIA INTERACTIVE
    • BOHEMIA INTERACTIVE - NEWS
    • BOHEMIA INTERACTIVE - JOBS
    • BOHEMIA INTERACTIVE - GENERAL
  • FEATURED GAMES
    • Arma Reforger
    • Vigor
    • DAYZ
    • ARMA 3
    • ARMA 2
    • YLANDS
  • MOBILE GAMES
    • ARMA MOBILE OPS
    • MINIDAYZ
    • ARMA TACTICS
    • ARMA 2 FIRING RANGE
  • BI MILITARY GAMES FORUMS
  • BOHEMIA INCUBATOR
    • PROJECT LUCIE
  • OTHER BOHEMIA GAMES
    • ARGO
    • TAKE ON MARS
    • TAKE ON HELICOPTERS
    • CARRIER COMMAND: GAEA MISSION
    • ARMA: ARMED ASSAULT / COMBAT OPERATIONS
    • ARMA: COLD WAR ASSAULT / OPERATION FLASHPOINT
    • IRON FRONT: LIBERATION 1944
    • BACK CATALOGUE
  • OFFTOPIC
    • OFFTOPIC
  • Die Hard OFP Lovers' Club's Topics
  • ArmA Toolmakers's Releases
  • ArmA Toolmakers's General
  • Japan in Arma's Topics
  • Arma 3 Photography Club's Discussions
  • The Order Of the Wolfs- Unit's Topics
  • 4th Infantry Brigade's Recruitment
  • 11th Marine Expeditionary Unit OFFICIAL | 11th MEU(SOC)'s 11th MEU(SOC) Recruitment Status - OPEN
  • Legion latina semper fi's New Server Legion latina next wick
  • Legion latina semper fi's https://www.facebook.com/groups/legionlatinasemperfidelis/
  • Legion latina semper fi's Server VPN LEGION LATINA SEMPER FI
  • Team Nederland's Welkom bij ons club
  • Team Nederland's Facebook
  • [H.S.O.] Hellenic Special Operations's Infos
  • BI Forum Ravage Club's Forum Topics
  • Exilemod (Unofficial)'s General Discussion
  • Exilemod (Unofficial)'s Scripts
  • Exilemod (Unofficial)'s Addons
  • Exilemod (Unofficial)'s Problems & Bugs
  • Exilemod (Unofficial)'s Exilemod Tweaks
  • Exilemod (Unofficial)'s Promotion
  • Exilemod (Unofficial)'s Maps - Mission Files
  • TKO's Weferlingen
  • TKO's Green Sea
  • TKO's Rules
  • TKO's Changelog
  • TKO's Help
  • TKO's What we Need
  • TKO's Cam Lao Nam
  • MSOF A3 Wasteland's Server Game Play Features
  • MSOF A3 Wasteland's Problems & Bugs
  • MSOF A3 Wasteland's Maps in Rotation
  • SOS GAMING's Server
  • SOS GAMING's News on Server
  • SOS GAMING's Regeln / Rules
  • SOS GAMING's Ghost-Town-Team
  • SOS GAMING's Steuerung / Keys
  • SOS GAMING's Div. Infos
  • SOS GAMING's Small Talk
  • NAMC's Topics
  • NTC's New Members
  • NTC's Enlisted Members
  • The STATE's Topics
  • CREATEANDGENERATION's Intoduction
  • CREATEANDGENERATION's HAVEN EMPIRE (NEW CREATORS COMMUNITY)
  • HavenEmpire Gaming community's HavenEmpire Gaming community
  • Polska_Rodzina's Polska_Rodzina-ARGO
  • Carrier command tips and tricks's Tips and tricks
  • Carrier command tips and tricks's Talk about carrier command
  • ItzChaos's Community's Socials
  • Photography club of Arma 3's Epic photos
  • Photography club of Arma 3's Team pics
  • Photography club of Arma 3's Vehicle pics
  • Photography club of Arma 3's Other
  • Spartan Gamers DayZ's Baneados del Servidor
  • Warriors Waging War's Vigor
  • Tales of the Republic's Republic News
  • Operazioni Arma Italia's CHI SIAMO
  • [GER] HUSKY-GAMING.CC / Roleplay at its best!'s Starte deine Reise noch heute!
  • empire brotherhood occult +2349082603448's empire money +2349082603448
  • NET88's Twitter
  • DayZ Italia's Lista Server
  • DayZ Italia's Forum Generale

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Yahoo


Jabber (xmpp)


Skype


Biography


Twitter


Google+


Youtube


Vimeo


Xfire


Steam url id


Raptr


MySpace


Linkedin


Tumblr


Flickr


XBOX Live


PlayStation PSN


Origin


PlayFire


SoundCloud


Pinterest


Reddit


Twitch.Tv


Ustream.Tv


Duxter


Instagram


Location


Interests


Interests


Occupation

Found 1 result

  1. House Prefabs ---------------------------------- https://github.com/Shaanig03/Arma-3-House-Prefabs https://prnt.sc/V9UEZJUcoD_T - allows you to creates prefabs for houses and other object classes, then spawn & despawn the prefab or objects & custom loot when the player is nearby/or is away from the house, created for a survival mission that I'm longing to make before heading to Arma 4 - by default there are 115 prefabs(existing furnitures and loots) created for all houses (that is present in Altis, Stratis & Malden) Features: - create custom prefabs and define custom loot positions through 3DEN Editor for a house class or for any object class - spawned/despawning objects are created locally for the player who is near the house saving performance for the server, however loots (ground items) are global but is despawned when there is no player near the house - objects are static by default (for performance) Support (included): - survival pack mod Creating a prefab: - place your prefab house through 3DEN Editor and tag the house as a house prefab by putting the code in the house object's init: _tags = "#houseprefab_local"; ["YourPrefabName"] - you can replace 'YourPrefabName' with any name but note that these names have to be unique for the same prefab house, the same type of house cannot have two same prefab names Creating Objects & Loot Points: - you can place your furnitures or objects, and you can place loot spawning points by placing the code in any helper category object: ["mem_loot", ["Your_Loot_Table_Name"]] - to make your created prefabs appear in game map houses, execute the function in 3DEN Editor by pressing Ctrl+D or going from the top menu to "Tools" then "Debug Console...", paste the below code in debug console and execute it [] call houseprefabs_fnc_createPrefabs; - once executed, it should disable all the prefab houses and objects within the house bounding box, preventing them from spawning in game, since we want to only spawn those objects inside existing map houses - after execution, you have copied the data into your clipboard now to paste the data (script version): - open "SandboxLib\Fncs\fn_defined_housePrefabs.sqf", press ctrl+A and delete all the content and paste your new clipboard and save (mod version): create a .sqf file in your mission folder eg: "houseprefabs.sqf" and paste the clipboard to the .sqf file and execute "houseprefabs.sqf" from your "init.sqf" in the mission folder, like below: init.sqf (file): execVM "houseprefabs.sqf"; - and that's it ^_^ , and wait nope I haven't talked about defining custom loots Defining Custom Loots: - the already existing prefabs have defined loot tables, you can define new loot tables or modify/replace the existing ones - list of existing loot table variable names: c_loot_house c_loot_house_broken c_loot_house_food c_holder_airport c_holder_garage c_loot_house_slum c_holder_shed c_loot_office c_loot_shop c_loot_construction c_loot_industrial c_loot_research c_loot_military c_loot_military_abandoned c_loot_military_tower c_loot_military_office c_loot_medical - example loot table: your_loot_table_name = [ // loot table contains item arrays, these item arrays contains candidate arrays, for an item array a random candidate is selected from the candidates to add an item [ // item 1 (array) [ // candidate 1 has (item/weapon/loot_table) class names(array of strings), item count(array of numbers), item spawn chance(number 0-1), item magazine count (array of numbers) ["ItemMap","ItemGPS","c_custom_loot_table"], // item/loot_table class names [ [1], // item count (with spawn chance) 0.5, // spawn chance from 0 to 1, 1 = 100% spawn chance [[0]] // magazine count if item class is a weapon ] ], [ // candidate 2 has (item/weapon/loot_table) class names(array of strings), item count(array of numbers), item spawn chance(number 0-1), item magazine count (array of numbers) ["ItemMap","ItemGPS",""], // item/loot_table class names [ [1], // item count (with spawn chance) 1, // spawn chance from 0 to 1, 1 = 100% spawn chance [[0]] // magazine count if item class is a weapon ] ] ], [ // item 2 (array) [ // candidate 1 has (item/weapon/loot_table) class names(array of strings), item count(array of numbers), item spawn chance(number 0-1), item magazine count (array of numbers) ["ItemRadio","c_custom_loot_table"], // item/loot_table class names [ [1], // item count (with spawn chance) 1, // spawn chance from 0 to 1, 1 = 100% spawn chance [[0]] // magazine count if item class is a weapon ] ] ] ]; - you can replace the existing loot tables with your own loot classes, replace the loot table name eg to replace: "c_loot_house", you write in: c_loot_house = <loot_table_format> (script version) - to modify existing loot tables take a look at "SandboxLib\Fncs\fn_defined_loots.sqf" (script/mod version) - to create new/modify existing loot tables create a .sqf file and define your loot tables in the .sqf file and execute the file using "execVM" command - to load/add a loot table to a container: [this, missionNamespace getVariable "your_loot_table_name"] call loot_fnc_addLoot; or: [this, your_loot_table_name] call loot_fnc_addLoot; - to quickly copy your own classes I included a little script: [] spawn { if (!isNil "gearCopyMode") exitWith {}; hint parseText "gear copy - enabled<br/>------------------------------------<br/><br/>choose an item type to copy then open arsenal and press Numpad 5 to copy your wearing item"; gearClasses = []; gearType = "uniform"; gearCopyMode = true; waitUntil { !isNull (findDisplay 46) }; player addAction ["Open Arsenal",{ ["Open", true] spawn BIS_fnc_Arsenal; }]; systemChat "gear copy mode: enabled, use Numpad 5 to copy class"; systemChat format ["copy gear classes type is now %1", gearType]; player addAction ["Gear Copy",{ copyToClipboard str(gearClasses); systemChat format ["%1 classes copied", count gearClasses]; }]; player addAction ["Gear: Headgear",{ gearType = "headgear"; systemChat "copy gear classes type is now headgear"; }]; player addAction ["Gear: Uniform",{ gearType = "uniform"; systemChat "copy gear classes type is now uniform"; }]; player addAction ["Gear: Primary Weapon",{ gearType = "primaryWeapon"; systemChat "copy gear classes type is now primary weapon"; }]; player addAction ["Gear: Secondary Weapon",{ gearType = "secondaryWeapon"; systemChat "copy gear classes type is now secondary weapon"; }]; player addAction ["Gear: Handugn",{ gearType = "handgun"; systemChat "copy gear classes type is now handgun"; }]; player addAction ["Gear: Vest",{ gearType = "vest"; systemChat "copy gear classes type is now vest"; }]; player addAction ["Gear: Backpack",{ gearType = "backpack"; systemChat "copy gear classes type is now backpack"; }]; player addAction ["Gear: Goggles",{ gearType = "goggles"; systemChat "copy gear classes type is now goggles"; }]; player addAction ["Gear: Clear All Copied Classes",{ gearClasses = []; systemChat "copy gear classes - cleared"; }]; systemChat "gear copy enabled"; _arsenalDisplay = nil; _displayList = allDisplays; while {alive player} do { _currentDisplays = allDisplays; { if (!(_x in _displayList)) then { _displayList pushBack _x; _arsenalDisplay = _x; _arsenalDisplay displayAddEventHandler ["KeyDown", { _display =_this select 0; _key =_this select 1; // numpad 5 if (_key == 76) then { // get gear type _gearType = gearType; // get gear class _class = ""; if (_gearType == "uniform") then { _class = uniform player; }; if (_gearType == "primaryWeapon") then { _class = primaryWeapon player; }; if (_gearType == "secondaryWeapon") then { _class = secondaryWeapon player; }; if (_gearType == "vest") then { _class = vest player; }; if (_gearType == "backpack") then { _class = backpack player; }; if (_gearType == "goggles") then { _class = goggles player; }; if (_gearType == "headgear") then { _class = headgear player; }; if (_gearType == "handgun") then { _class = handgunWeapon player; }; if (_class != "" && !(_class in gearClasses)) then { gearClasses pushBack _class; systemChat format ["'%1' class added to copy list, copied class count: %2", _class, count gearClasses]; }; }; }]; }; } forEach _currentDisplays; sleep 1; }; }; - the above script allows you to quickly copy equipment and weapon classes in the Arsenal by pressing Numpad 5 P.S: enjoy ^_^
×