Jump to content

byrgesen

Member
  • Content Count

    311
  • Joined

  • Last visited

  • Medals

Everything posted by byrgesen

  1. Ok mate, thx. I will try to find the reason, just wierd it gives that error but the script works perfectly fine and line 1 isnt wrong in the script hehe. EDIT: The only way i can remove the error is to go back to using: nul = [this] execVM Instead of: [this] call compile preprocessFileLineNumbers It still works just fine though. Need to do some more testing with more players and JIP and such though. Had bad experience with the execVM not being 100% persistant for loadouts.
  2. hey mate. great job in this, it has helped med for sure :) however when im using your loadout script it gives me this error: Error in expression <uts\excalibur\dismount2.sqf" waitUntil {!isNull player}; _unit = _this select 0;> Error position: <!isNull player}; _unit = _this select 0;> Error Generic error in expression File mpmissions\__cur_mp.Stratis\loadouts\excalibur\dismount2.sqf, line 1 this is my loadout script, with some addon classnames: waitUntil {!isNull player}; _unit = _this select 0; // Remove original equipment removeallweapons _unit; removeallassigneditems _unit; removeallcontainers _unit; // Add clothing _unit addUniform "U_SBE_USMC_B_CombatUniform_mcam_tshirtD"; _unit addHeadgear "CAF_Boonie_AR"; _unit addVest "V_HarnessOGL_brn"; _unit addBackpack "B_Carryall_ocamo"; _unit addItem "A_Camo_Helmet"; // Add weapons & grenades _unit addMagazines ["30Rnd_65x39_caseless_green", 8]; _unit addWeapon "arifle_Khaybar_F"; _unit addPrimaryWeaponItem "acc_pointer_IR"; _unit addPrimaryWeaponitem "optic_Holosight"; _unit addMagazines ["30Rnd_9x21_Mag", 4]; _unit addWeapon "hgun_P07_F"; _unit addMagazines ["HandGrenade", 2]; _unit addMagazines ["SmokeShellRed", 2]; _unit addMagazines ["SmokeShell", 2]; _unit addMagazines ["SatchelCharge_Remote_Mag", 2]; _unit addMagazines ["DemoCharge_Remote_Mag", 2]; // Add items _unit addItem "FirstAidKit"; _unit addItem "FirstAidKit"; _unit addItem "FirstAidKit"; _unit addItem "Toolkit"; _unit addItem "MineDetector"; _unit addWeapon "rangefinder"; _unit addItem "muzzle_snds_H"; _unit addItem "muzzle_snds_L"; _unit addItem "NVGoggles"; _unit addItem "ACRE_PRC148"; _unit assignItem "ACRE_PRC148"; _unit addItem "ItemRadio"; _unit addItem "g_tactical_clear"; _unit assignItem "g_tactical_clear"; _unit addItem "ItemCompass"; _unit assignItem "ItemCompass"; _unit addItem "ItemMap"; _unit assignItem "ItemMap"; _unit addItem "ItemWatch"; _unit assignItem "ItemWatch"; _unit addItem "ItemGPS"; _unit assignItem "ItemGPS"; if(true) exitWith{}; The wierd thing is it works, but it gives errors. any idea whats wrong?
  3. byrgesen

    New at scripting

    This one has also helped me ALOT with scripting in arma: http://www.armaholic.com/page.php?id=4847
  4. It sounds amazing mate, keep up the good work. Your doing a huge favor to the entire community by continuing this application, cant thank you enough hehe. As for the "spontaneous" options, keep them comming, one can never have enough dropdown menu's. ;)
  5. byrgesen

    Kit Script issue

    We are using custom respawn scripts so its not needed for us, but thx for the info though :) Im sure someone else can use that.
  6. byrgesen

    Kit Script issue

    We have also been tweaking around with loadouts because of the exact same problem you ran into, but we seem to have it fixed now, so perhaps this can help you. rifleman.sqf waitUntil {!isNull player}; _unit = _this select 0; if(local _unit) then { // Remove original equipment removeallweapons _unit; removeallassigneditems _unit; removeallcontainers _unit; // Add clothing _unit addUniform "U_B_CombatUniform_mcam_vest"; _unit addHeadgear "H_HelmetB"; _unit addVest "V_PlateCarrierGL_rgr"; _unit addBackpack "B_AssaultPack_dgtl"; // Add weapons & grenades _unit addMagazines ["30Rnd_65x39_caseless_mag", 9]; _unit addWeapon "arifle_MX_F"; _unit addPrimaryWeaponitem "optic_Holosight"; _unit addPrimaryWeaponItem "acc_pointer_IR"; _unit addMagazines ["30Rnd_9x21_Mag", 2]; _unit addWeapon "hgun_P07_F"; _unit addMagazines ["SmokeShellRed", 3]; _unit addMagazines ["SmokeShell", 3]; _unit addMagazines ["SmokeShellYellow", 3]; _unit addMagazines ["SmokeShellGreen", 3]; _unit addMagazines ["SmokeShellBlue", 3]; _unit addMagazines ["SmokeShellOrange", 3]; _unit addMagazines ["SmokeShellPurple", 3]; _unit addMagazines ["HandGrenade", 3]; _unit addMagazines ["Chemlight_green", 4]; _unit addMagazines ["Chemlight_blue", 4]; // Add items _unit addMagazines ["FirstAidKit", 3]; _unit addWeapon "Binocular"; _unit addItem "g_tactical_clear"; _unit assignItem "g_tactical_clear"; _unit addItem "muzzle_snds_H"; _unit addItem "muzzle_snds_L"; _unit addItem "NVGoggles"; _unit assignItem "NVGoggles"; _unit addItem "ItemRadio"; _unit assignItem "ItemRadio"; _unit addItem "ItemCompass"; _unit assignItem "ItemCompass"; _unit addItem "ItemMap"; _unit assignItem "ItemMap"; _unit addItem "ItemWatch"; _unit assignItem "ItemWatch"; _unit addItem "ItemGPS"; _unit assignItem "ItemGPS"; }; And then initialize it the same way you are doing with the: nul = [this] execVM "rifleman.sqf"; In the units init field. Hope you can use this mate.
  7. byrgesen

    Divers need NV Googles???

    Put this in the "init" field of the divers: this addItem "NVGoggles"; this assignItem "NVGoggles"; This should make you get NVG's every time you spawn/respawn.
  8. Sound amazing mate. Im really looking forward to a fully working server launcher for arma 3 :) Atm we are kinda forced to use the good old .bat method. Works well tbh, but im missing the beautiful GUI. Hehe. And for the Arma 3 compatability, everything is pretty much the same as in Arma 2, except some of the actual names of the files ofc. I havent found any Arma 3 specific setting yet, that wasnt in Arma 2. server.cfg, basic.cfg and profile looks just like arma 2, seems to work the exact same way aswell.
  9. This software isnt fully Arma 3 compatible yet :) But i know Tophe is working on it. Hopefully it will support both arma 2 and 3 in the end heh. PWS = PlayWithSIX And its just a simple matter of changing the folder setting in PWS and it will place the mods correctly. Dunno why Sickboy wants then in the documents folder tbh. I dont believe this is something Tophe needs to be doing, you can do it in PWS yourself :)
  10. This is what i did and it works great :) waitUntil {!isNil "bis_fnc_init"}; _unit = _this select 0; if(local _unit) then { // Remove original equipment removeallweapons _unit; removeallassigneditems _unit; removeallcontainers _unit; // Add clothing _unit addUniform "U_B_CombatUniform_mcam"; _unit addHeadgear "H_HelmetB"; _unit addVest "V_PlateCarrier1_cbr"; _unit addBackpack "B_AssaultPack_blk"; // Add weapons & grenades _unit addMagazines ["3Rnd_HE_Grenade_shell", 2]; _unit addMagazines ["3Rnd_SmokeRed_Grenade_shell", 2]; _unit addMagazines ["3Rnd_Smoke_Grenade_shell", 2]; _unit addMagazines ["3Rnd_SmokeYellow_Grenade_shell", 2]; _unit addMagazines ["3Rnd_SmokeGreen_Grenade_shell", 2]; _unit addMagazines ["3Rnd_SmokePurple_Grenade_shell", 2]; _unit addMagazines ["3Rnd_SmokeOrange_Grenade_shell", 2]; _unit addMagazines ["3Rnd_SmokeBlue_Grenade_shell", 2]; _unit addMagazines ["3Rnd_UGL_FlareCIR_F", 2]; _unit addMagazines ["30Rnd_65x39_caseless_mag", 14]; _unit addWeapon "arifle_MX_GL_F"; _unit addPrimaryWeaponitem "optic_Hamr"; _unit addPrimaryWeaponItem "acc_pointer_IR"; _unit addMagazines ["30Rnd_9x21_Mag", 2]; _unit addWeapon "hgun_P07_F"; _unit addMagazines ["HandGrenade", 3]; _unit addMagazines ["SmokeShellRed", 2]; _unit addMagazines ["SmokeShell", 2]; _unit addMagazines ["SmokeShellGreen", 2]; _unit addMagazines ["SmokeShellBlue", 2]; _unit addMagazines ["Chemlight_green", 4]; _unit addMagazines ["Chemlight_blue", 4]; // Add items _unit addMagazines ["FirstAidKit", 3]; _unit addWeapon "Binocular"; _unit addItem "muzzle_snds_H"; _unit addItem "muzzle_snds_L"; _unit addItem "NVGoggles"; _unit assignItem "NVGoggles"; _unit addItem "ItemRadio"; _unit assignItem "ItemRadio"; _unit addItem "g_tactical_clear"; _unit assignItem "g_tactical_clear"; _unit addItem "ItemCompass"; _unit assignItem "ItemCompass"; _unit addItem "ItemMap"; _unit assignItem "ItemMap"; _unit addItem "ItemWatch"; _unit assignItem "ItemWatch"; _unit addItem "ItemGPS"; _unit assignItem "ItemGPS"; }; Even though this is for arma 3, i dont believe it has changed a whole lot from arma 2.
  11. Ive got a bug to report, at least i hope so :) When using the C7 or C8, the silencer (from CAF) completely removes all sound from the weapon. Am i the only one experiencing thins? This is on the latest stabile build btw.
  12. http://forums.bistudio.com/forumdisplay.php?166-ARMA-3-ALPHA-USER-MISSIONS ;)
  13. You might wanna contact vilayer about this mate. The mod parameter is right, so it might be something on theyre side. But fyi, mods should not in any way affect the reporting IP to gamespy.
  14. byrgesen

    Loadout Script

    This is one of my loadout scripts. Wanted to post it so you can see how to do it right :) The brackets and code around it is to ensure it only gets executed one time, if not used the script will get executed everytime someone connects, duplicating your items over and over again. _unit = _this select 0; if(local _unit) then { // Remove original equipment removeallweapons _unit; removeallassigneditems _unit; removeallcontainers _unit; // Add clothing _unit addUniform "U_B_CombatUniform_mcam"; _unit addHeadgear "H_HelmetB"; _unit addVest "V_PlateCarrier1_cbr"; _unit addBackpack "B_AssaultPack_base"; // Add weapons & grenades _unit addWeapon "arifle_MX_GL_F"; _unit addPrimaryWeaponitem "optic_Hamr"; _unit addPrimaryWeaponItem "acc_pointer_IR"; _unit addMagazines ["30Rnd_65x39_caseless_mag", 14]; _unit addMagazines ["3Rnd_HE_Grenade_shell", 4]; _unit addMagazines ["3Rnd_SmokeRed_Grenade_shell", 2]; _unit addMagazines ["3Rnd_Smoke_Grenade_shell", 2]; _unit addWeapon "hgun_P07_F"; _unit addMagazines ["30Rnd_9x21_Mag", 3]; _unit addMagazines ["HandGrenade", 3]; _unit addMagazines ["SmokeShellRed", 2]; _unit addMagazines ["SmokeShell", 2]; // Add items _unit addItem ["FirstAidKit", 3]; _unit addWeapon "Binocular"; _unit addItem "muzzle_snds_H"; _unit addItem "muzzle_snds_L"; _unit addItem "NVGoggles"; _unit assignItem "NVGoggles"; _unit addItem "ItemRadio"; _unit assignItem "ItemRadio"; _unit addItem "g_tactical_clear"; _unit assignItem "g_tactical_clear"; _unit addItem "ItemCompass"; _unit assignItem "ItemCompass"; _unit addItem "ItemMap"; _unit assignItem "ItemMap"; _unit addItem "ItemWatch"; _unit assignItem "ItemWatch"; _unit addItem "ItemGPS"; _unit assignItem "ItemGPS"; };
  15. Disable Windows Aero Theme and it should stop giving this error. At least i havent seen it since i went back to the old windows theme. Some people might argue "but windows is ugly now", but hey, you dont need fancy windows animations to play arma ;)
  16. Disable Windows Aero theme and it wont show anymore :) At least i havent encountered the error since i did that. Dont need flashy windows animations to play arma anyway.
  17. All we know so far is "when its done" :) So maybe, maybe not. I dont believe AC is of a big concern for BI atm, theres tons of other stuff to work on. Even though they might end up losing players on that strategy, BI does not develop BE or what ever else AC we will get in the end, its from third party sources. I personally would prefer to wait, untill the AC is "top-notch" and bans 1000's of people on release. It can only be better then releasing it before its ready and having people bypass it in a couple of days.
  18. I havent experienced anything like this, but keep in mind Nvidia and AMD has not done any kind of driver optimization for Arma III yet. If you look at the latest Nvidia Beta Drivers, you will find it has increased performance in games like Tomb Raider and Metro by up to 30-40%, during the last 2-4 Beta Drivers. Once they start optimizing drivers for this game, we will see a major improvement, i have no doubt. But who knows, there might be a memory leak in the current build, causing FPS and Graphics drops the longer you play, i dont know :)
  19. Having the exact same issue, it wont use the dedicated server files :/ Good point, this should deff be added to the restarter.
  20. You bought Arma III, you didnt buy an Alpha. It just so happens BI are offering you early acces along with your full game. Again, you never payed for an alpha or beta, you desided it was best to buy it now, because it was cheaper and you could join the testing. Basicly you are saying the people who bought if from the BI store, bought it under another license then the ones who bought directly from steam? not true lol. Steam doesnt change anything, you still bought the final game, with acces to developments builds. Steam doesnt make you special mate. You cant slander a company for ignorance amongst the costumers tbh. And its not to early, its the perfect time to find the bugs and get them fixed, during development of the core elements. Maybe you just choose to join abit to early? As for AI, they do seem to be overpowered at times, spotting you to fast, but im not to worried. The game is very playable atm and i enjoy it so much.
  21. Will this be updated to work with the now released arma3server.exe on stabile branch, instead of using arma3.exe?
  22. Mission makers set the rank for individual soldiers. So you start with a rank based on the possition in your platoon/fireteam. You cant increase in rank while playing anything in this game, they are preset before mission start :)
  23. Sorry about that then, its impossible to tell by looking at some text hehe, and i dont recall seeing she or her anywhere :) Anywho, she is doing a great job and she is doing it the right way. It cant be better then that heh.
  24. Ofc he can, Sakura is basing this on configs (at least thats how i read the thread) and that the accepted way to do it. :) This will not be a Stand Alone addon for the maps from chernarus (again, this is how i read the thread) and it will be similar to AIA, but islands only.
  25. byrgesen

    Cherno port - 99% Done

    One question, do you need to own Arma 2 to play this, or will it work with only Arma 3 and your download? As mentioned above, its not legal to redistribute BI official content in standalone packages, you need to "bind" the games together through configs, like the AIA mod or TOH-Rearmed. Think we need a mod to confirm if this is legit or not.
×