Jump to content

Dragonian

Member
  • Content Count

    11
  • Joined

  • Last visited

  • Medals

Community Reputation

0 Neutral

About Dragonian

  • Rank
    Private First Class
  1. Ofcourse I found the solution just after I posted this thread I just had to add this into the config.cpp after the definitions: <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE"> class CfgPatches { class PipeBomb2 { units[] = {}; weapons[] = {}; requiredVersion = 1.00; requiredAddons[] = {}; }; };
  2. Hello, I've been scripting since OFP was released and carried on to ArmA but I have never done anything with addons and configs so I decided to fiddle with some basic things to get the hang of it. I'm just trying to add a new muzzle (PipeBomb2Muzzle) for my new satchel charge (PipeBomb2) with some minor damage alterations. I unpacked the config.bin from weapons.pbo with cpbo and unRap. Then I searched all the things I thought I needed to make this work and compiled them into a new config.cpp file which I packed with cpbo to PipeBomb2.pbo. I threw this into the ArmA AddOns folder. The problem is that I can't get it to work ingame. It just gives me an error saying no entry 'bin\config.bin/CfgMagazines/PipeBomb2'. when I try to add the magazine to a unit via unit addmagazine "PipeBomb2" like the class does not exist at all. I also tried first compiling the config.cpp into a config.bin but that didn't seem to work either. Here's the contents of the config.cpp: <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE"> #define true 1 #define false 0 #define private 0 #define protected 1 #define public 2 #define VSoft 0 #define VArmor 1 #define VAir 2 #define TEast 0 #define TWest 1 #define TGuerrila 2 #define TCivilian 3 #define TSideUnknown 4 #define TEnemy 5 #define TFriendly 6 #define TLogic 7 #define ReadAndWrite 0 #define ReadAndCreate 1 #define ReadOnly 2 #define ReadOnlyVerified 3 #define LockNo 0 #define LockCadet 1 #define LockYes 2 class CfgAmmo { class TimeBomb; class TimeBomb2 : TimeBomb { hit = 600; indirectHit = 500; indirectHitRange = 1; soundHit[] = {"\ca\Weapons\Data\Sound\explosion_big_01", 56.2341, 1}; }; class PipeBomb2 : TimeBomb2 { simulation = "shotPipeBomb"; }; }; class CfgMagazines { class TimeBomb; class TimeBomb2 : TimeBomb { scope = protected; displayName = $STR_MN_TIME_BOMB; picture = "\CA\weapons\data\equip\m_satchel_CA.paa"; useAction = true; useActionTitle = $STR_ACTION_PUTBOMB; type = 2 * 256; value = 5; ammo = "TimeBomb2"; count = 1; initSpeed = 0; maxLeadSpeed = 0; nameSoundWeapon = "satchelcharge"; sound[] = {"\ca\Weapons\Data\Sound\gravel_L", db-70, 1}; }; class PipeBomb2 : TimeBomb2 { scope = public; displayName = $STR_MN_PIPE_BOMB; value = 5; ammo = "PipeBomb2"; count = 1; initSpeed = 0; maxLeadSpeed = 0; nameSoundWeapon = "satchelcharge"; useAction = true; useActionTitle = $STR_ACTION_PUTBOMB; sound[] = {"\ca\Weapons\Data\Sound\gravel_L", db-70, 1}; }; }; class cfgWeapons { class Default; class Put : Default { scope = protected; value = 0; type = VSoft; displayName = $STR_DN_PUT; canDrop = false; muzzles[] = {"PipeBomb2Muzzle","TimeBombMuzzle", "PipeBombMuzzle", "MineMuzzle", "MineEMuzzle"}; class PutMuzzle : Default { sound[] = {"", db-70, 1}; reloadSound[] = {"", 0.000316228, 1}; enableAttack = false; optics = false; showEmpty = 0; canLock = LockNo; primary = 10; minRange = 0; minRangeProbab = 0.1; midRange = 3; midRangeProbab = 0.9; maxRange = 15; maxRangeProbab = 0.04; }; class PipeBomb2Muzzle : PutMuzzle { displayName = $STR_DN_PIPE_BOMB; magazines[] = {"PipeBomb2"}; enableAttack = true; }; class TimeBombMuzzle : PutMuzzle { displayName = $STR_DN_TIME_BOMB; magazines[] = {"TimeBomb"}; enableAttack = true; }; class PipeBombMuzzle : PutMuzzle { displayName = $STR_DN_PIPE_BOMB; magazines[] = {"PipeBomb"}; enableAttack = true; }; class MineMuzzle : PutMuzzle { displayName = $STR_DN_MINE; magazines[] = {"Mine"}; }; class MineEMuzzle : PutMuzzle { displayName = $STR_DN_MINE; magazines[] = {"MineE"}; }; }; }; Does anybody have any ideas what I'm doing wrong. Does my config.cpp lack information or did I pack the file wrong or what could be the problem?
  3. Dragonian

    Flare Trap

    Have you tried createVehicle Array insted of createVehicle? Also try to setpos the flare to the location after creating it.
  4. Yes. The script would calculate the needed muzzle velocity to fire the shell to a predefined location with given angle. As I said I'm not a mathematician so all of these equations are ripped from someone else's work. This being said, I am not sure at all. Thanks for the script. I try to wrap my head around it and find some results for this.
  5. I'm creating my own little piece of artillery script, but I'm having a problem combining the airfriction (drag) to the calculated muzzle velocity. I'm not a mathematician so all these predefined equations are a bit hard for me to understand instantly. This is where I'm at: - Muzzle velocity is said to be: _velocity = sqrt (4.9 * _distance / ((sin _angle) * (cos _angle))) - This is what gets me the airFriction of any shell: _airfriction = getNumber (configFile >> "CfgAmmo" >> _ammo >> "airFriction") - Arma drag model is said to be: _drag = _airfriction * _velocity^2 So with my logic I would then have the real muzzle velocity with this: _velocity + _drag but this actually substracts the overall muzzle velocity because airfriction is a negative value. Even when I substract the _airfriction from the _velocity the shells still fall short. Any corrections or general ideas?
  6. Dragonian

    Reporting when mines placed

    Try one of these: SQF format: SQS format: Change the _position and _radius variables to your liking. These look for both the WEST and EAST mine. You can alter the array in the loop to just cover one of the mine types.
  7. Dragonian

    Random spwaning

    Try one of these: SQF format SQS format: You can put as many players and markers as you want as long as there is at least one marker for each player (yes, you can put more markers than players to randomize it even more).
  8. Dragonian

    Artillery script

    I'm creating my own little piece of artillery script, but I'm having a problem combining the airfriction (drag) to the calculated muzzle velocity. I'm not a mathematician so all these predefined equations are a bit hard for me to understand instantly. This is where I'm at: - Muzzle velocity is said to be: _velocity = sqrt (4.9 * _distance / ((sin _angle) * (cos _angle))) - This is what gets me the airFriction of any shell: _airfriction = getNumber (configFile >> "CfgAmmo" >> _ammo >> "airFriction") - Arma drag model is said to be: _drag = _airfriction * _velocity^2 So with my logic I would then have the real muzzle velocity with this: _velocity + _drag but this actually substracts the overall muzzle velocity for airfriction is a negative value. Even when I substract the _airfriction from the _velocity the shells still fall short. Any corrections or general ideas?
  9. Dragonian

    Freeze now and then what could it be??

    Thank you for your suggestions. No, ArmA does not crash after the freezes. It just freezes for several seconds and then carries on normally and does this every few minutes or so. There is no other strange behaviours than the abovesaid but it keeps me from using aircraft, usually gets me killed in difficult situations and is also generally very annoying I now have 5gig of free disk space at my D-drive. That is 5gig excluding the pagefile. The pagefile size is 1,5g - 3g. This has no effect on the situation. Should there be more space? I mean how much can the game suck virtual memory? I used the search feature very actively but were unable to find any similar problems except in this one thread. Many have the freeze lead to crashing but here it's more like frequent standstills. But if you think I have missed a crucial thread somewhere please link it here.
  10. Dragonian

    Freeze now and then what could it be??

    Cmon guys... somebody must have some suggestions
  11. Dragonian

    Freeze now and then what could it be??

    Hello, I'm experiencing the same problem as Dudester. I ran virus, spyware and adware checks with no results. I'm running ArmA with every graphic setting as "low" just for the performance. My ArmA version is 1.08. I bought the ArmA from here Finland and it's the 505 Games release. Then I upgraded it with "Arma_InternationalUpdate105" and then with "ArmA_InternationalUpdate105_108" Here is my comp info by SiSoft Sandra: <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">SiSoftware Sandra System Host Name : TEIDANAITEE User : Dragonian Workgroup : W Processor Model : AMD Athlon(tm) 64 Processor 3500+ Speed : 2.21GHz Model Number : 3500 (estimated) Cores per Processor : 1 Unit(s) Threads per Core : 1 Unit(s) Internal Data Cache : 64kB Synchronous, Write-Back, 2-way set, 64 byte line size L2 On-board Cache : 512kB ECC Synchronous, Write-Back, 16-way set, 64 byte line size Mainboard Bus(es) : ISA PCI PCIe IMB USB FireWire/1394 i2c/SMBus MP Support : 1 Processor(s) MP APIC : Yes System BIOS : Phoenix Technologies, LTD 6.00 PG Mainboard : NF-CK804 Total Memory : 1GB DDR-SDRAM Chipset 1 Model : Advanced Micro Devices (AMD) Athlon 64 / Opteron HyperTransport Technology Configuration Front Side Bus Speed : 2x 1005MHz (2010MHz data rate) Total Memory : 1GB DDR-SDRAM Memory Bus Speed : 2x 200MHz (400MHz data rate) Video System Desktop Monitors/Panels : 2 Monitor/Panel : Plug and Play -näyttö Monitor/Panel : Plug and Play -näyttö Adapter : RADEON X850 Series Adapter : RADEON X850 Series - Secondary Physical Storage Devices Removable Drive : Levykeasema Hard Disk : SAMSUNG SP2504C (233GB) Hard Disk : ST3200822AS (186GB) CD-ROM/DVD : HL-DT-ST DVDRAM GSA-4163B (CD 126X Rd, 40X Wr) (DVD 16X Rd, 5X Wr) CD-ROM/DVD : CK5106N OEX126J SCSI CdRom Device (CD 32X Rd) (DVD 4X Rd) CD-ROM/DVD : CK5106N OEX126J SCSI CdRom Device (CD 32X Rd) (DVD 4X Rd) Logical Storage Devices Hard Disk (C:) : 9.8GB (1.9GB, 20% Free Space) (NTFS) Hard Disk (D:) : 177GB (2GB, 1% Free Space) (NTFS) Files (X:) : 233GB (242MB, 0% Free Space) (NTFS) ArmA (E:) : 2.7GB (CDFS) CD-ROM/DVD (F:) : N/A CD-ROM/DVD (G:) : N/A 3.5" 1.44MB (A:) : N/A Peripherals Serial/Parallel Port(s) : 1 COM / 1 LPT USB Controller/Hub : Standard OpenHCD USB Host Controller USB Controller/Hub : USB Root Hub FireWire/1394 Controller/Hub : VIA OHCI Compliant IEEE 1394 Host Controller Keyboard : Standardi 101/102-näppäiminen tai Microsoft Natural PS/2 Keyboard Mouse : HID-yhteensopiva hiiri Human Interface : USB Human Interface Device MultiMedia Device(s) Device : Standardi peliportti Device : Realtek AC'97 Audio Printers and Faxes Model : Microsoft Office Document Image Writer Model : Lexmark Z55 Power Management Mains (AC) Line Status : On-Line Operating System(s) Windows System : Microsoft Windows XP/2002 Professional 5.01.2600 (Service Pack 2) Platform Compliance : Win32 x86 Network Services Adapter : AMD PCnet-Home Based Network Adapter (Generic) Performance Tips Warning 100 : Large memory sizes should be made of Registered/Buffered memory. Tip 2546 : Large memory modules should be ECC/Parity. Notice 5901 : CD 1x= 150kB/s; Exercise caution when comparing measured versus published ratings. Notice 5902 : DVD 1x= 11.08Mbps Exercise caution when comparing measured versus published ratings. Tip 2 : Double-click tip or press Enter while a tip is selected for more information about the tip. Here's the arma.rpt ending: <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE"> ===================================================================== == D:\Games\ArmA\arma.exe ===================================================================== Exe version: Thu Jun 21 01:32:27 2007 Updating base class ->Default, by ca\anims\characters\config.bin/CfgMovesBasic/DefaultDie/ Updating base class ->Default, by ca\anims\characters\config.bin/CfgMovesMaleSdr/States/Crew/ Applying controller scheme Default Applying controller scheme Default Warning: no idc entry inside class RscDisplayMultiplayerSetup/controls/B_Side File mpmissions\CUR_MP.Sara\Dialogs\RecruitSoldierDialog.hpp, line 41: '/RAI9_RecruitSoldierDialog/RAI9_Frame.h': Missing ';' at the end of line No more slot to add connection at De61 (6952.9,8228.9) No more slot to add connection at Fh71 (11466.8,6127.8) No more slot to add connection at Fi71 (11613.7,6208.8) No more slot to add connection at Gh57 (13524.3,8896.8) No more slot to add connection at Hc39 (14473.8,12501.8) Cannot create object 349:0 Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. *** Player identity cannot be applied on person 2:664628 - player 616618866 not found *** Player identity cannot be applied on person 357:18 - player 656370551 not found *** Player identity cannot be applied on person 356:24 - player 294301886 not found EAST :4 REMOTE: Getting out while IsMoveOutInProgress EAST :3 REMOTE: Getting out while IsMoveOutInProgress Group WEST 1-2-C (0x51aa71b8) - network ID 2:675700 - no main subgroup Network simulation, time = 3.283 Group WEST 1-2-C (0x51aa71b8) - network ID 2:675700 - no main subgroup Group WEST 1-2-C (0x51aa71b8) - network ID 2:675700 - no main subgroup Group WEST 1-2-C (0x51aa71b8) - network ID 2:675700 - no main subgroup Group WEST 1-2-C (0x51aa71b8) - network ID 2:675700 - no main subgroup Group WEST 1-2-C (0x51aa71b8) - network ID 2:675700 - no main subgroup Group WEST 1-2-C (0x51aa71b8) - network ID 2:675700 - no main subgroup Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Group update arrived - leader changed from EAST :1 REMOTE (2:675277) to EAST :3 REMOTE (2:675450) Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. *** Remote: Identity [FIN] JarHead transferred from 353:53 to 353:55 Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Group update arrived - leader changed from EAST 3-4-E:5 REMOTE (2:672376) to EAST 3-4-E:8 REMOTE (2:672382) Group update arrived - leader changed from EAST 3-4-E:8 REMOTE (2:672382) to EAST 3-4-E:9 REMOTE (2:672384) Group update arrived - leader changed from EAST 3-4-E:9 REMOTE (2:672384) to EAST 3-4-E:10 REMOTE (2:672389) Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 349:0 (type AIStatsMPRowUpdate) not found. Client: Object 350:0 (type AIStatsMPRowUpdate) not found. Creating debriefing Client: Object 353:55 (type UpdatePositionMan) not found. Client: Object 357:0 (type AIStatsMPRowUpdate) not found. Client: Object 353:55 (type UpdatePositionMan) not found. Client: Object 353:55 (type UpdatePositionMan) not found. *** AI identity cannot be applied - person 2:675699 not found Client: Object 363:0 (type AIStatsMPRowUpdate) not found. Client: Object 2:675699 (type UpdateDamageVehicleAI) not found. Client: Object 363:6 (type UpdateDamageObject) not found. Client: Object 363:7 (type UpdateDamageObject) not found. Client: Object 2:673263 (type UpdateDamageVehicleAI) not found. Client: Object 363:4 (type UpdateDamageObject) not found. Client: Object 363:2 (type UpdateDamageObject) not found. Client: Object 363:5 (type UpdateDamageObject) not found. Client: Object 363:3 (type UpdateDamageObject) not found. Cannot create object 2:676024 Cannot create object 2:676025 Cannot create object 2:676026 Cannot create object 2:676027 Please BI Forums Pimp my ArmA...
×