Jump to content

Kushluk

Member
  • Content Count

    205
  • Joined

  • Last visited

  • Medals

  • Medals

Community Reputation

21 Excellent

3 Followers

About Kushluk

  • Rank
    Staff Sergeant

Profile Information

  • Gender
    Male
  • Location
    Sydney, Australia

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Under functions\CONFIGURATION.sqf: ///////////////////////////////////////////////////// // ADDON CHECKING REQUIREMENTS ///////////////////////////////////////////////////// // True mods are required to play and false blacklists that mod. Optional mods should be left out. DICE_configPatches = [ // Essential DICE [ "cba_main", "CBA" , true ], [ "ACE_MAIN", "ACE" , true ], [ "CUP_Core", "CUP Terrains Core" , true ], [ "DICEMOD_OCTOBER2019", "DICE Extra Files" , true ], [ "rhs_main", "RHS RU" , true ], [ "rhsusf_main", "RHS US" , true ], [ "ace_compat_rhs_afrf3", "RHS RU COMPAT" , true ], [ "ace_compat_rhs_usf3", "RHS US COMPAT" , true ], // Blacklisted [ "gm_characters_gc_characters", "Global Mobilization" , false ], [ "vaa_arsenal", "Virtual Arsenal" , false ], [ "mcc_sandbox", "MCC Sandbox" , false ], [ "task_force_radio", "Task Force Radio" , false ], [ "acex_main", "ACE X" , false ], [ "ALIVE_main", "ALIVE" , false ], [ "SSPCM", "SSPCM" , false ], [ "BloodSplatter", "BloodLust" , false ], [ "BloodSplatterLITE", "BloodLust Lite" , false ], [ "X39_MedSys_Items", "XMEDSYS" , false ], [ "AGM_Medical", "AGM" , false ], [ "ARP_Objects", "ARP" , false ], [ "tmr_core", "TMR" , false ], [ "TPW_MODS", "TPW" , false ], [ "xdf", "XDF" , false ] ]; Get them to check the coloured text on the right side of their screen, if there is any in red or blue they are either missing mods or running blacklisted ones. You can also edit the text above to change the requirements.
  2. Haha no problem at all mate. It was developed for private use however I thought I may a well share the love :) I will certainly look at moving @DICE to steam however it shouldnt need many changes due to it mostly being sound files. The other mods are already all from the Steam workshop: CBA ACE RHS US (+ ACE Compatibility) RHS RU (+ ACE Compatibility) CUP Terrains Core ANIZAY Shoot me a PM if you want assistance with any customizations to run on your server.
  3. Absolutely you can run it in Singleplayer, though you may want to make some edits to give yourself AI teammates.
  4. After releasing my original mission in 2014, I have since been working tirelessly on this scenario privately. There are probably close to 500 hours worth of SQF code in this 1mb mission file. Your task force stationed in Anizay is assigned dynamic and complex objectives in a 5km x 5km open world. Operators will need to work tightly with their team as the majority of tasks have complex conditions such as hostage executions or explosive timers. The supported player counts are from 1-24 however 5-15 is optimal. Discord, TFR or ACRE are not required, but I very much doubt you will succeed at many objectives without a suitable method of communication. DOWNLOADS/CREDITS/TUTORIAL https://sites.google.com/view/dicemod/ includes all the information you will need to get started. I have tried to keep the mod list as short as absolutely possible whilst maintaining an authentic feel. (Current version: 2.0 - October 6, 2019) SPECIFICATIONS MISSION DOSSIER MEDIA / SCREENS CHANGELOG
  5. Any chance of getting the fix for vehicles and static weapons?
  6. Kushluk

    Titus

    These are fantastic! Great work :)
  7. KUSH_fnc_rangeFinder = { _location = screenToWorld [0.5,0.5]; _distance = round(player distance _location); _string = "Range: " + str _distance + "m"; titleText [format["<t color='#00CC00' size='1'font='PuristaBold'>%1</t>",_string], "PLAIN DOWN", -1, true, true]; sleep 3; titleFadeOut 2; }; player addAction ["<img size='0.8' color='#DC143C' image='\a3\Ui_f\data\GUI\Cfg\CommunicationMenu\transport_ca.paa' /> <t color='#DC143C'>Laser Rangefinder</t>",KUSH_fnc_rangeFinder,[],99,false,true,"","(vehicle player != player) && (commander vehicle player == player)"];
  8. Kushluk

    Cruise Missile problem

    Kylania's version: http://www.kylania.com/ex/?p=21
  9. I understand the unfortunate position you are in, however there does not seem to be any dedicated DICE servers available for the general public. The mission was always designed for approximately 10 to 20 players from the same clan who would usually operate within a dedicated team server. My clan hosts a DICE server instance, but your ping to Australia would likely make it a hassle for you. Alternatively you could possibly try to decrease the numbers of enemies, civilians etc in the init.sqf or alter the caching distance in the parameters. EDIT: In the next version, I will include a 'Population Density' parameter so that you can scale the number of units in the world to suit your player count and server strength.
  10. Mission file updated with the above fixes: https://sites.google.com/site/arma3dice/ You don't need a new @DICE mod.
  11. I have an updated mission file with fixed key-bindings and rallypoint deployment. I will upload it in a couple of hours.
  12. Sorry, this mod is aimed at realism enthusiasts. Too much of the mission is dependent on external content. Insurgent uniforms are now randomly sourced from a mixture of vanilla and RHS content.
  13. Modlist finalised: https://sites.google.com/site/arma3dice/ @DICE folder and collection will be updated on Six over the next few days when I get time. In the meantime you can manually download the @DICE addon and manually launch the correct mods if you are particularly keen. Changelog: 1) Complete overhaul of.... everything Known Issues: 1) EOD dog will not walk (Marksman DLC has broken him) 2) Rallypoint system is mostly untested New Keys: 1) Bind CUSTOM KEYS 3 & 4 in your controls menu to use the GPS. 2) CSE interaction menu will give access to the DICE operator menu. Some misc images: http://imgur.com/a/wpuhw
  14. Yeah some fairly large updates are in the works. Hold off downloading anything until I post updates. It shouldn't be too far off.
  15. Good Question! I would do it like this so it saves their loadout whenever they close the interface. This is not tested ingame. waitUntil { isnull ( uinamespace getvariable "RSCDisplayArsenal" ) }; arsenalLoadout = [player] call getLoadout; player addEventHandler ["Respawn", {[player,arsenalLoadout] spawn setLoadout; }]; You can use aerosons excellent loadout scripts here: http://forums.bistudio.com/showthread.php?148577-GET-SET-Loadout-%28saves-and-loads-pretty-much-everything%29
×