Jump to content

DMC

Members
  • Posts

    39
  • Joined

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

DMC's Achievements

Scavenger

Scavenger (2/15)

9

Reputation

  1. Thank you Sphereii, I did not think it would work that way, but it works perfectly. I seriously thought i would have to remove each line of code. Thank you again.
  2. Another question, does anyone know how to add a level requirement to a quest? I have tried a few different ways and have yet to get it working.
  3. Is there a fast way to remove a whole section of code with one line? For example I want to remove an entire quest from the game, how can i do that with one line of code and not have to write a whole bunch of <remove xpath=".... blah blah etc...
  4. being able to make the lights in the game brighter would be nice. I have been looking around trying to find a way to make the spotlight actualy work like a spotlight, sadly i am not finding a way to make it brighter and shine further. Anyone know how to do this?
  5. have you tried the and? something like this <set xpath="/blocks/block[@name='treeCactus01']/drop[@event='Destroy' and @name='resourceYuccaFibers']/@count">20</set>
  6. In the code I was working with the tag was being used to define how the animal was being harvested, ie with hunting knife or butcherHarvest vs say a stone ax an alltoolsharvest. I am no expert but i see Tag used to say if a recipe is learnable etc... thus i would define it as a way of setting parameters to use or get somthing. Hope that helps maybe a more experienced coder can give us a better definition of the Tag .
  7. sbangs007 I had a similar problem, my code was <set xpath="/entity_classes/entity_class[@name='animalStag']/drop[@event='harvest'][@name='resourceFemur][@tag='butcherHarvest']/@count">5</set> What i found to work was this <set xpath="/entity_classes/entity_class[@name='animalStag']/drop[@tag='butcherHarvest']/@count">5</set> so for you i would have somthing like this <set xpath="/blocks/block[@name='treeCactus01']/drop[@name='resourceYuccaFibers']/@count">20</set>
  8. Thanks sphereii, i feel stupid having missed that stupid =
  9. Hey everyone, working on some mods and I can't seem to get this to work. code: <remove xpath="/lootcontainers/lootgroup[@name=weaponsHuntingRifle+ammo]/item[@name'ammo762mmBulletFMJ']"/> I want to remove the ammo from the loot group so i can insert other ammo that the hunting rifle now fires.
×
×
  • Create New...