Jump to content

meatshield

Member
  • Content Count

    54
  • Joined

  • Last visited

  • Medals

Community Reputation

13 Good

About meatshield

  • Rank
    Lance Corporal
  1. Hi everyone, Just a tiny config tweak that makes the fog on the new western sahara cdlc more brown instead of blue, to more mimic sand storms. Doesn't change anything else, doesn't affect other maps, works with or without the desert module. All signed as well. Use how you like, so feel free to include it in mod packs, take the code and use it in your own maps etc etc, no need to ask, just give a tiny credit please 😀 https://steamcommunity.com/sharedfiles/filedetails/?id=2679538279
  2. ..which whilst works fine, spanws everything via add actions and doesn't contain any information for a non scripter on how to use it to spawn a custom composition on marker A,B or C randomly at mission start. When your level of scripting is limited to execVM "scripts\scriptname.sqf"; being told "when you want to spawn a composition.." _compReference = [ COMP_NAME, POS_ATL, OFFSET, DIR, ALIGN_TERRAIN, ALIGN_WATER ] call LARs_fnc_spawnComp; is like telling someone to build a rocket and go get some moon dust it really does make you wonder just how hard it is to make a mission where there's a base in one of 2/3 possible locations and you have to go find out which one its at (with the base being random for re playability)
  3. so, i'm trying to find a way of getting a custom composition (just fortifications and a few guys, no waypoints or anything) to spawn at mission start in one of several areas. Google threw up a bunch of stuff ranging from non working scripts to using BIS_fnc_ObjectsGrabber and BIS_fnc_ObjectsMapper .. which i just cant get my head around as the wiki is typically sparse in how to actually use the damn things if you dont know how to script already, and the few threads i've found are equally vague to a non scripter Any help available for a non scripter??
  4. As the title really. I've been trying to make changes to default units and guns (fov etc) and the changes just refuse the work, however if i set up my own copies of the defaults with the changes, then it all works just fine. I've checked the requiredAddons and that all checks out ..so am i doing something wrong or are the default classes locked to editing now?
  5. So i'm trying to get ai waves to attack the players (coop), and found this video which shows the exact thing i'd like- however i cant get it to work for the life of me, i've triple checked everything but for some reason i can only get it to either show all the groups, or just the first one. Heres the mission file (test one with default units only) https://dl.dropboxusercontent.com/u/34537696/spawn%20test.Altis.rar Is it that the code longer works since the video was made?? Or am i just missing something obvious??
  6. I know this is an old thread, but non of the above works if you copy/paste it. Heres a current working one, its just a slight tweak to the ones above, prolly wont work with "spawned in" units create a flashlight.sqf with the following code { if (side _x == east) then { _x unassignItem "NVGoggles_OPFOR"; _x removeItem "NVGoggles_OPFOR"; _x removePrimaryWeaponItem "acc_pointer_IR"; _x addPrimaryWeaponItem "acc_flashlight"; _x enableGunLights "forceon"; } } ForEach allUnits; then in the init file of the unit/units put _nul = [] execVM "flashlight.sqf"
  7. i like it, i think it should be reduced a little bit though, not loads, just a little. Or, thinking about it, having the movement the same, but have it re-align a little quicker :) Overall though, nice feature :)
  8. class CfgPatches { class Meaty_Vech_B_WD { units[] = {Meaty_O_Offroad_WD}; weapons[] = {}; requiredVersion = 0.1; requiredAddons[] = {}; }; }; class CfgVehicleClasses { class Meaty_CarOWD { displayName = "M_Car (Op Woodland)"; }; }; class Offroad_01_armed_base_F; class Meaty_O_Offroad_WD :Offroad_01_armed_base_F { _generalMacro = "Offroad_01_armed_base_F"; author = "Meatshield"; scope = 2; side = 0; vehicleClass = "Meaty_CarOWD"; faction = "OPF_F"; displayName="Armed Offroad (Woodland)"; crew = "Meaty_Crew_O_WD" hiddenSelections[]= {"camo"}; hiddenSelectionsTextures[]= {"Meaty_Op_WD_Vech\data\offroad_01_ext_co.paa"}; typicalCargo[] = {"Meaty_Crew_O_WD"}; availableForSupportTypes[] = {"Drop","Transport"}; }; working config, change as needed :)
  9. he does kinda have a point though, even to completely different questions. I know it gets tiring answering the same questions all the time, but i do wonder if the people who say "do a search!", (which can be useful .. but only to a point) have actually bothered themselves most the time. The answer your looking for is either buried in a single post on page 43 out of 85 of some totally irrelevant thread which has gone off tack from its first post, or in some thread called "need help with script" .. which theres loads of, and non of them might have anything to do with your error. Of course the worst thing is .. when you dont know what the problem is .. how can you search?? specialy as if you dont get the right keywords you wont get a thing. Another thing as i'm at it .. is the "its on the wiki!" .. ok .. fine .. but where abouts? if i'm looking for a way to remove weapons from a unit, how do i know i need the removeAllWeapons scripting command on the huge list of scripting commands that have no description until you click them? Am i supposed to go through all of them from A-Z one at a time wasting hours? Easy example i know, but you get the idea.
  10. Howdy, I've got a fully working loadout script which works just fine when players pick a slot before the mission starts, then the mission is started, everyone gets what there supposed to. However if someone comes AFTER the mission has started, or died, backed out, picked another slot, and re-joined, it doesnt work :( Heres the loadout script with the only the first loadout included - _unit = _this select 0; _strLoadout = _this select 1; if (!isServer) exitWith {}; removeAllWeapons _unit; removeAllAssignedItems _unit; removebackpack _unit; removeGoggles _unit; removeHeadgear _unit; switch (_strLoadout) do { case "rifleman": { // Add clothing _unit addUniform "U_O_CombatUniform_ocamo"; _unit addHeadgear "H_HelmetO_ocamo"; _unit addVest "V_HarnessO_brn"; _unit addBackpack "B_AssaultPack_ocamo"; // Add weapons & grenades _unit addMagazines ["30Rnd_65x39_caseless_green", 10]; _unit addWeapon "arifle_Katiba_F"; _unit addPrimaryWeaponItem "acc_pointer_IR"; _unit addPrimaryWeaponitem "optic_ARCO"; _unit addMagazines ["HandGrenade", 2]; // Add items _unit addItem "NVGoggles_OPFOR"; _unit assignItem "NVGoggles_OPFOR"; _unit addItem "ItemRadio"; _unit assignItem "ItemRadio"; _unit addItem "ItemCompass"; _unit assignItem "ItemCompass"; _unit addItem "ItemMap"; _unit assignItem "ItemMap"; _unit addItem "ItemWatch"; _unit assignItem "ItemWatch"; _unit addItem "ItemGPS"; _unit assignItem "ItemGPS"; _unit addItem "FirstAidKit"; _unit addItem "FirstAidKit"; _unit addItem "FirstAidKit"; _unit addItem "FirstAidKit"; }; }; _primaryWeapon = primaryWeapon _unit; _unit selectweapon _primaryWeapon; // Fix for weapons with grenade launcher _muzzles = getArray(configFile>>"cfgWeapons" >> _primaryWeapon >> "muzzles"); _unit selectWeapon (_muzzles select 0); The script is called from the init file of each player, with null = [this, "rifleman"] call compile preprocessFile "kitout.sqf" . The script has the loadouts for every role in it, which makes it really easy to change and make sure they match, so i'd like to keep it that way if possible. Anyone have any ideas what i'm doing wrong that isnt making it work with JIP players? :confused:
  11. meatshield

    Sat map size?

    thanks bushlurker, some nice tips there!
  12. meatshield

    Sat map size?

    the are covered is 589.38 km2 + a little sea around the edges, i basically just did a 40960x40960 box in global mapper that covers the island nicely, 20480x20480 was to to small and i really didnt want to squish it. So i guess it would be grid size = 4096 cell size = 100 Never been to good at maths so it might be off.
  13. meatshield

    Sat map size?

    So i've started work on a terrain, its 4096x4096 in size. Now from what i've gathered, if you do a 1024x1024 map, you'll need a 10240x10240 sat map, 2048 is a 20480x20480. Now going from that i'm gathering i'd need a 40960x40960 sat map ... what i'm wondering .. is can i use a smaller sat map texture than 40960x40960 and make it easier to work on, or do i have to struggle on?
×