Welcome to The Forum

Register now to gain access to all of our features. Once registered and logged in, you will be able to create topics, post replies and more


MegaZ

Members
  • Posts

    168
  • Joined

  • Last visited

Everything posted by MegaZ

  1. FTP into your site and then open Admin folder and in there you will find the file you want arma2oaserver.RTP
  2. Have you looked on the forums here lots of people asking the same question? Try This post: viewtopic.php?f=8&t=1319 or this: viewtopic.php?f=8&t=1203 Re: infiSTAR AntiHack FULL Not on Control Panel Guys once you have added the UID to the Config have you started your server with AH ticked in the control panel then stoped the server UNTICK the AH restart server then STOP server and re tick AH and restart server? This works for most problems with not being able to add more UID's MegaZ
  3. Have you looked on the forums here lots of people asking the same question? Try This post: viewtopic.php?f=8&t=1319 or this: viewtopic.php?f=8&t=1203 Re: infiSTAR AntiHack FULL Not on Control Panel Guys once you have added the UID to the Config have you started your server with AH ticked in the control panel then stoped the server UNTICK the AH restart server then STOP server and re tick AH and restart server? This works for most problems with not being able to add more UID's MegaZ
  4. Yes but i bet your server is not running the latest versions ? Use Commander and down grade Arma and Dayz to 1 below and then try MegaZ
  5. Yes but i bet your server is not running the latest versions ? Use Commander and down grade Arma and Dayz to 1 below and then try MegaZ
  6. What does the error log say ? Need more info? MegaZ
  7. What does the error log say ? Need more info? MegaZ
  8. Have you down loaded it from the site Here and installed the FULL VERSION AH config ? MegaZ
  9. Have you down loaded it from the site Here and installed the FULL VERSION AH config ? MegaZ
  10. Do you have 3 options for Admin High - Med - Low ? Sounds to me like you and on the Low Admin not on the High Admin, You did install the FULL AH config yes? Have you tried in control panel: Stop server untick AH - start server when started STOP server again - Re tick AH and then restart rever and see if it shows then. MegaZ
  11. Do you have 3 options for Admin High - Med - Low ? Sounds to me like you and on the Low Admin not on the High Admin, You did install the FULL AH config yes? Have you tried in control panel: Stop server untick AH - start server when started STOP server again - Re tick AH and then restart rever and see if it shows then. MegaZ
  12. How are you trying to copy the BE files? You will need to FTP in to the server with a program such as filezilla or WinSCP to be able to alter the files MegaZ
  13. How are you trying to copy the BE files? You will need to FTP in to the server with a program such as filezilla or WinSCP to be able to alter the files MegaZ
  14. Hi Mission.pbo open traders folder then add: // Super Hero Trader menu_Soldier_Sniper_PMC = [ [["Weapons",694],["Armed Vehicles",695]], [], "superhero" ]; Change these to what you want make sure the PMC is not in use on your server Again Mission.pbo open fn_selfActions and add : }; if((_traderMenu select 2) == "superhero") then { _humanity_logic = (_humanity < 50000); }; to the bottom of array like this: // diag_log ("TRADER = " + str(_traderMenu)); _low_high = "low"; _humanity_logic = false; if((_traderMenu select 2) == "friendly") then { _humanity_logic = (_humanity < -5000); }; if((_traderMenu select 2) == "hostile") then { _low_high = "high"; _humanity_logic = (_humanity > 5000000); }; if((_traderMenu select 2) == "hero") then { _humanity_logic = (_humanity < 5000); }; if((_traderMenu select 2) == "superhero") then { _humanity_logic = (_humanity < 50000); }; if(_humanity_logic) then { I added this to my server.pbo under missions - instance of your map (taviana) 13 open mission.sqf and add this to bottom: before processInitCommands; _unit_1500 = objNull; if (true) then { _this = createAgent ["Soldier_Sniper_PMC", [6419.1621, 10876.852, 0.0000], [], 0, "CAN_COLLIDE"]; _unit_1500 = _this; _this setDir -264.41248; _this setVehicleInit "this allowDammage false; this disableAI 'FSM'; this disableAI 'MOVE'; this disableAI 'AUTOTARGET'; this disableAI 'TARGET'; this setBehaviour 'CARELESS'; this forceSpeed 0;"; _this setUnitAbility 0.60000002; _this allowDammage false; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET'; _this setBehaviour 'CARELESS'; _this forceSpeed 0;_this enableSimulation false;}; Then log in sever via control panel: and add your Super hero there. in server traders add the new trader (mine eg) Edit 177 (id) - Soldier_Sniper_PMC (classname) - 17 (instance) - superhero (status) - Super Hero Trader (desc) Then in server tids add your Items you want to sell/buy: 694 (id)- Weapons (name) - 177 (trader) 695 (id) - Vehicles (name) - 177 (trader) After re reading your post I answer incorrectly as you are getting him working but not on the humanity you want my bad: in you fn_self actions where you changed the humanity that is correct but do you have another instance of fn_selfaction in another script folder ? I have one in my init folder and another in scripts folder where my self blood and refuel scripts are? if so change it there too. As it might be calling it from either.
  15. Hi Mission.pbo open traders folder then add: // Super Hero Trader menu_Soldier_Sniper_PMC = [ [["Weapons",694],["Armed Vehicles",695]], [], "superhero" ]; Change these to what you want make sure the PMC is not in use on your server Again Mission.pbo open fn_selfActions and add : }; if((_traderMenu select 2) == "superhero") then { _humanity_logic = (_humanity < 50000); }; to the bottom of array like this: // diag_log ("TRADER = " + str(_traderMenu)); _low_high = "low"; _humanity_logic = false; if((_traderMenu select 2) == "friendly") then { _humanity_logic = (_humanity < -5000); }; if((_traderMenu select 2) == "hostile") then { _low_high = "high"; _humanity_logic = (_humanity > 5000000); }; if((_traderMenu select 2) == "hero") then { _humanity_logic = (_humanity < 5000); }; if((_traderMenu select 2) == "superhero") then { _humanity_logic = (_humanity < 50000); }; if(_humanity_logic) then { I added this to my server.pbo under missions - instance of your map (taviana) 13 open mission.sqf and add this to bottom: before processInitCommands; _unit_1500 = objNull; if (true) then { _this = createAgent ["Soldier_Sniper_PMC", [6419.1621, 10876.852, 0.0000], [], 0, "CAN_COLLIDE"]; _unit_1500 = _this; _this setDir -264.41248; _this setVehicleInit "this allowDammage false; this disableAI 'FSM'; this disableAI 'MOVE'; this disableAI 'AUTOTARGET'; this disableAI 'TARGET'; this setBehaviour 'CARELESS'; this forceSpeed 0;"; _this setUnitAbility 0.60000002; _this allowDammage false; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET'; _this setBehaviour 'CARELESS'; _this forceSpeed 0;_this enableSimulation false;}; Then log in sever via control panel: and add your Super hero there. in server traders add the new trader (mine eg) Edit 177 (id) - Soldier_Sniper_PMC (classname) - 17 (instance) - superhero (status) - Super Hero Trader (desc) Then in server tids add your Items you want to sell/buy: 694 (id)- Weapons (name) - 177 (trader) 695 (id) - Vehicles (name) - 177 (trader) After re reading your post I answer incorrectly as you are getting him working but not on the humanity you want my bad: in you fn_self actions where you changed the humanity that is correct but do you have another instance of fn_selfaction in another script folder ? I have one in my init folder and another in scripts folder where my self blood and refuel scripts are? if so change it there too. As it might be calling it from either.
  16. How are you uploading the .pbo back to the server? MegaZ
  17. How are you uploading the .pbo back to the server? MegaZ
  18. Guys if you fix a problem ALWAYS post back how? It may help others to fix their problems (remember you came here for help so please help back) MegaZ
  19. Guys if you fix a problem ALWAYS post back how? It may help others to fix their problems (remember you came here for help so please help back) MegaZ
  20. If you added the correct FULL version AHconfig file and Started server with AH ticked, Then stop server untick AH restart server, Then Stop serrver and Retick AH and restart sever again if that dont worjk you will need to send it a support ticket. MegaZ
  21. If you added the correct FULL version AHconfig file and Started server with AH ticked, Then stop server untick AH restart server, Then Stop serrver and Retick AH and restart sever again if that dont worjk you will need to send it a support ticket. MegaZ
  22. Guys once you have added the UID to the Config have you started your server with AH ticked in the control panel then stoped the server UNTICK the AH restart server then STOP server and re tick AH and restart server? This works for most problems with not being able to add more UID's MegaZ
  23. Guys once you have added the UID to the Config have you started your server with AH ticked in the control panel then stoped the server UNTICK the AH restart server then STOP server and re tick AH and restart server? This works for most problems with not being able to add more UID's MegaZ