Bay 12 Games Forum

Please login or register.

Login with username, password and session length
Advanced search  

Author Topic: Giving interaction via syndrome?  (Read 589 times)

veganzombeh

  • Bay Watcher
    • View Profile
Giving interaction via syndrome?
« on: June 02, 2012, 03:58:09 pm »

Hey guys, I'm trying to make it so when a person touches the creatures blood, it gains an interaction, but the interaction is being added. Here's what I've got so far:

In creature_standard:

[USE_MATERIAL_TEMPLATE:BLOOD:BLOOD_TEMPLATE]
      [SYNDROME]
         [SYN_NAME:blood pox]
               [SYN_AFFECTED_CLASS:GENERAL_POISON]
         [SYN_CONTACT]
         [SYN_INHALED]
         [CE_PAIN:SEV:100:PROB:100:START:1:END:50]
         [CE_NAUSEA:SEV:100:PROB:100:START:1:END:50]
         [CE_BLISTERS:SEV:100:PROB:100:LOCALIZED:START:1:END:50]
         [CE_PARALYSIS:SEV:100:PROB:100:LOCALIZED:START:1:END:50]
         [CE_CAN_DO_INTERACTION:DRAGONFORM:START:0]
                 [CDI:ADV_NAME:Assume dragonform]
               [CDI:USAGE_HINT:ATTACK]
                [CDI:TARGET:A:LINE_OF_SIGHT]
               [CDI:TARGET_RANGE:A:1]
                [CDI:MAX_TARGET_NUMBER:A:1]
               [CDI:WAIT_PERIOD:5000]
               [CDI:VERB:allow your inner fire to burst forth!:looses a mighty, flaming roar:NA]

In Interaction_standard

[INTERACTION:DRAGONFORM]
        [I_TARGET:A:CREATURE]
                [IT_LOCATION:CONTEXT_CREATURE]
                [IT_CANNOT_TARGET_IF_ALREADY_AFFECTED]
                [IT_MANUAL_INPUT:creature]
                [I_EFFECT:ADD_SYNDROME]
                        [IE_TARGET:A]
                        [IE_IMMEDIATE]
                        [IE_ARENA_NAME:Dragonform]
                        [SYNDROME]
                                [CE_BODY_TRANSFORMATION:START:0:END:250]
                                [CE:CREATURE:DRAGON:MALE]

Why isn't it working?
Logged

Hugo_The_Dwarf

  • Bay Watcher
  • Modding Mentor
    • View Profile
    • Regeneration: Forced Evolution
Re: Giving interaction via syndrome?
« Reply #1 on: June 02, 2012, 04:28:53 pm »

your interaction is lacking "   [I_SOURCE:CREATURE_ACTION]"
Logged

veganzombeh

  • Bay Watcher
    • View Profile
Re: Giving interaction via syndrome?
« Reply #2 on: June 02, 2012, 05:10:16 pm »

your interaction is lacking "   [I_SOURCE:CREATURE_ACTION]"
Where should that go?
Logged

Hugo_The_Dwarf

  • Bay Watcher
  • Modding Mentor
    • View Profile
    • Regeneration: Forced Evolution
Re: Giving interaction via syndrome?
« Reply #3 on: June 02, 2012, 05:12:35 pm »

[INTERACTION:DRAGONFORM]
 [I_SOURCE:CREATURE_ACTION]<----------------
        [I_TARGET:A:CREATURE]
                [IT_LOCATION:CONTEXT_CREATURE]
                [IT_CANNOT_TARGET_IF_ALREADY_AFFECTED]
                [IT_MANUAL_INPUT:creature]
                [I_EFFECT:ADD_SYNDROME]
                        [IE_TARGET:A]
                        [IE_IMMEDIATE]
                        [IE_ARENA_NAME:Dragonform]
                        [SYNDROME]
                                [CE_BODY_TRANSFORMATION:START:0:END:250]
                                [CE:CREATURE:DRAGON:MALE]

Logged

Putnam

  • Bay Watcher
  • DAT WIZARD
    • View Profile
Re: Giving interaction via syndrome?
« Reply #4 on: June 02, 2012, 10:23:09 pm »

Also note that your interactions will be done to the creature that whatever creature has the interaction is attacking, I.E, they will turn their enemy into a dragon.

Hugo_The_Dwarf

  • Bay Watcher
  • Modding Mentor
    • View Profile
    • Regeneration: Forced Evolution
Re: Giving interaction via syndrome?
« Reply #5 on: June 02, 2012, 10:31:28 pm »

also the syndrom might not work without a SYN_CLASS I could very much be wrong.
Logged

Putnam

  • Bay Watcher
  • DAT WIZARD
    • View Profile
Re: Giving interaction via syndrome?
« Reply #6 on: June 02, 2012, 10:48:21 pm »

You are.