Jump to content

spetsnazcu

Member
  • Content Count

    47
  • Joined

  • Last visited

  • Medals

Community Reputation

0 Neutral

About spetsnazcu

  • Rank
    Lance Corporal
  1. Same thing has been happening to me, except I found that if I turn off the mod folder I can join any server just fine. So no custom anything for me anymore, this has to be fixed.
  2. spetsnazcu

    Multiplayer: connection losses

    This is also happening to a friend of mine. If you guys find what it might be, let us know here. Thanks!
  3. spetsnazcu

    Changing uniform

    i'd love to try this out if it gets done!
  4. Hi all. -Okay so there's a flag named flagCDF. -A soldier named charlie_6 -Theres a trigger set over it with on activation flagCDF setFlagOwner charlie_6 So it all works fine, as the soldier walks to trigger zone, the flag becomes his. However, when i respawn, the flag goes back to flag pole, but once I respawn, I cannot retake the flag. I'm guessing its because once flag respawns, the flagpole loses its flagCDF name. Anyone have any idea how I can set it so everytime charlie_6 walks up to the flag pole, he can take the flag? Thanks in advanced.
  5. http://www.ferstaberinde.com/f2/en/index.php?title=Disable_BIS_Conversations
  6. spetsnazcu

    Bigfoot...has anyone found him?

    Nope, not lies, only truth. Sahrani Radio, we interviewed him and he told us. Here's proof. :D http://www.armedassault.eu/Table/Sahrani-Radio/Radio-Shows/menu-id-12.html
  7. spetsnazcu

    Spacebar scanning

    Never heard of this... lol i still play it like if it was ofp...havent really paid attention to many of the new keyboard features
  8. spetsnazcu

    Bigfoot...has anyone found him?

    Nope, when we interviewed Ivan, he told us it would most likely come out in one of the patches.
  9. spetsnazcu

    Civilian Chatter

    Actually, with the built in ALICE module(ambient civilians), the civilians go about their own lives in the town, and some meet up and start having conversations. Another time I noticed one civilian randomly died in his yard and a few civilians ran over and started crying beside his dead body and speaking with a sad tone. But as soon as firing and explotions happen, they scream as they run inside their houses.
  10. Yea it makes sence what you said. So I've rethought and redone the whole thing and now it works.
  11. No, not really. I didn't name the unit "player". I had a feeling with that code that it was required. The mission is a multiplayer for 8 players, 4 bluefor and 4 opfor. I would like all 8 playable units to be able to access the briefing, and when respawn, to keep their ammo. thanks for you patience guys lol
  12. okay, it all works great, however, only for the unit set as PLAYER, when i test it as another PLAYABLE unit, it doesn't work
  13. lol funny that you pointed that out, and you're right, however, when i switch it around the other thing doesnt start.
  14. The mission is a multiplayer for 8 players, 4 bluefor and 4 opfor. I would like all 8 playable units to be able to access the briefing, and when respawn, to keep their ammo. Okay, so aparently, the INIT is only starting the first command it is given and not the ones after it. So in my example its not starting the briefing, unless if I put it before the other code for retaining weapons. But then if I do put the briefing first, the code for retaining weapons won't work...arg... Can someone check it for me please? Thanks for your assistance advanced. Here's the code in my init.sqf while {true} do { waitUntil {!(alive player)}; // Save the weapon config of the player when he die. PlayerWeapons = weapons player; PlayerMagazines = magazines player; waitUntil {alive player}; // Give back the weapons the player had when he died. removeAllWeapons player; {player addMagazine _x;} forEach PlayerMagazines; {player addWeapon _x;} forEach PlayerWeapons; player selectweapon (primaryWeapon player); }; }; }; }; //// execVM "briefing.sqf"; }; }; }; /// waitUntil {!isNil {BIS_ACM getVariable "initDone"}}; waitUntil {BIS_ACM getVariable "initDone"}; [1, BIS_ACM] call BIS_ACM_setIntensityFunc; ////// waitUntil {!isNil {BIS_ACM1 getVariable "initDone"}}; waitUntil {BIS_ACM1 getVariable "initDone"}; [1, BIS_ACM1] call BIS_ACM_setIntensityFunc; ////// waitUntil {!isNil {BIS_ACM2 getVariable "initDone"}}; waitUntil {BIS_ACM2 getVariable "initDone"}; [1, BIS_ACM2] call BIS_ACM_setIntensityFunc; ////// waitUntil {!isNil {BIS_ACM3 getVariable "initDone"}}; waitUntil {BIS_ACM3 getVariable "initDone"}; [1, BIS_ACM3] call BIS_ACM_setIntensityFunc; ////// waitUntil {!isNil {BIS_ACMcdf getVariable "initDone"}}; waitUntil {BIS_ACMcdf getVariable "initDone"}; [1, BIS_ACMcdf] call BIS_ACM_setIntensityFunc; [bIS_ACM, 300, 500] call BIS_ACM_setSpawnDistanceFunc;
  15. spetsnazcu

    MP respawn dialog

    ah nvm, does work, however, had to put it in beginning of of the init.sqf
×