Jump to content
🛡️FORUMS ARE IN READ-ONLY MODE Read more... ×

mchide

Member
  • Content Count

    172
  • Joined

  • Last visited

  • Medals

Everything posted by mchide

  1. mchide

    Welcome back Ivan & Martin!

    Welcome back Ivan and Martin! Stay safe!
  2. mchide

    Edit pmc mission

    Mate you started two threads with same problem in really short time... Didnt you read your first thread to the end?
  3. Solution is so close and so simple... i know and i will keep my mouth shut
  4. I used this in Takistans east air base... still there was car here and there... cars are spawned aroud houses. If house class is blacklisted than car spawn is ignored around it. Type in sivile module init to see spawn positions for cars this setvariable ["DEBUG", True, True]
  5. I think i posted somewhere this allready. You need array of house classes something like: init=YOURMODULENAME OR THIS setvariable ["blackList",[ "Land_Mil_Barracks_EP1", "Land_Mil_Barracks_i_EP1", "Land_Mil_ControlTower_EP1", "Land_Mil_House_EP1", "Land_Mil_hangar_EP1", "Land_Mil_Barracks_L_EP1", "Land_Ind_Shed_02_EP1" ]];
  6. Ok guys... im haveing one small problem, I run most of stuff from server... i use MP framework Things like this work ... : [objNull, player, "per", rCREATETASKSET, "Wobj3", [ localize "STR_xy3_1", localize "STR_xy3", localize "STR_xy3_2" ], markerPos "Wobj3" ] call RE; [objNull, player, "per", rTitleCut, "", "BLACK", 2] call RE; [objNull, player, "per", rENDMISSION, "end1"] call RE; [objNull, player, "per", rFAILMISSION, "end2"] call RE; But calling objective status... [objNull, player, "per", rSETTASKSTATE, "Wobj3", "Failed"] call RE; Allso tried with no luck { [objNull, _x, "per", rSETTASKSTATE, "W_OBJ3", "Succeeded"] call RE; }foreach [units grpBAF_ALPHA, units grpBAF_BRAVO, units grpBAF_CHARLIE, units grpBAF_DELTA, units grpBAF_Air]; Anyone have same issues?
  7. mchide

    RE Problem

    I use FSM file for sending this code around... Sorry mate, i would use someones sistem if there would not be the sistem for MP handling in game allready. Dont get me wrong... I know that your sistem is good and working ;) But maybe i made some mistake somewhere and i cant find it. F u c k is that all this work on SP or when im server. But on dedicated some code is sent and some is not!!! We have to figure this out. Or maybe someone allready did. THat the reason i posted this here.
  8. you can convert possition with function... You need functions module... _pos = position player; _result = _pos call BIS_fnc_PosToGrid; hint format ["%1",_result];
  9. This works // init.sqf file; //something missionendhere = false; yourviewdistance = 1200; //server only if (isserver) then { onplayerconnected { {publicvariable _x} foreach [ "missionendhere", "yourviewdistance " ]; }; /* We need riffle in breifing screen */ {Nameofunit removemagazine "HandGrenade_West"} foreach[1,2,3,4]; clearMagazineCargoGlobal (unitbackpack Nameofunit); clearWeaponCargoGlobal (unitbackpack Nameofunit); (unitbackpack Nameofunit) addWeaponCargoGlobal ["M24_des_EP1",1]; (unitbackpack Nameofunit) addMagazineCargoGlobal ["5Rnd_762x51_M24",4]; // Then i start briefing with MP framework // then some other server code can be here [] spawn{ Waituntil {!alive TANK}; missionendhere = true; publicvariable "missionendhere"; }; }; // Player settup [] spawn{ // some custom player code can be here... while{alive player}do{ "marker" setposmarkerlocal (position player); sleep 0.1; }; }; // Here is mission start... waituntil {!isnil "bis_fnc_init"}; setviewdistance yourviewdistance; setterraingrid 12.5; Note that it depends from backpack type. Some of backpacks cant carry weapons
  10. Developers, can please empty shells of 30mm and 40mm grenades are made and included in patch, or in next DLC. If you dont have time i can make models and texture them for you. Thank you.
  11. I soo that you edited wiki just after that... ;) I posted working solution
  12. I used "hideObject" command from server to hidde _x unit. It looks like that this command is local. Sqf works perfect on SP and if im server but when i start it from dedicated looks like that command is not broadcasted across network. Is it a bug or command is local only?
  13. mchide

    No distant muzzle flashes in OA?

    All weapons have muzzle flashes in all view lods. If soldier distance is 200m + how many pixles do you think his muzzle flash have?! Think on this.
  14. try to put complete shortcut there... your missing some
  15. You wanted structured text exsample i gave you structured texts exsample via Hints. put this in trigger condition !isNil "BIS_fnc_init" activation ["<t size='3'>This text is normal size x3</t>",position player,12,0] spawn bis_fnc_3Dcredits;
  16. _t = 10; while { _t > 0 } do { _t =_t - 1; if(_t > 5) then {hintsilent parsetext format ["<t size='1.0' color='#33FF00' align='center'>%1</t> seconds to launch",_t];}; if(_t <= 3) then {hintsilent parsetext format ["<t size='1.25' color='#FF0000' align='center'>%1</t> seconds to launch",_t];}; sleep 1; }; hintSilent ""; Or hint parsetext format ["<t size='1.0' color='#33FF00' align='center'>%1</t> welcome to my mission", name player];};
  17. You can not change config valuves from ingame... Its kind of protection. If you could do that you could cheat and ... hell
  18. Thanks K. i did not try thatone :D
  19. Ok, need help :D Im using HC and UAV module in my mission. OK with this i hide all smaller groups than x soldiers: BIS_marta_mainscope setvariable ["minsize",2,true]; Problem is that my UAV is not visible anymore... and i want it to be seen Tried my luck with: (group UAV) setvariable ["MARTA_alwaysShow",true]; Karel M. is there solution for this?
  20. mchide

    Is the optic zoom rate right?

    no worries m8
  21. mchide

    Is the optic zoom rate right?

    //why dont you test it with script... _Wep = primaryweapon player; _WepConfigName = (configFile >> "cfgWeapons" >> _Wep ); _WepDistMin = getnumber (_WepConfigName >> "distanceZoomMin"); _WepDistMax = getnumber (_WepConfigName >> "distanceZoomMax"); _WepZoomMin = getnumber (_WepConfigName >> "opticsZoomMin"); _WepZoomMax = getnumber (_WepConfigName >> "opticsZoomMax"); _WepName = getText (_WepConfigName >> "displayName"); // Now little formula... 0.25 is default view _Def_Povecava = (0.25 / _WepZoomMin); _Def_PovecavaMax = (0.25 / _WepZoomMax); // Round recived numbers _Def_Povecava = round _Def_Povecava; _Def_PovecavaMax = round _Def_PovecavaMax; player sidechat format ["%1 scope have %2x magnification ", _WepName,_Def_Povecava ]; player sidechat format ["You can adjust scope on %1 from %2x to %3x magnification.", _WepName, _Def_PovecavaMax,_Def_Povecava ]; player sidechat format["%1 is zeroed on %2 meters.",_WepName,_WepDistMin]; Start with radio trigger ; works good with scoped weapons... nic=[] execvm"xyxyxy.sqf"
  22. mchide

    More Civilan Cars

    You should modify custom actions HPP to work perfectly without errors. Takistan is using own civilians and own actions "3". Driving is randomized in FSM.
  23. mchide

    More Civilan Cars

    Maybe some custom addon is causing your error?!
×