-
Content Count
257 -
Joined
-
Last visited
-
Days Won
19
Mig last won the day on December 10 2020
Mig had the most liked content!
About Mig
-
Rank
Hardened
Contact Methods
-
Website URL
https://discord.gg/ts9P7Fc https://www.youtube.com/channel/UCc2ijjbixLiILLHt3YBOiJQ
Profile Information
-
Gender
Male
-
Location
France
-
You need to modify the file: server_spawnTraders.sqf https://github.com/EpochModTeam/DayZ-Epoch/blob/master/SQF/dayz_server/compile/server_spawnTraders.sqf it should look like this: private "_trader"; { _trader = createAgent [_x select 0,_x select 1,[],0,"CAN_COLLIDE"]; {_trader removeMagazine _x;} count magazines _trader; removeAllItems _trader; removeAllWeapons _trader; removeBackpack _trader; _trader switchMove ""; _trader setDir (_x select 2); _trader setVehicleInit "this disableAI 'ANIM'; this disableAI 'AUTOTARGET'; this disableAI 'FSM'; this disableAI 'MOVE'; this disableAI 'TARGET'; this setBehaviour 'CARELESS'; this forceSpeed 0; this allowDamage false;"; _trader setUnitAbility 0.6; _trader disableAI "ANIM"; _trader disableAI "AUTOTARGET"; _trader disableAI "FSM"; _trader disableAI "MOVE"; _trader disableAI "TARGET"; _trader setBehaviour "CARELESS"; _trader setcaptive true; _trader forceSpeed 0; _trader allowDamage false; _trader enableSimulation false; _trader setPosATL _x select 1; } count _this; processInitCommands;
-
Hello, Try with : setPosATL
-
https://github.com/EpochModTeam/DayZ-Epoch/blob/master/Server Files/DZE_Server_Config/13_tavi.bat
-
Hello Send the file , i will watch.
-
-
-
Mig reacted to a post in a topic: [Release] Epoch-OriginsMod-Server-Package (Epoch 1.0.7 & Origins Mod 1.8.3)
-
higgibaby reacted to a post in a topic: [Release] Epoch-OriginsMod-Server-Package (Epoch 1.0.7 & Origins Mod 1.8.3)
-
Try to change these values: https://github.com/MigSDev5/DZMS-MissionSystem/blob/d43c281aa736690ff77d581e4a363bc2ca73bf27/DZMS/Scripts/DZMSAISpawn.sqf#L16 _wpRadius = 5; https://github.com/MigSDev5/DZMS-MissionSystem/blob/d43c281aa736690ff77d581e4a363bc2ca73bf27/DZMS/Scripts/DZMSAISpawn.sqf#L127 _wppos1 = [_xpos, _ypos+30, 0]; _wppos2 = [_xpos+30, _ypos, 0]; _wppos3 = [_xpos, _ypos-30, 0]; _wppos4 = [_xpos-30, _ypos, 0]; and try ..
-
Open the mission file , search this line : _plane = createVehicle ["AN2_DZ", [0,0,500], [], 0, "FLY"]; change to this : _plane = createVehicle ["AN2_DZ",[9244.6875, 19838.98,500], [], 0, "FLY"]; and try ..
-
Mig reacted to a post in a topic: [Release] Epoch-OriginsMod-Server-Package (Epoch 1.0.7 & Origins Mod 1.8.3)
-
did you change the call to your compile.sqf in the init file?
-
yep, I'm working on it :)
-
private["_canSearch","_loot"]; _canSearch = count nearestObjects [player, ["LADAWreck","hiluxWreck","datsun01Wreck","datsun02Wreck","SKODAWreck","UAZWreck","UralWreck","Land_Shed_W02","Land_Shed_M03"], 4] > 0; _loot=["ItemSodaPepsi", "ItemBandage", "FishCookedTrout", "FoodBeefCooked", "ItemSodaMdew", "Attachment_Kobra", "ItemBriefcase100oz", "ItemGoldBar", "ItemKiloHemp", "ItemRuby", "PartGeneric", "PartWheel", "PartGlass", "PartEngine", "ItemAntibiotic", "ItemFuelBarrel", "ItemFuelcan", "ItemHotwireKit", "Skin_CZ_Soldier_Sniper_EP1_DZ"] call BIS_fnc_selectRandom; if (_canSearch) then { sleep 2; systemChat ("Searching..."); sleep 2; systemChat ("Searching..."); if (20 > random 100) then { // 20% chance player playActionNow "PutDown"; player addMagazine _loot; titleText ["Sweet, I found something!!!", "PLAIN DOWN", 1]; }else{ titleText ["Nothing...", "PLAIN DOWN", 1]; }; };
-
-
https://github.com/MigSDev5/BTC_Logistic_Modified_Epoch_Version/blob/78602bde8d6283be1993c27ed3103a29bfb581c3/mpmission/%3DBTC%3D_Logistic/%3DBTC%3D_Logistic_Init.sqf#L23
-
-
try this https://github.com/MigSDev5/BTC_Logistic_Modified_Epoch_Version