Forum Announcement, Click Here to Read More From EA_Cade.

Make servos receive butler orders?

https://pastebin.com/gHq8H5zp
In the code above there's buff_Role_Butler_NPC which makes the interaction available to butlers. But how do i make servos also have this interaction?
Adding

<L>
<V t="trait">
<U n="trait">
<L n="whitelist_traits">
<T>218444<!--trait_Humanoid_Robots_MainTrait--></T>
</L>
</U>
</V>
</L>

after buff_Role_Butler_NPC lines doesn't seem to work.

Comments

  • Options
    TwelfthDoctor1TwelfthDoctor1 Posts: 31 Member
    A quick way is to attach the buff to the Servo Main Trait, doing that will allow the Servos to have the roles. You can look at the example below for clarity.

    <?xml version="1.0" encoding="utf-8"?>
    <I c="Trait" i="trait" m="traits.traits" n="TD1:trait_GhostButler" s="18350066065277374178">
    <L n="ages">
    <E>TEEN</E>
    <E>ADULT</E>
    <E>BABY</E>
    <E>CHILD</E>
    <E>TODDLER</E>
    <E>ELDER</E>
    <E>YOUNGADULT</E>
    </L>
    <L n="buffs">
    <U>
    <T n="buff_type">15832528424537256033<!--TD1:buff_GhostButler--></T>
    </U>
    <U>
    <T n="buff_type">17523661481448643524<!--TD1:buff_Role_GhostButler_NPC--></T>
    </U>
    <U>
    <T n="buff_type">145405<!--buff_Role_Butler_NPC--></T>
    </U>
    </L>
    <T n="buffs_add_on_spawn_only">False</T>
    <T n="display_name">0x82D4A768<!--Ghost Butler--></T>
    <T n="display_name_gender_neutral">0x82D4A768<!--Ghost Butler--></T>
    <T n="icon" p="InGame\UI\Icons\CAS\Traits\trait_magicalOverload_cas.png">2f7d0004:00000000:bb54619ef5687cac</T>
    <E n="min_lod_value">MINIMUM</E>
    <T n="trait_description">0xBCD3754E<!--Ghost Butlers are undead Sims that have devoted their afterlife to serve others. Best for haunted manors!--></T>
    </I>
  • Options
    TwelfthDoctor1TwelfthDoctor1 Posts: 31 Member
    However, I would still recommend that you do a custom Butler Situation Job and Role States, It should make autonomy easier and the Servo can create a butler situation through an interaction.
  • Options
    Agent48mk2Agent48mk2 Posts: 22 Member
    However, I would still recommend that you do a custom Butler Situation Job and Role States, It should make autonomy easier and the Servo can create a butler situation through an interaction.
    Thanks.
Sign In or Register to comment.
Return to top