dumle29 0 Posted September 26, 2012 (edited) So i really dont know what i'm doing wrong. I have set the difficulty to regulare.This is the difficulty part of my ArmA2OAProfile file:class Difficulties{ class Recruit { class Flags { Armor=1; FriendlyTag=1; EnemyTag=1; HUD=1; HUDPerm=1; HUDWp=1; HUDWpPerm=1; WeaponCursor=1; AutoAim=1; AutoGuideAT=1; 3rdPersonView=1; ClockIndicator=1; Map=1; Tracers=1; AutoSpot=1; UltraAI=0; DeathMessages=1; NetStats=1; VonID=1; }; skillFriendly=0.34999999; skillEnemy=0.34999999; precisionFriendly=0.2; precisionEnemy=0.2; }; class Regular { class Flags { Armor=0; FriendlyTag=1; EnemyTag=0; HUD=1; HUDPerm=0; HUDWp=1; HUDWpPerm=0; WeaponCursor=1; AutoAim=0; AutoGuideAT=0; 3rdPersonView=1; ClockIndicator=1; Map=1; Tracers=0; AutoSpot=0; UltraAI=0; DeathMessages=1; NetStats=1; VonID=1; }; skillFriendly=0.44999999; skillEnemy=0.44999999; precisionFriendly=0.34999999; precisionEnemy=0.34999999; }; class Veteran { class Flags { Armor=1; FriendlyTag=0; EnemyTag=0; HUD=1; HUDPerm=0; HUDWp=1; HUDWpPerm=0; WeaponCursor=1; AutoAim=0; AutoGuideAT=0; 3rdPersonView=1; ClockIndicator=0; Map=0; Tracers=1; AutoSpot=0; UltraAI=0; DeathMessages=0; NetStats=1; VonID=1; }; skillFriendly=0.75; skillEnemy=0.75; precisionFriendly=0.75; precisionEnemy=0.75; }; class Expert { class Flags { Armor=0; FriendlyTag=0; EnemyTag=0; HUD=1; HUDPerm=0; HUDWp=1; HUDWpPerm=1; WeaponCursor=0; AutoAim=0; AutoGuideAT=0; 3rdPersonView=0; ClockIndicator=1; Map=0; Tracers=1; AutoSpot=0; UltraAI=0; DeathMessages=0; NetStats=1; VonID=0; }; skillFriendly=0.94999999; skillEnemy=0.94999999; precisionFriendly=0.94999999; precisionEnemy=0.94999999; };};So the features i want enabled, are the ability to see yourself on the map, and see your waypoints. I really dont know where i went wrong :/EDIT: formated code better Edited September 26, 2012 by dumle29 Share this post Link to post Share on other sites
Malakir 2 Posted September 26, 2012 I'm also having this problem. :( Share this post Link to post Share on other sites
DrainBamaged 38 Posted September 26, 2012 I think you want HudWp and HudWpPerm, and possibly Hud and HudPerm.What you want is the value set at 1. Like you have in the "Recruit" part. Now you just have to make sure that your server is set to "Recruit."You'll definitely need to turn the server off to save the configuration and then back on for it to enable. Share this post Link to post Share on other sites
DrainBamaged 38 Posted September 26, 2012 I think you want HudWp and HudWpPerm, and possibly Hud and HudPerm.What you want is the value set at 1. Like you have in the "Recruit" part. Now you just have to make sure that your server is set to "Recruit."You'll definitely need to turn the server off to save the configuration and then back on for it to enable. Share this post Link to post Share on other sites
dumle29 0 Posted September 27, 2012 i have now enabled everything to do with hud, and everything to do with wp, my code is this (still doesnt work)class Difficulties{ class Recruit { class Flags { Armor=1; FriendlyTag=1; EnemyTag=1; HUD=1; HUDPerm=1; HUDWp=1; HUDWpPerm=1; WeaponCursor=1; AutoAim=1; AutoGuideAT=1; 3rdPersonView=1; ClockIndicator=1; Map=1; Tracers=1; AutoSpot=1; UltraAI=0; DeathMessages=1; NetStats=1; VonID=1; }; skillFriendly=0.34999999; skillEnemy=0.34999999; precisionFriendly=0.2; precisionEnemy=0.2; }; class Regular { class Flags { Armor=0; FriendlyTag=1; EnemyTag=0; HUD=1; HUDPerm=1; HUDWp=1; HUDWpPerm=1; WeaponCursor=1; AutoAim=0; AutoGuideAT=0; 3rdPersonView=1; ClockIndicator=1; Map=1; Tracers=0; AutoSpot=0; UltraAI=0; DeathMessages=1; NetStats=1; VonID=1; }; skillFriendly=0.44999999; skillEnemy=0.44999999; precisionFriendly=0.34999999; precisionEnemy=0.34999999; }; class Veteran { class Flags { Armor=1; FriendlyTag=0; EnemyTag=0; HUD=1; HUDPerm=0; HUDWp=1; HUDWpPerm=0; WeaponCursor=1; AutoAim=0; AutoGuideAT=0; 3rdPersonView=1; ClockIndicator=0; Map=0; Tracers=1; AutoSpot=0; UltraAI=0; DeathMessages=0; NetStats=1; VonID=1; }; skillFriendly=0.75; skillEnemy=0.75; precisionFriendly=0.75; precisionEnemy=0.75; }; class Expert { class Flags { Armor=0; FriendlyTag=0; EnemyTag=0; HUD=1; HUDPerm=0; HUDWp=1; HUDWpPerm=1; WeaponCursor=0; AutoAim=0; AutoGuideAT=0; 3rdPersonView=0; ClockIndicator=1; Map=0; Tracers=1; AutoSpot=0; UltraAI=0; DeathMessages=0; NetStats=1; VonID=0; }; skillFriendly=0.94999999; skillEnemy=0.94999999; precisionFriendly=0.94999999; precisionEnemy=0.94999999; };}; Share this post Link to post Share on other sites
dumle29 0 Posted September 27, 2012 Problem solved :D Turned out that the file edited by the editor in the configuration section, wasnt the correct one.For me the file(s) were located in bliss/users/bliss/ (private hive :) )hope this helps :) Share this post Link to post Share on other sites