Search results

  1. S

    Simple AI Tutorial (no rMod or DayZ_Factions)

    If you post your updated code I'll edit it to work for a3 and send it back.
  2. S

    Simple AI Tutorial (no rMod or DayZ_Factions)

    This is working in Arma 3 after changing the classnames of weapons,skins,ammo, etc. Thanks again!
  3. S

    Editing the in-game map.

    post the snippet from your mission.sqm where its located
  4. S

    How can I add Rocket_DZ model back to server

    This is the list from my server/compile/server_playerLogin.sqf Above the list of available skins is how you put a skin permanently on someone. Giving someone a perm skin will result in them having it everytime they log in. If wearing a ghillie when they log out, they will lose it when they come...
  5. S

    Editing the in-game map.

    class Item7 { position[]={13642.777, 3054.5151, 0}; name="The Rook Island"; text="Rook Island"; type="waypoint"; colorName="ColorBlue"; }; class Item8 { position[]={13004.194, 3731.8003, 0}; name="Bridge"; text="Bridge to Rook island"; type="waypoint"; colorName="ColorBlue"; }; }; You have the...
  6. S

    Editing the in-game map.

    Here's all mine class Item7 { position[]={11453.7,317,11333}; name="tradingpost"; text="Trading Post No Stealing No PVP"; type="Town"; colorName="ColorBlack"; }; class Item8 {...
  7. S

    Editing the in-game map.

    Don't know if you meant it or not but my comp flagged that link immediately for malicious content. I will not be dling anything from you. Sorry, you post a snippet of that part of the mission if you want.
  8. S

    Editing the in-game map.

    upload the mission.sqm
  9. S

    Editing the in-game map.

    position[]={354,[13651.8,3052.63,0.001}; This is your pos in the dayz format. x,y,z (z being distance above GROUND) The standard Arma format is x,z,y (z being distance above SEA LEVEL) The distance above sea level shouldn't matter for this so all you have to do is switch y and z around...
  10. S

    Skin depending of the username (or how to add custom skins for factions ? )

    Im not sure how to do that. You can try using this http://opendayz.net/threads/random-clothing-parcels.8423/unread and maybe turn them into parcels and add the parcel to the custom loadout.
  11. S

    Skin depending of the username (or how to add custom skins for factions ? )

    rmod is not necessary post #42 has the snippet from my server_playerlogin file. I do not have rmod and most of those work. Some limit inventory space, affect npc behavior and wont let u get in cars together. If anyone knows of fixes for these please tell me
  12. S

    Bus Route

    i read on the wiki that changing the combat mode and behavior will affect if they stick to the roads or not
  13. S

    DayZ Admin tools

    HOPLIFT. If you come up invisible then the skin is most likely banned for that map. If you can figure out how to unban them then they should work.
  14. S

    DayZ Admin tools

    In server_playerlogin.sqf find this line if (!(_model in ["SurvivorW2_DZ","Survivor2_DZ","Sniper1_DZ","Soldier1_DZ","Camo1_DZ","BanditW1_DZ","Bandit1_DZ","SurvivorW2_DZ"])) then { _model = "Survivor2_DZ"; }; You can add Rocket_DZ and a whole bunch of others. Here is what mine looks...
  15. S

    dayz mission addin (serverside scripts)

    If your trying to remove the anamolies you need to delete the doghouses in the mission.sqm that have the anomalies attached to them. Dont forget to change the total number of items.
  16. S

    Skin depending of the username (or how to add custom skins for factions ? )

    You have to add them in here as well if (!(_model in...
  17. S

    HALO Jumps for dayz

    I was spawning in with broken legs or knocked out when I had too much in my custom loadout. And had a problem with people not being able to interact with stuff (twice) once because I had ai group civillian set as enemy, and again when I was testing skins. Some skins wont allow you to enter some...
  18. S

    DayZ Admin tools

    I am going blind trying to add this BE stuff to mine! Can anyone help me?
  19. S

    dayz mission addin (serverside scripts)

    In the vehinit.sqf If (typeOf _x in ["Mi17_DZ"]) then Just add the classnames but stick to the format ["","","","",""] If (typeOf _x in ["Mi17_DZ","hueyclassname","lilbirdclassname"]) then
  20. S

    How to set view distance?

    http://opendayz.net/index.php?threads/adding-snow-to-your-server.6960/ This is for snow but also has instructions for clear skies and view distance post #1 for the instructions and script post #9 for the BE. make sure you change the values to match what you put in the effects.sqf
Back
Top