The Velvet Gentleman

Member
  • Content count

    3
  • Donations

    0.00 EUR 
  • Joined

  • Last visited

Community Reputation

2 Neutral

About The Velvet Gentleman

  • Rank
    Bambi
  1. The Velvet Gentleman

    Weapon Attachment Dupe Fix (FULL, Updated 5/12/2018)

    This seems to work great. Thanks for sharing your snippet @Pattoh. I was wondering if anybody's found a workaround for attachments to stop magically appearing in vehicles whenever the inventory is updated? Say I have an RHS AKM in the trunk of a car without a muzzle attachment, and I sell a can of dog food out of the car, suddenly a DTK appears. And then another if I sell another can, and on, and on, and on... Most of these muzzles can't be sold but after a big haul I've had players with 30-40 DTKs in there. It's a real pain when you have to drag them all onto the ground one by one when you don't have access to the waste dump. An example: I had two empty AKMs in the car and started selling smoke grenades. I know these weapons spawn with DTKs, and every time the vehicle updates its inventory it basically just wipes it and spawns a new one. And I know the easy way to get rid of this is to just remove the AKM and others like it, but there has to be a better way. Solution Edit: For anybody having this problem, what I did to fix it was make an array of the items that I know get duplicated (it's surprisingly small) and hooked into the ExileClient_util_containerCargo_deserialize function much the same way this thread hooks into the updateInventoryListBox function. At line 21 you should see the start of a loop that iterates over all the items passed to the function. Simply wrap everything in that loop in an if statement like so: Package that file up into your custom code folder and call it just like you did with the original. That's all there is to it. It's certainly not elegant, but it's functional.
  2. The Velvet Gentleman

    VCOM AI 3.0 and Exile not working together?

    Go to your CfgRemoteExec.hpp, and in the functions section add: //VCOM class vcm_serverask { allowedTargets=0; }; Like so: class CfgRemoteExec { class Functions { mode = 1; jip = 0; class vcm_serverask { allowedTargets = 2; }; }; }; I'm somewhat disappointed with VCOM 3. It's easier and lighter, but it doesn't seem to be better in any way.
  3. The Velvet Gentleman

    [UPDATE] VCOM AI (Exile 1.0.4)

    I am currently testing VCOM3 out on a fledgling server. I cannot seem to get them to use smokes. These are DMS AI with vanilla white smokes in their inventory. Does anyone know what could be interfering? They also do not seem to move into cover as effectively as VCOM2. It seems like the only feature of 3 is the knockover, which does make for some fun fights but 2's AI was much scarier.