yukihito23

Member
  • Content count

    268
  • Donations

    0.00 EUR 
  • Joined

  • Last visited

  • Days Won

    6

yukihito23 last won the day on November 8 2018

yukihito23 had the most liked content!

Community Reputation

91 Excellent

3 Followers

About yukihito23

Recent Profile Visitors

1509 profile views
  1. yukihito23

    Exile Scavenge Framework - 0.7 BETA (23.10.2017)

    Majority of the actual code function should be stored inside core/code/client/ which should include check for condition
  2. yukihito23

    Exile Scavenge Framework - 0.7 BETA (23.10.2017)

    >allexandrk go ahead and try it, nothing stops you. no idea what you are talking about on the 2nd part. >Thoughtscape Scavenge doesn't detect non model elements in the environment, maybe ponds might work since ponds are object models, though ponds react a bit differently from the normal models sometimes when I'm creating a terrain so dunno, best to try out. world terrain water would need to have a different method added as function to detect as that's not technically a model
  3. yukihito23

    Exile Scavenge Framework - 0.7 BETA (23.10.2017)

    fixed a few duplicates and typo which was reported over on git. nothing huge here worth updating if you already have within the past few months.
  4. yukihito23

    Exile Scavenge Framework - 0.7 BETA (23.10.2017)

    I think Salutesh updated master repo under my account like 4 days ago with something but I haven't looked in to it yet. https://github.com/yukihito23/Exile_Scavenge
  5. yukihito23

    Exile Scavenge Framework - 0.7 BETA (23.10.2017)

    Hard to read as you haven't used code block but you haven't closed CfgRemoteExec at a glance.
  6. yukihito23

    Exile Scavenge Framework - 0.7 BETA (23.10.2017)

    You haven't provided context in where the failing point is in your question thus can not direct you to an answer atm. Where in the functional flow does it fail to meet the expectated outcome? Icon shows for hold action Hold action can be executed Scavenge can be executed Item output meets expected results
  7. yukihito23

    Exile Scavenge Framework - 0.7 BETA (23.10.2017)

    Since it's a script, you may want to enable client side error logs or look at client rpt to work with it if you were looking at server rpt's. Though, glad it's working for you now.
  8. yukihito23

    Exile Scavenge Framework - 0.7 BETA (23.10.2017)

    well, the objects outside the house have their own ID values so we are able to block them individually, the furniture inside the houses are proxy objects thus do not have their own ID's so we are blocking based on radius of the given location in 2D. in this case if player wiggles around and is able to point at the object from outside of that block area earlier defined, then they are able to scavenge again. as Chernaruski mentions, yeah taking up the block radius and lowering the scavenge trigger radius would help in this situation to kind of make it so folks can't scavenge over and over again as long as they are outside of the scavenge block radius. as for the large radius blocking other furniture once 1 furniture is scavenged, well it would mean balance out the percentage of loot against how clustered furniture is within average count of a given house to get a sweet spot.
  9. yukihito23

    Exile Scavenge Framework - 0.7 BETA (23.10.2017)

    ah ok then. I have all loot table types set to have high chance of trash spawning so, have the tables different for scavenge as wouldn't find magazines inside fridge and such.
  10. yukihito23

    Exile Scavenge Framework - 0.7 BETA (23.10.2017)

    even if it works with above, I would still highly advice you learn how the exile loot table setup is done to customize it to be more natural, as you usually don't find backpacks or so from inside a fridge for example.
  11. yukihito23

    Exile Scavenge Framework - 0.7 BETA (23.10.2017)

    ah, I see where it is. in CfgExileScavenge.cpp I think your default is hooked to furnitureCommon, around line 80 or so, where CivillianLowerClass is commented out. remove the comment from row which defines as CivilianLowerClass and delete the other line for furnitureCommon and it should work then. I've updated git side as well as it seems the loottable Salutesh provided is pretty much basic loottable template instead of the one I had posted around 10 or so pages back.
  12. yukihito23

    Exile Scavenge Framework - 0.7 BETA (23.10.2017)

    would depend since you may have furniture loot hooked up to a seperate class from wrecks in loot table
  13. yukihito23

    Exile Scavenge Framework - 0.7 BETA (23.10.2017)

    i believe if i remember correctly, if in case scavenge function itself works but you are getting no items when system says it has found something would mean you have a problem somewhere in where you specify connections with loot table
  14. yukihito23

    Exile Scavenge Framework - 0.7 BETA (23.10.2017)

    Since Salutesh has been busy in real life for a while, and due to conversations happening in CHR Discord Server owners channel, we have fixed the below issues and have pushed latest codebase to Git. Fix multiple scavenge sequences upon same object (especially large objects) by giving IF ELSE condition of either proxy object type (block by object pos method) or non proxy object type (block by object ID method). Some further optimization. Credits of this fix goes to NiiRoZz for code architecture & implementation Chernaruski for preliminary test and feedback yukihito23 for requirements, acceptance criteria, functional test