Hi there! You are currently browsing as a guest. Why not create an account? Then you get less ads, can thank creators, post feedback, keep a list of your favourites, and more!
Quick Reply
Search this Thread
Test Subject
Original Poster
#1 Old 28th May 2017 at 8:34 AM
Default Help W/ Creating Trait
Okay so I'm new to modding and such but I want to make a proximity buff pop out when a sim visits certain locations but for some reason when I make the buff and the test conditions the buff doesn't show up in game. Can you help me? I'm using mod constructor V2 Beta
Advertisement
Test Subject
#2 Old 28th May 2017 at 2:51 PM
Kinda need more information on this. Here's an example of a proximity buff test:
Code:
  <V n="proximity_detection_tests" t="proximity_tests">
    <L n="proximity_tests">
      <L>
        <V t="buff">
          <U n="buff">
            <E n="subject">TargetSim</E>
            <V t="enabled" n="whitelist">
              <L n="enabled">
                <T>38906<!--Buff: Buff_Instrument_PlayingBadly--></T>
              </L>
            </V>
          </U>
        </V>
      </L>
    </L>
  </V>

And an example of a venue buff (On the venue):
Code:
  <L n="venue_buffs">
    <U>
      <V n="buff_reason" t="enabled">
        <T n="enabled">0x1B643C3F<!--String: "(From Dance Machine Trait)"--></T>
      </V>
      <T n="buff_type">126123<!--Buff: buff_Trait_DanceMachine_ReadyToParty--></T>
    </U>
  </L>
Back to top