Hazey's Insurgency

  1. 7 years ago

    Hej

    Not quite sure if this is the perfect place for it, but I'm trying to put hazeys insurgency framework over my mission.
    The intel search works nicely. Call to prayers works too, although I am not quite able to blow it up. The speakers are gone, but it still plays the tune.
    But te main problem is with the caches. I put up the intel chance to 95% for testing. found enough to narrow it down, but with the original files there was no cache that spawned. Then I tried to change the box-type. Then it worked, I found a box in the area provided by intel. Put down a satchel, blew it up, nothing happened. Tried with another 4 satchels and 3 big charges. Nothing left of the building, but the box is still there.
    Any ideas?

  2. Edited 7 years ago by HeroesandvillainsOS

    I'm not sure what the protocol for this type of thing is but Maquez has some of his modifications to that mission on BIS forums (and maybe Workshop?) that you might be able to look at. I haven't really played them so I can't say if he solved that issue or not. Pretty sure he did but don't take my word on it. If you have trouble finding one of his missions (he has a few) let me know and I'll dig one up and link you. Pretty sure they all carry the Insurgency tag as required by Hazey (as well as a few other requirements you should look into if you release them).

  3. Ah, I found the error.
    In the file: functions\fn_spawnCache.sqf, line 178 the function adds an EventHandler to destroy the Cache IF the Cache is destroyed via SatchelCharge or DemoCharge.
    But the class names are spelled wrong.
    In the script it says: ["SatchelCharge_Remote_Ammo","DemoCharge_Remote_Ammo"...
    In the CfgWeapons it is: "SatchelCharge_Remote_Mag" and "DemoCharge_Remote_Mag"

  4. Edited 7 years ago by DaVidoSS

    Oh you are wrong.

  5. Edited 7 years ago by Murdock

    Am I?
    BI Studio Wiki - CfGMagazines
    Class: SatchelCharge_Remote_Mag
    Name: Explosive Satchel
    Inventory Description: Type: Charge, Rounds: 1, Used on: Ground, Vehicles
    Ammo: SatchelCharge_Remote_Ammo
    Used By: Put

    Same goes for DemoCharge.

    What is the "killer"? The "Weapon/Mag" or the "Bullet/Ammo"? Or is it the Firing Device (Ace3)?

    Edit: Maybe I'll try to Play with the eventHandler Explosion a bit:
    Triggered when a vehicle or unit is damaged by a nearby explosion.
    Since it is kinda strange to shoot the box with a tank or grenade and not get any results other than raining building parts.

  6. Edited 7 years ago by DaVidoSS
    DemoCharge configfile class  "DemoCharge_F"
    SatchelCharge configfile class "SatchelCharge_F"
    
    DemoCharge inventory class  "DemoCharge_Remote_Mag"
    SatchelCharge inventory class "SatchelCharge_Remote_Mag"
    
    DemoCharge after plant on the ground class  "DemoCharge_Remote_Ammo"
    SatchelCharge after plant on the ground class "SatchelCharge_Remote_Ammo"
  7. Ok. So it would be the _Ammo which does the damage. Any idea why it is not working? It's kinda depressing to blow up a new Grand Canyon and see the box unharmed in it.

  8. Post your script that we can look into it.

  9. It is from Hazeys Insurgency. File is fn_spawnCache.sqf.

    //--- Add event handlers to the cache
    //--- Handle damage for only Satchel and Demo charge.
    CACHE addEventHandler ["handledamage", {
    	if ((_this select 4) in ["SatchelCharge_Remote_Ammo","DemoCharge_Remote_Ammo","SatchelCharge_Remote_Ammo_Scripted","DemoCharge_Remote_Ammo_Scripted"]) then {
    
    		(_this select 0) setdamage 1;
    		//--- Event handler to call explosion effect and score.
    		(_this select 0) spawn INS_fnc_cacheKilled;
    
    	} else {
    
    		(_this select 0) setdamage 0;
    
    	}}];
    //--- End of event handlers
  10. Try this one

    CACHE addEventHandler ["handledamage", {
    
    	params ["_box","_selection","_damage","_damager", "_ammoType"];
    	
    	if (_ammoType isKindOf "PipeBombCore") then {
    
    		_box setdamage 1;
    		//--- Event handler to call explosion effect and score.
    		_box spawn INS_fnc_cacheKilled;
    
    	} else {
    
    		_box setdamage 0;
    
    	};
    }];
  11. @SavageCDN

    Guys over on BIS forums are looking for clarification if Hazey released the license of the mission and/or what the release stipulations are.

    Could you clarify?

  12. "PipeBombCore" ?
    Should I change that to something else or is it really that exact class-type?

  13. PipeBombCore is a parentclass for both charges

  14. Good to know. Will Test it asap and report back.
    Thanks for now :)

  15. Edited 7 years ago by HeroesandvillainsOS

    Murdock, if you get a functioning template going, could you post it back here? I'm assuming it's added with scripts and called in the mission files? I've got a couple missions which I think would play better centered around this template.

  16. I'm using the Template from Hazeys Insurgency.
    But I will so god will post my Mission some time sooner or later.
    Need to polish out some more bugs and add some shiny things, then translate some things to english (some of my colleagues don't understand english that well, so I made all briefings in german) and then I'll Show that precious Little Thing to the world.
    Until then, you will just have to wait, @HeroesandvillainsOS 

  17. Edited 7 years ago by SavageCDN

    @HeroesandvillainsOS  answered on BIF post

  18. @Murdock I'm using the Template from Hazeys Insurgency.
    But I will so god will post my Mission some time sooner or later.
    Need to polish out some more bugs and add some shiny things, then translate some things to english (some of my colleagues don't understand english that well, so I made all briefings in german) and then I'll Show that precious Little Thing to the world.
    Until then, you will just have to wait, @HeroesandvillainsOS 

    I can be patient. :)

    And thanks Savage.

  19. Hazey

    28 Apr 2016 Moderator

    @Murdock Hej

    Not quite sure if this is the perfect place for it, but I'm trying to put hazeys insurgency framework over my mission.
    The intel search works nicely. Call to prayers works too, although I am not quite able to blow it up. The speakers are gone, but it still plays the tune.

    Call to Prayer was something that I had just started working on before I took a step back for awhile. I bet I never added a variable to stop the music when the Speaker was destroyed. Should be a simple fix.

    @Murdock Then I tried to change the box-type. Then it worked, I found a box in the area provided by intel. Put down a satchel, blew it up, nothing happened. Tried with another 4 satchels and 3 big charges. Nothing left of the building, but the box is still there.

    Destroying the Caches with Satchels or Charges has always been the bane of my existence with this script. I tried a lot of different things however it did work at one time. It could simply be the changed the way the event handler get handled in the latest versions. In the end, I wanted the cache to be able to be destroyed by most explosive types including aircraft bombs. Never got around to really working that out.

  20. Edited 7 years ago by Murdock

    @DaVidoSS Try this one

    CACHE addEventHandler ["handledamage", { params ["_box","_selection","_damage","_damager", "_ammoType"]; if (_ammoType isKindOf "PipeBombCore") then { _box setdamage 1; //--- Event handler to call explosion effect and score. _box spawn INS_fnc_cacheKilled; } else { _box setdamage 0; }; }];

    Did try, did not work. :(

    Okay.
    I made it! It works:

    CACHE addEventHandler ["explosion", {
    
    	params ["_box","_damage"];
    	
    		_box setdamage 1;
    		//--- Event handler to call explosion effect and score.
    		_box spawn INS_fnc_cacheKilled;
    
    }];

    The caches is not destroyed by bullets.
    It is not destroyed by grenades (at least EGLM, that was tested).
    But it is definetly destroyed via demo charge.

  21. Newer ›
 

or Sign Up to reply!