Jump to content

AdrianR

Member
  • Content Count

    6
  • Joined

  • Last visited

  • Medals

Community Reputation

10 Good

About AdrianR

  • Rank
    Rookie

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. AdrianR

    Moss Targets

    You can in a roundabout way, using constant intervals. But it's not very readable. _interval = 16; _range = _bulletFromCenter / _interval switch (_range) do { //0 to 15 case 0: { _bulletscore = 3; }; //16 to 31 case 1: { _bulletscore = 2; }; //32 to 47 case 2: { _bulletscore = 1; }; //48+ default { _bulletscore = 0; }; }; In the register shooter function, you might like to move the line //Reset score. player setVariable ["MossShooterScoreInfo",[player],false]; below the check for already being registered, as otherwise attempting to register at another lane will reset the score.
  2. AdrianR

    Moss Targets

    Thanks for making this, it is very handy. Your score calculation is doing some unnecessary work: if (_bulletFromCenter > 0) then //The first one in the list is the center hit. { _bulletscore = 3; }; //To add more scores, just calibrate the new target by shooting at it with the DEBUG variable set to true, then input the new distance from center value here and then edit the score to what you want. if (_bulletFromCenter > 17) then { _bulletscore = 2; }; if (_bulletFromCenter > 31) then { _bulletscore = 1; }; if (_bulletFromCenter > 48) then //Last check is outside the whole area which is counted as zero points. It's used for hitting the rim, the legs or the big white area outside the circle. { _bulletscore = 0; }; If _bulletFromCenter = 50, for example, it will execute all if statements in order, so _bulletScore will be set to 3, then 2, then 1 and finally the correct 0. You could possibly refactor it like this: //Is outside the whole area which is counted as zero points. It's used for hitting the rim, the legs or the big white area outside the circle. if (_bulletFromCenter > 48) then { _bulletscore = 0; } //To add more scores, just calibrate the new target by shooting at it with the DEBUG variable set to true, then input the new distance from center value here and then edit the score to what you want else { if (_bulletFromCenter > 31) then { _bulletscore = 1; } else { if (_bulletFromCenter > 17) then { _bulletscore = 2; } //Center of target else { _bulletscore = 3; }}}; Due to SQF's lack of an else-if structure, it is arguably messier, but it is still readable and won't execute all the statements every time.
  3. I downloaded the ArmA files again, and now all ArmA 3 files pass verification, so thanks for that. However, the server is still not starting properly if verify signatures is turned on, so that problem still hasn't been fixed.
  4. Thanks, I'll do that soon. I'm just wondering though, why the new one I installed on my own computer also had the same issue? Unfortunately I removed it, so I'll have to download it again to try it with -checkSignatures on.
  5. Done, here's the full RPT: http://pastebin.com/PHr2D1GE These were some of the failed key checks. Just @agile_littlebird. @vcom_driving and @cup appear to have issues, none of which were the ones causing problems. However, 18:58:50 Signature addons\a3.pbo.a3.bisign is wrong. Err 0x20. Test FAILED! 18:58:50 Warning Message: Signature addons\a3.pbo.a3.bisign is wrong. Err 0x20. Test FAILED! does appear, so I assume that is an issue. 18:58:40 Key not found for signature D:\Games\ArmA3\A3Master\@agile_littlebird\addons\rjj_agile_blackfoot.pbo.rjj.bisign Test FAILED! 18:58:40 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@agile_littlebird\addons\rjj_agile_blackfoot.pbo.rjj.bisign Test FAILED! 18:58:42 Key not found for signature D:\Games\ArmA3\A3Master\@agile_littlebird\addons\rjj_agile_ghosthawk.pbo.rjj.bisign Test FAILED! 18:58:42 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@agile_littlebird\addons\rjj_agile_ghosthawk.pbo.rjj.bisign Test FAILED! 18:58:42 Key not found for signature D:\Games\ArmA3\A3Master\@agile_littlebird\addons\rjj_agile_kajman.pbo.rjj.bisign Test FAILED! 18:58:42 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@agile_littlebird\addons\rjj_agile_kajman.pbo.rjj.bisign Test FAILED! 18:58:42 Key not found for signature D:\Games\ArmA3\A3Master\@agile_littlebird\addons\rjj_agile_littlebird.pbo.rjj.bisign Test FAILED! 18:58:42 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@agile_littlebird\addons\rjj_agile_littlebird.pbo.rjj.bisign Test FAILED! 18:58:42 Key not found for signature D:\Games\ArmA3\A3Master\@agile_littlebird\addons\rjj_agile_mohawk.pbo.rjj.bisign Test FAILED! 18:58:42 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@agile_littlebird\addons\rjj_agile_mohawk.pbo.rjj.bisign Test FAILED! 18:58:42 Key not found for signature D:\Games\ArmA3\A3Master\@agile_littlebird\addons\rjj_agile_orca.pbo.rjj.bisign Test FAILED! 18:58:42 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@agile_littlebird\addons\rjj_agile_orca.pbo.rjj.bisign Test FAILED! 18:58:42 Key not found for signature D:\Games\ArmA3\A3Master\@agile_littlebird\addons\rjj_agile_wildcat.pbo.rjj.bisign Test FAILED! 18:58:42 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@agile_littlebird\addons\rjj_agile_wildcat.pbo.rjj.bisign Test FAILED! ... 18:58:47 Key not found for signature D:\Games\ArmA3\A3Master\@vcom_driving\addons\vcom_driving.pbo.vcom_ai.bisign Test FAILED! 18:58:47 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@vcom_driving\addons\vcom_driving.pbo.vcom_ai.bisign Test FAILED! 18:58:47 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_baseconfigs.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:47 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_baseconfigs.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:47 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_basedata.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:47 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_basedata.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:47 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_creatures_people_military_dummyinfantryset.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:47 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_creatures_people_military_dummyinfantryset.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:47 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_aa12.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:47 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_aa12.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:47 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_ak.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:47 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_ak.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:47 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_ammoboxes.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:47 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_ammoboxes.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_ammunition.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_ammunition.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_as50.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_as50.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_awm.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_awm.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_backpacks.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_backpacks.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_bizon.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_bizon.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_colt1911.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_colt1911.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_compact.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_compact.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_compatibility.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_compatibility.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_curator.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_curator.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_cz750.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_cz750.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_cz805.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_cz805.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_dmr.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_dmr.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_duty.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_duty.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_east_attachments.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_east_attachments.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_evo.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_evo.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_fnfal.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_fnfal.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_g36.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_g36.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_glock17.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_glock17.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_grenadelaunchers.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_grenadelaunchers.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_grenades.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_grenades.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_huntingrifle.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_huntingrifle.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_igla.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_igla.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_items.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_items.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_javelin.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_javelin.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_ksvk.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_ksvk.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_l110.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_l110.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_l7a2.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_l7a2.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_l85.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_l85.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_leeenfield.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_leeenfield.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_m1014.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_m1014.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_m107.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_m107.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_m110.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_m110.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_m136.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_m136.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_m14.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_m14.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_m16.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_m16.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_m24.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_m24.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_m240.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_m240.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_m249.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_m249.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_m47.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_m47.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_m60e4.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_m60e4.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_m9.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_m9.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_maaws.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_maaws.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_makarov.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_makarov.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_metis_at_13.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_metis_at_13.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_microuzi.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_microuzi.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_mk48.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_mk48.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_mp5.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:48 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_mp5.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_nlaw.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_nlaw.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_pb_6p9.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_pb_6p9.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_phantom.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_phantom.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_pk.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_pk.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_pods.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_pods.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_put.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_put.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_revolver.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_revolver.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_rpg18.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_rpg18.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_rpg7.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_rpg7.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_sa58.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_sa58.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_sa61.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_sa61.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_saiga12k.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_saiga12k.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_scar.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_scar.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_smaw.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_smaw.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_stinger.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_stinger.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_strela_2.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_strela_2.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_svd.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_svd.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_uk59.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_uk59.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_vehicleweapons.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_vehicleweapons.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_vss.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_vss.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_weaponscore.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_weaponscore.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_west_attachments.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_west_attachments.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_xm8.pbo.cup_v1__2014_11_28.bisign Test FAILED! 18:58:49 Warning Message: Key not found for signature D:\Games\ArmA3\A3Master\@cup\addons\cup_weapons_xm8.pbo.cup_v1__2014_11_28.bisign Test FAILED! ... [b]18:58:50 Signature addons\a3.pbo.a3.bisign is wrong. Err 0x20. Test FAILED! 18:58:50 Warning Message: Signature addons\a3.pbo.a3.bisign is wrong. Err 0x20. Test FAILED![/b]
  6. We are having the exact same issue with our server. Running no mods/all mods has the same outcome, as does using a vanilla config vs our set up one. If verify signatures is on 2, it will fail unless we remove one bikey out a small subset of them. I've narrowed the bikeys down to this list so far - if any one is removed (even a3) then the server will launch as expected. a3 aia_sa_2015_01_01 alive armaseries_gaming_cz asdg_beta asdg_jointrails asrai3 blx cba_a3_rc4 cha cse_0_10_1_manw cse_server + any one other bikey If there are more other bikeys added, then I need to delete any two of the above bikeys. I've also just tried a brand new server running on my own machine. Using those keys results in the exact same issue.
×