Recent content by Vampire

  1. V

    [Support] DZMS DayZ Mission System

    The first one, unless you had to add quotes to it to make it work.
  2. V

    [Support] DZMS DayZ Mission System

    Sounds needs the alert class in it. sounds[]={alert}; and I don't think you need the !isDedicated if. If anything I would have if isClient.
  3. V

    [Support] DZMS DayZ Mission System

    Assuming you want to send the mission message to one player, you need to already have that player in a variable. If you want to send it to every player you can just do this: publicVariable "missionSoundPVC";
  4. V

    [Support] DZMS DayZ Mission System

    publicVariable on the clientside "missionSoundPVC" addPublicVariableEventhandler { playSound "alert"; missionSoundPVC = nil; }; how you call it from the server missionSoundPVC = true; (owner (vehicle unit)) publicVariableClient "missionSoundPVC"; You could even get fancier and make it...
  5. V

    [Support] DZMS DayZ Mission System

    Just write your own publicVariableEventhandler in the init.sqf and call it to play the sound the same way you are using the messaging hint.
  6. V

    [Support] DZMS DayZ Mission System

    There's no easy way to change the DZMS titleText messages to hints.
  7. V

    RPT need help :S

    Kinda late, but "execVM" not "evecVM".
  8. V

    AI Vehicle Convey - Agro Issue

    https://community.bistudio.com/wiki/setCombatMode https://community.bistudio.com/wiki/setBehaviour Make sure you have both of those set to your liking.
  9. V

    Custom Music

    This might help you. It's how you can create your own custom ambient music, or remove the ambient music. http://opendayz.net/threads/tutorial-custom-ambient-music-serverside.15208/
  10. V

    AI Vehicle Convey - Agro Issue

    Have you changed their combat status? There are settings by default where they will not fire until fired upon.
  11. V

    DZMS ai not engaging players

    Were you using any part of your Infistar like no Zombie aggro? It's most likely a relations issue. An RPT would help.
  12. V

    Scripting Help Request: Player Wardrobe based on UID

    Unless you use a database trigger, or a 999 call, you can't really change the skin for a specific player, or "lock it" to their account. The only way you can try to do it otherwise is as I posted in this thread using the skin changing code, forcing it to run on that player everytime they login...
  13. V

    Help with Custom weapons on Epoch Server (RH/Cheytac)

    RH Pistol Pack had an Arma 2 version. The pack was in the Overwatch mod.
  14. V

    It should be working, make sure it has ammo? Not sure otherwise.

    It should be working, make sure it has ammo? Not sure otherwise.
  15. V

    spawning zombies

    Make sure if you are using worldspace coordinates to convert them to SQM coordinates. X, Y, Height >to> X, Height, Y
Back
Top