Jump to content

Renegade2k6

Member
  • Posts

    202
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by Renegade2k6

  1. I use a simple .bat file to load Arma3 with just the Epoch mod enabled..

     

    You need to change the steam path to match your steam path.

     

    Also add the I.P and port for the server you play on.

     

    The easiest way to do it is to create a new document,

     

    copy and paste the contents below then click save as,

     

    name your file i.e  Alpha Epoch.bat then before hitting save add " to the start and end i.e "Alpha Epoch.bat",

     

    this will create the .bat file.

     

    Double click it to join the server who's I.P and port you entered.

     

     

     

    @echo off
    echo Connecting to the Epoch Arma 3 Test Server .....
    timeout 5

    set steampath=C:\Games\Steam\steamapps\common

    set IP=195.154.185.83 
    set PORT=2302
    set MODS=@Epoch

    set addparam=-malloc=system 

    set arma3path=%steampath%\Arma 3


    start "" "%arma3path%\arma3.exe" 0 0 -skipintro "%addparam%" "-mod=%arma3path%;EXPANSION;ca;%MODS%;" -noSplash -skipintro -noPause -noFilePatching -world=empty -connect=%IP% -port=%PORT% 
    @exit

     

  2. Open up your mission.sqm and add sbh_paranoia.

     

     

    class Mission

    {
    addOns[]=
    {
    "chernarus",
    "ca_modules_animals",
    "dayz_code",
    "dayz_weapons",
    "dayz_equip",
    "dayz_vehicles",
    "cacharacters_pmc",
    "mbg_african_buildings",
    "glt_bh_wreck",
    "glt_bh_wreck_burned",
    "ca_modules_functions",
    "glt_m300t",
    "pook_h13",
    "csj_gyroac",
    "map_eu",
    "mbg_killhouses",
    "aif_arma1buildings",
    "mbg_buildings_3",
    "warehouse",
    "jetskiyanahuiaddon"
    };

     

    add it in the above section, dont forget if you add it at the end you need to add a , to the one above.

     

    "mbg_buildings_3",
    "warehouse",            <--------------------LAST COMMA
    "jetskiyanahuiaddon"   <----------------- No Comma
    };
×
×
  • Create New...