Jump to content
Sign in to follow this  
hcpookie

Need help making a new mine type

Recommended Posts

I am working on a water mine (or nautical mine, if you prefer) in anticipation of the underwater diving module. I'm stumped.

It seems that making a new mine that inherits from the default mines (Minemine and MineMineE) doesn't work. Arma complains with all the "no entry..." errors. The issue APPEARS to be that the MineGeneric vehicle - which is the (private) parent of the mines in the cfgVehicles section - is a "root" object. It doesn't inherit from default; it is simply "class MineGeneric". So I tried adding the mine as a Buoy - no problems. It is a mine-shaped buoy! :) This is it ingame as a mean-looking buoy:

waterminetest1.jpg

Anything I do trying to get the mine to appear in-game either generates the "no entry" errors or causes an access violation. I looked at other mine addons, and no one has done what I am trying to do... inherit from the default mine configs. For example, JTD Mines uses a nonstrategic "Thing" object, and scripts. The SC9 naval buoy (from Arma) used a trigger in the init to damage nearby vehicles. If there's a mine object that inherits from defaults I've overlooked it. So it seems to me that the default BIS mines are hard-coded in such a way that hinders the addition of more mines.

Here is my config - as you can see, it is copied/pasted from the default mine configs. I've tried several different iterations (including changes to the inheritance as per the weapons_e config) and nothing changes the behavior. The issue is always a problem with the Vehicle section.

Thoughts?

class CfgAmmo {
class TimeBombCore;
class MineCore: TimeBombCore {};
class Mine: MineCore {};
class MineE: Mine {};
class pook_watermine: MineE {
	scope = 2;
	hit = 2000;
	indirectHit = 1800;
	indirectHitRange = 3;
	model = "\pook_water\pook_watermine.p3d";
	defaultMagazine = "pook_watermine";
	soundHit[] = {"Ca\sounds\Weapons\explosions\explosion_mega_08", 56.234131, 1, 1500};
	explosionEffects = "ATRocketExplosion";
	CraterEffects = "HERocketCrater";
	whistleDist = 4;
};
};


class CfgMagazines {
class TimeBomb;
class Mine: TimeBomb {};
class pook_watermine: Mine {
	scope = 2;
	displayName = "Anti-shipping water mine";
	picture = "\CA\weapons\data\equip\m_TM46_ca.paa";
	ammo = "pook_watermine";
	nameSoundWeapon = "mine";
	nameSound = "mine";
	descriptionShort = "Anti-shipping water mine";
};

};


class cfgWeapons {
class TimeBomb;
class Mine: TimeBomb {};
class pook_watermine: Mine {
	scope = 2;
	ammo = "pook_watermine";
	displayName = "Anti-shipping water mine";
	nameSound = "mine";
	sound[] = {"\ca\Weapons\Data\Sound\explosion_big_01_A", 31.622776, 1, 1500};
	class Library {
		libTextDesc = "Large spherical anti-shipping mine.  Designed to damage or destroy water vehicles.";
	};
	descriptionShort = "Anti-shipping water mine";
};

};


class CfgVehicles {
class MineGeneric;
class MineMine: MineGeneric {};
class pook_watermine: MineMine {
	scope = 2;
	model = "\pook_water\pook_watermine.p3d";
	displayName = "Anti-shipping water mine";
	icon = "\Ca\weapons\Data\map_ico\icomap_mine_ca.paa";
	mapSize = 3;
	ammo = "pook_watermine";
	accuracy = 1000; // difficult to detect, default - 0.2
	camouflage = 0.03; // sniper 0.6, man 1.0
};

};

Share this post


Link to post
Share on other sites

I don't see why BIS would do that.

Can you put in the exact error messages you're getting, please? :)

Abs

Share this post


Link to post
Share on other sites

I think something is hard-coded and it only looks for those two entries (but I'm hoping not!) so I think it is accidental. Something to do with the thoughts that a mine is technically a vehicle (like static guns) that is activated by another vehicle.

If I borrow a page from the JTD Mines playbook and make the mine inherit from "Thing", it becomes a static object that does nothing.

If I make the mine inherit from the "BuoySmall" object, it becomes a mine-shaped buoy and has no explosive interaction with anything.

If I add the "vehicleClass = "Mines";" to the config and it doesn't inherit from the "MineGeneric" weapon vehicle, it will AV with nothing in the report. >>> This is what leads me to guess there is something hard-coded or otherwise a non-config issue.

EDIT: As I'm typing this I thought of a hack that might work as a suitable workaround - using an init script to "attachto" a default mine to it. I'm not sure if it needs the "put" action to arm it but that should be scriptable.

Here's the RPT from my config that inherits directly from the MineMine vehicle. Same AV whether it inherits from "MineMine", "MineMineE", or "MineGeneric". It allows you to place it in the editor, then AV's to desktop when you try to preview. The first few "no entry" is perhaps the most telling - note that it says "no entry" for the MineMine vehicle, which I copied directly out of the BIS config.

Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.simulation'.

Warning Message: '/' is not a value

Unrecognized CfgVehicles simulation in bin\config.bin/CfgVehicles/pook_watermine/

Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.simulation'.

Warning Message: '/' is not a value

Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.simulation'.

Warning Message: '/' is not a value

I removed the AV details from the dump:

Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.simulation'.
Warning Message: '/' is not a value
Unrecognized CfgVehicles simulation  in bin\config.bin/CfgVehicles/pook_watermine/
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.simulation'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.simulation'.
Warning Message: '/' is not a value
Unrecognized CfgVehicles simulation  in bin\config.bin/CfgVehicles/MineMine/
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.model'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.simulation'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.model'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.simulation'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.accuracy'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.camouflage'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.audible'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.displayName'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.textSingular'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.speechSingular'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.textPlural'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.speechPlural'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.weaponSlots'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.spotableNightLightsOff'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.spotableDarkNightLightsOff'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.spotableNightLightsOn'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.visibleNightLightsOff'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.visibleNightLightsOn'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.nameSound'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.destrType'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.picture'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.portrait'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.cost'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.fuelCapacity'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.armor'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.damageResistance'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.extCameraPosition'.
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.extCameraPosition'.
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.extCameraPosition'.
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.groupCameraPosition'.
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.groupCameraPosition'.
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.groupCameraPosition'.
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.maxSpeed'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.limitedSpeedCoef'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.secondaryExplosion'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.sensitivity'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.sensitivityEar'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.brakeDistance'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.precision'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.formationX'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.formationZ'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.formationTime'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.steerAheadSimul'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.steerAheadPlan'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.ViewPilot'.
Warning Message: No entry '.initAngleY'.
Warning Message: '/' is not a value
Warning Message: No entry '.minAngleY'.
Warning Message: '/' is not a value
Warning Message: No entry '.maxAngleY'.
Warning Message: '/' is not a value
Warning Message: No entry '.initAngleX'.
Warning Message: '/' is not a value
Warning Message: No entry '.minAngleX'.
Warning Message: '/' is not a value
Warning Message: No entry '.maxAngleX'.
Warning Message: '/' is not a value
Warning Message: No entry '.initFov'.
Warning Message: '/' is not a value
Warning Message: No entry '.minFov'.
Warning Message: '/' is not a value
Warning Message: No entry '.maxFov'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.HeadLimits'.
Warning Message: No entry '.initAngleY'.
Warning Message: '/' is not a value
Warning Message: No entry '.minAngleY'.
Warning Message: '/' is not a value
Warning Message: No entry '.maxAngleY'.
Warning Message: '/' is not a value
Warning Message: No entry '.initAngleX'.
Warning Message: '/' is not a value
Warning Message: No entry '.minAngleX'.
Warning Message: '/' is not a value
Warning Message: No entry '.maxAngleX'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.predictTurnSimul'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.predictTurnPlan'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.minFireTime'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.enableWatch'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.enableRadio'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.transportFuel'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.transportRepair'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.transportAmmo'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.transportMaxWeapons'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.transportMaxMagazines'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.transportMaxBackpacks'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.lockDetectionSystem'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.incommingMisslieDetectionSystem'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.TransportWeapons'.
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.TransportMagazines'.
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.alwaysTarget'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.irTarget'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.irScanToEyeFactor'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.irScanRangeMin'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.irScanRangeMax'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.irScanGround'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.nightVision'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.laserScanner'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.laserTarget'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.nvTarget'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.artilleryTarget'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.artilleryScanner'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.commanderCanSee'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.driverCanSee'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.gunnerCanSee'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.radarType'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.attendant'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.engineer'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.preferRoads'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.unitInfoType'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.hideUnitInfo'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.soundEngine'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.soundEnviron'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.soundDammage'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.soundCrash'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.soundLandCrash'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.soundWaterCrash'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.soundGetIn'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.soundGetOut'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.soundServo'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.soundEngineOnInt'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.soundEngineOffInt'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.soundEngineOnExt'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.soundEngineOffExt'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.soundLocked'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.soundIncommingMissile'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.SoundEnvironExt'.
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.SoundGear'.
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.SoundEquipment'.
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.weapons'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.magazines'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.threat'.
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.type'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.reversed'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineGeneric.HeadAimDown'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.accuracy'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.camouflage'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.audible'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.textSingular'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.speechSingular'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.textPlural'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.speechPlural'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.weaponSlots'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.spotableNightLightsOff'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.spotableDarkNightLightsOff'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.spotableNightLightsOn'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.visibleNightLightsOff'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.visibleNightLightsOn'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.nameSound'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.destrType'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.picture'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.portrait'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.cost'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.fuelCapacity'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.armor'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.damageResistance'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.extCameraPosition'.
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.extCameraPosition'.
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.extCameraPosition'.
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.groupCameraPosition'.
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.groupCameraPosition'.
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.groupCameraPosition'.
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.maxSpeed'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.limitedSpeedCoef'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.secondaryExplosion'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.sensitivity'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.sensitivityEar'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.brakeDistance'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.precision'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.formationX'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.formationZ'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.formationTime'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.steerAheadSimul'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.steerAheadPlan'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.ViewPilot'.
Warning Message: No entry '.initAngleY'.
Warning Message: '/' is not a value
Warning Message: No entry '.minAngleY'.
Warning Message: '/' is not a value
Warning Message: No entry '.maxAngleY'.
Warning Message: '/' is not a value
Warning Message: No entry '.initAngleX'.
Warning Message: '/' is not a value
Warning Message: No entry '.minAngleX'.
Warning Message: '/' is not a value
Warning Message: No entry '.maxAngleX'.
Warning Message: '/' is not a value
Warning Message: No entry '.initFov'.
Warning Message: '/' is not a value
Warning Message: No entry '.minFov'.
Warning Message: '/' is not a value
Warning Message: No entry '.maxFov'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.HeadLimits'.
Warning Message: No entry '.initAngleY'.
Warning Message: '/' is not a value
Warning Message: No entry '.minAngleY'.
Warning Message: '/' is not a value
Warning Message: No entry '.maxAngleY'.
Warning Message: '/' is not a value
Warning Message: No entry '.initAngleX'.
Warning Message: '/' is not a value
Warning Message: No entry '.minAngleX'.
Warning Message: '/' is not a value
Warning Message: No entry '.maxAngleX'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.predictTurnSimul'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.predictTurnPlan'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.minFireTime'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.enableWatch'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.enableRadio'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.transportFuel'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.transportRepair'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.transportAmmo'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.transportMaxWeapons'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.transportMaxMagazines'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.transportMaxBackpacks'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.lockDetectionSystem'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.incommingMisslieDetectionSystem'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.TransportWeapons'.
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.TransportMagazines'.
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.alwaysTarget'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.irTarget'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.irScanToEyeFactor'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.irScanRangeMin'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.irScanRangeMax'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.irScanGround'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.nightVision'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.laserScanner'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.laserTarget'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.nvTarget'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.artilleryTarget'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.artilleryScanner'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.commanderCanSee'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.driverCanSee'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.gunnerCanSee'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.radarType'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.attendant'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.engineer'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.preferRoads'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.unitInfoType'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.hideUnitInfo'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.soundEngine'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.soundEnviron'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.soundDammage'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.soundCrash'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.soundLandCrash'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.soundWaterCrash'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.soundGetIn'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.soundGetOut'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.soundServo'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.soundEngineOnInt'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.soundEngineOffInt'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.soundEngineOnExt'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.soundEngineOffExt'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.soundLocked'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.soundIncommingMissile'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.SoundEnvironExt'.
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.SoundGear'.
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.SoundEquipment'.
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.weapons'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.magazines'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.threat'.
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.type'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.reversed'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/MineMine.HeadAimDown'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.audible'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.textSingular'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.speechSingular'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.textPlural'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.speechPlural'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.weaponSlots'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.spotableNightLightsOff'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.spotableDarkNightLightsOff'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.spotableNightLightsOn'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.visibleNightLightsOff'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.visibleNightLightsOn'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.nameSound'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.destrType'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.picture'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.portrait'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.cost'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.fuelCapacity'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.armor'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.damageResistance'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.extCameraPosition'.
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.extCameraPosition'.
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.extCameraPosition'.
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.groupCameraPosition'.
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.groupCameraPosition'.
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.groupCameraPosition'.
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.maxSpeed'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.limitedSpeedCoef'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.secondaryExplosion'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.sensitivity'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.sensitivityEar'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.brakeDistance'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.precision'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.formationX'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.formationZ'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.formationTime'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.steerAheadSimul'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.steerAheadPlan'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.ViewPilot'.
Warning Message: No entry '.initAngleY'.
Warning Message: '/' is not a value
Warning Message: No entry '.minAngleY'.
Warning Message: '/' is not a value
Warning Message: No entry '.maxAngleY'.
Warning Message: '/' is not a value
Warning Message: No entry '.initAngleX'.
Warning Message: '/' is not a value
Warning Message: No entry '.minAngleX'.
Warning Message: '/' is not a value
Warning Message: No entry '.maxAngleX'.
Warning Message: '/' is not a value
Warning Message: No entry '.initFov'.
Warning Message: '/' is not a value
Warning Message: No entry '.minFov'.
Warning Message: '/' is not a value
Warning Message: No entry '.maxFov'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.HeadLimits'.
Warning Message: No entry '.initAngleY'.
Warning Message: '/' is not a value
Warning Message: No entry '.minAngleY'.
Warning Message: '/' is not a value
Warning Message: No entry '.maxAngleY'.
Warning Message: '/' is not a value
Warning Message: No entry '.initAngleX'.
Warning Message: '/' is not a value
Warning Message: No entry '.minAngleX'.
Warning Message: '/' is not a value
Warning Message: No entry '.maxAngleX'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.predictTurnSimul'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.predictTurnPlan'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.minFireTime'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.enableWatch'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.enableRadio'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.transportFuel'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.transportRepair'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.transportAmmo'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.transportMaxWeapons'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.transportMaxMagazines'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.transportMaxBackpacks'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.lockDetectionSystem'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.incommingMisslieDetectionSystem'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.TransportWeapons'.
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.TransportMagazines'.
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.alwaysTarget'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.irTarget'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.irScanToEyeFactor'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.irScanRangeMin'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.irScanRangeMax'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.irScanGround'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.nightVision'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.laserScanner'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.laserTarget'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.nvTarget'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.artilleryTarget'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.artilleryScanner'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.commanderCanSee'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.driverCanSee'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.gunnerCanSee'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.radarType'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.attendant'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.engineer'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.preferRoads'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.unitInfoType'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.hideUnitInfo'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.soundEngine'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.soundEnviron'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.soundDammage'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.soundCrash'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.soundLandCrash'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.soundWaterCrash'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.soundGetIn'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.soundGetOut'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.soundServo'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.soundEngineOnInt'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.soundEngineOffInt'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.soundEngineOnExt'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.soundEngineOffExt'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.soundLocked'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.soundIncommingMissile'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.SoundEnvironExt'.
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.SoundGear'.
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.SoundEquipment'.
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.weapons'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.magazines'.
Warning Message: Size: '/' not an array
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.threat'.
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: []: '/' not an array
Cannot evaluate '' - no file
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.type'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.reversed'.
Warning Message: '/' is not a value
Warning Message: No entry 'bin\config.bin/CfgVehicles/pook_watermine.HeadAimDown'.
Warning Message: '/' is not a value

Edited by hcpookie

Share this post


Link to post
Share on other sites

Well no matter what, I can't get the mine to behave like I want it to. Regardless of how it is configured, or what model it uses, it will still only react to ARMOR class vehicles. So if a non-armor class vehicle approaches it, it simply won't do anything. So the mine inheritance question seems to be a hard-coded config that is intended to make the anti-tank mines work ONLY as anti-tank mines, which makes sense when you think about it like that. SO... unless I find something else, I think I'm forced to use an event handler solution to make the mine trigger against SHIP class vehicles.

Share this post


Link to post
Share on other sites

Hi all! I'm working on the script to make this work. I'm borrowing heavily from the numerous existing scripts and examples but this is going in a slightly different direction. I'm at a stoppage right now. Whatever I do, I can't get the trigger to attach to the object. I've tried several different ways to do it and nothing is working like others have reported it should be working. I spent several hours last night tweaking the script. I think the correct way to do this is to use the "isKindOf" filter like others have posted:

this && ({_x isKindOf "SHIP"} count thisList) > 0

However I can't make this work at all. I have set it to "> 1". The reason I think "> 1" should work is that the water mine is a ship object so it behaves properly in water. Setting this line to the original "> 0" means the instant the mine is spawned the trigger is activated. It seems no matter how I configure it, it simply doesn't work so I am guessing there is a syntax error in how I'm trying to interrogate "thisList". Currently I can make the trigger activate with a simple "countType" so isKindOf may not be necessary. I have gotten it to work with _count > 0 but it doesn't seem to like when I add "this &&" as per the isKindOf example. The point of the _count usage is simple - only set off the mine if more than 1 ship object is in the trigger area. Mine = 1 ship; "any target ship" = 2 ship. That, from my understanding, should make the water mine behave properly.

The CURRENT problem is that the attachTo doesn't work with a trigger, although several posts say it should. I have added a marker to it so I can see where it is on the map. I'm setting it at 0,0,0 because I can't get it to accept the _pos variable no matter how I set it. Always get the "only one parameter was passed but there should be three" prompts in the RPT. So setting it at 0,0,0 and then attachTo the mine vehicle seems to be the logical solution. Thinking maybe it is sinking to the ground (below water level) I have tried setPosASL and it makes no difference.

Here's what I have right now after some more tweaking and trying different iterations - anyone smarter than me see what is probably an obvious script problem?

_mine = this select 0;
_count= "SHIP" countType thisList;
_pos = [(position _mine select 0), (position _mine select 1), (position _mine select 2)];

_trg = createTrigger ["EmptyDetector", [0, 0, 0]];
_trg setTriggerArea [1, 1, 0, false];
_trg setTriggerActivation ["ANY", "PRESENT", false];
_trg setTriggerStatements ["this && (_count > 1)", "hint 'trigger on'; _ammo = 'ARTY_Sh_82_HE' camCreate (getPos _mine); _mine setDamage 1; deleteVehicle _trg", ""];

//_trg attachTo [_mine,[0,0,0]]; // this didn't work either
_trg setPosASL [_mine, [0,0,0]];

sleep 3;
hint 'marker time';

_MINEMARKER = createMarker ['Water_Mine', [(position _trg select 0), (position _trg select 1)]];
_MINEMARKER setMarkerShape "ICON";
"Water_Mine" setMarkerType "Marker";
"Water_Mine" setMarkerText "Water Mine";

Share this post


Link to post
Share on other sites

Hmm

Maybe you can make a buoy class item and give it very low armour but big destruction value

Thi is just idea , I know it's possible but wether the ability to destroy a near object is possible without script would need investigation .

Share this post


Link to post
Share on other sites

I'm really close... I cna manually make a trigger that activates when a ship comes near it and blows up the ship. So I'm certain this will work. the problem is my script-fu is weak :)

I've been looking over some script examples and I'm going to try a few more things I haven't attempted yet. I'm guessing that my script is incorrectly written and so no info is getting passed along to the trigger.

Share this post


Link to post
Share on other sites

Making progress! Sat down with a cup of coffee and worked through my problem. I wasn't properly passing "this" and now it is partially working. I found a new problem of course LOL

// if (isDedicated) exitWith {};

_mine = _this;
_pos = getPos _mine;

_trg = createTrigger ["EmptyDetector", _pos];
_trg setTriggerArea [5, 5, 0, false];
_trg setTriggerActivation ["ANY", "PRESENT", false];
_trg setTriggerStatements ["{_x in thislist && _x iskindof 'SHIP'} count vehicles > 1", "hint 'trigger on'; _ammo = 'ARTY_Sh_82_HE' camCreate (getPos _trg); _mine setDamage 1; deleteVehicle _trg; deleteMarker _minemarker", ""];
_trg attachTo [_mine,[0,0,0]];

_minemarker = createMarker ['naval_mine', position _mine];
_minemarker setMarkerShape "ICON";
"naval_mine" setMarkerType "Warning";
"naval_mine" setMarkerText "Naval Mine";

This works for everything EXCEPT creating the bomb! This is the line:

_trg setTriggerStatements ["{_x in thislist && _x iskindof 'SHIP'} count vehicles > 1", "hint 'trigger on'; _ammo = 'ARTY_Sh_82_HE' camCreate _pos; _mine setDamage 1; 

... where:

"{_x in thislist && _x iskindof 'SHIP'} count vehicles > 1",
= the condition,
"hint 'trigger on'; _ammo = 'ARTY_Sh_82_HE' camCreate _pos; _mine setDamage 1; deleteVehicle _trg; deleteMarker _minemarker",
= On Activation.

All I get is the hint. Nothing else will activate. Now, when I manually create a trigger in the editor, I can make it work fine with this:

_ammo = 'ARTY_Sh_82_HE' createVehicleLocal (position mine)

... and in the mine's INIT:

scr = this execVM "mines.sqf";

Unfortunately it seems that the use of "_mine" is not equal to "mine" in the editor (named object). I've tried several different methods including an array with getpos select 0, getpos select 1, etc. and it complains with "type any, expected number". So what I think is happening is I'm telling it to create the object at the variable location, not at the OBJECT location. I think. So what I need to do is have the camcreate happen "at" the trigger. I'm just not sure how to do that. In the editor it is easy - the named object "mine" is the focus of the commands and it works like a charm.

If I use "hint str(position _trg);" or "hint str(position _mine);" in the script, I get a valid location.

So I think I'm asking how to pass an unnamed object's identity to the trigger? I expected "_mine" to have been correct since "_mine = this" (the mine object).

Share this post


Link to post
Share on other sites

How about trying to retrieve the trigger's 'attachedObject' in the trigger statements instead of passing the _mine in? (Haven't tested this).

Share this post


Link to post
Share on other sites

I tried that and didn't get anything back. In fact it seems the only thing I'm not doing properly is passing the right information in the "on activation" part of the trigger. I had an idea last night to have the trigger exec a 2nd script, so I will try to do all the "getpos" stuff in the 2nd script by using "_this" which should be the trigger. I will try that tonight or tomorrow.

Share this post


Link to post
Share on other sites

Damn, you beat me to the Naval Mine idea. Since the default mines only react to Armor class (and not boats/ships) maybe mies wouldnt be the best idea. Could you attach-to a Satchel or IED and do like you said above with the trigger for watercraft?

Share this post


Link to post
Share on other sites

Making progress. Unsure as to why this fails. It works GREAT if I add this to the INIT in the editor:

[color="#FF0000"]str = this execVM "\pook_water\data\scripts\init_watermine.sqf";[/color]

Here's my working script:

if (isDedicated) exitWith {};

_mine = _this;
_pos = [(getPos _mine select 0), (getPos _mine select 1), 0];

activated = false;

hint str(_pos);

_minemarker = createMarker ['naval_mine', _pos];
_minemarker setMarkerShape "ICON";
"naval_mine" setMarkerType "Warning";
"naval_mine" setMarkerText "Naval Mine";


_trg = createTrigger ["EmptyDetector", _pos];
_trg setTriggerArea [5, 5, 0, false];
_trg setTriggerActivation ["ANY", "PRESENT", false];
_trg setTriggerStatements ["{_x in thislist && _x iskindof 'SHIP'} count vehicles > 1;", "activated = true", ""];
_trg attachTo [_mine,[0,0,0]];

waitUntil {activated};
_mineammo = "ARTY_Sh_82_HE" createVehicleLocal _pos;

And the config that calls it:

	class pook_watermine: BuoySmall {
	scope = 2;
	model = "\pook_water\pook_watermine.p3d";
	displayName = "Naval Mine (medium)";
	icon = "\pook_water\data\mapicon.paa";
	mapSize = 2;
	armor = 1;
	camouflage = 0.03; // sniper 0.6, man 1.0, buoy 0.001
	accuracy = 2000; // difficult to detect, default - 0.2, sniper 3.5, man 1000

	class DefaultEventhandlers;
	class EventHandlers: DefaultEventhandlers {
		[color="#FF0000"]init = "scr = this execVM ""\pook_water\data\scripts\init_watermine.sqf""; ";[/color]
	};

The INIT is the same. So... why doesn't it work in the addon without adding it to the INIT of the editor? :confused:

Share this post


Link to post
Share on other sites

Probably because. This in the init is not anything known or defined , try [] or ( this select 0) or may even require _. Been too long to recall but it's one of them

Share this post


Link to post
Share on other sites

Thromp that helped immensely! I can get a single mine to work now! :) I'm using a variable to keep it simple, so now I know it works. Next step - get this to work with the conditions within the trigger:

if (isDedicated) exitWith {};

_mine = _this select 0;
_pos = [(getPos _mine select 0), (getPos _mine select 1), 0.25];

activated = false;

_trg = createTrigger ["EmptyDetector", _pos];
_trg setTriggerArea [5, 5, 0, false];
_trg setTriggerActivation ["ANY", "PRESENT", false];
_trg setTriggerStatements ["{_x in thislist && _x iskindof 'SHIP'} count vehicles > 1;", "activated = true", ""];
_trg attachTo [_mine,[0,0,0]];

waitUntil {activated};

_mineammo = "pook_minemed" createVehicleLocal _pos; // medium mine

deleteVehicle _mine;

The "activated" trigger is of course global so more than 1 mine in the mission doesn't work too well. SO - what I think needs to happen is the createVehicle part needs to happen in the trigger init. The issue I have is passing the _pos to the trigger, so I need to figure a way to set that for the trigger. Again, works fine in the editor if I create a trigger and everything is named.

EDIT - forgot to document what worked in the config:

init = "scr = [(_this select 0)] execVM ""\pook_water\data\scripts\init_watermine.sqf""; ";

Also, "thisTrigger" does the job! Still need to figure why the mine doesn't die when the trigger fires but overall it is working! :cool:

Edited by hcpookie

Share this post


Link to post
Share on other sites

Finished!

_William, the attachedObject command only returns a LOCATION! It seems that is useful for things like city centers, etc. but didn't work in this case. Had to use nearestObject to make it work correctly.

The 'pook_minemed' weapon is a new bomb ammo with a large enough indirectHit value to make the mines effective even when you are going at top speed through the mines. You can substitute a Mk82 or anything really. You'll have to deal with the fact that the bomb model appears at the instant it fires. The 'pook_minemed' bomb ammo uses the granat 3D object to minimize the 'look'.

I don't know if the trigger NEEDS to be deleted after it fires, but it can't hurt, right?

Still using the previous mentioned INIT:

// medium mine

if (isDedicated) exitWith {};

_mine = _this select 0;
_pos = [(getPos _mine select 0), (getPos _mine select 1), 0.25];

_trg = createTrigger ["EmptyDetector", _pos];
_trg setTriggerArea [5, 5, 0, false];
_trg setTriggerActivation ["ANY", "PRESENT", false];
_trg setTriggerStatements ["{_x in thislist && _x iskindof 'SHIP'} count vehicles > 1;", "hdl = 'pook_minemed' createVehicleLocal [(getPos thisTrigger select 0), (getPos thisTrigger select 1), 0.25]; _locAttachedObj = nearestObject position thisTrigger; deleteVehicle _locAttachedObj; deleteVehicle thisTrigger", ""];
_trg attachTo [_mine,[0,0,0]];

Here's the NEW problem- been working with boats. But the amphibious ARMORED vehicles aren't working. Because of this:

EDIT - FIXED! Now explodes if amphibious vehicles OR boats come near! I had to tweak the trigger SIZE from 2,2 to 5,5 because the way the vehicle distance is detected appears to be from the centerpoint. This makes amphib vehicles bump into the mines before the trigger can fire, causing "dud" mines. SO IT WORKS! :)

// medium mine

if (isDedicated) exitWith {};

_mine = _this select 0;
_pos = [(getPos _mine select 0), (getPos _mine select 1), 0.25];

_trg = createTrigger ["EmptyDetector", _pos];
_trg setTriggerArea [5, 5, 0, false];
_trg setTriggerActivation ["ANY", "PRESENT", false];
_trg setTriggerStatements ["({_x in thislist && (_x iskindof 'SHIP')} count vehicles > 1) || ({_x in thislist && (_x iskindof 'LANDVEHICLE')} count vehicles > 0)", "hdl = 'pook_minemed' createVehicleLocal [(getPos thisTrigger select 0), (getPos thisTrigger select 1), 0.25]; _locAttachedObj = nearestObject position thisTrigger; deleteVehicle _locAttachedObj; deleteVehicle thisTrigger", ""];
_trg attachTo [_mine,[0,0,0]];

Edited by hcpookie

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×