Basic Script to play several emotes V3

Discussion in 'Ink NPC Dialogue Composition' started by Anpu, May 7, 2023.

  1. Anpu

    Anpu Avatar

    Messages:
    7,944
    Likes Received:
    9,015
    Trophy Points:
    153
    Location:
    Hemut
    Basic Inky compliant code that allows you to play several different emotes This WILL work on any Conversationalists (and crafted ones!) THAT ARE ONLY HUMANS (emotes do not work on non-humans*):
    Code:
    // Version 003 Emote Testing Inky Compliant code
    // by Anpu 05-07-2023
    // Line needed to call this function in game
    EXTERNAL playEmote(emoteName)
    ->start
    ==start
    Which Emote would you like me to display?
    + Readbook
    ~ playEmote("Readbook")
    This is the Readbook emote!
    ->start
    + Guard
    ~ playEmote("Guard")
    This is the Guard emote!
    ->start
    + Pontificate
    ~ playEmote("Pontificate")
    This is the Pontificate emote!
    ->start
    + Samba
    ~ playEmote("Samba")
    This is the Samba emote!
    ->start
    + Ponder
    ~ playEmote("Ponder")
    This is the Ponder emote!
    ->start
    + Gaze
    ~ playEmote("Gaze")
    This is the Gaze emote!
    ->start
    + Giggle
    ~ playEmote("Giggle")
    This is the Giggle emote!
    ->start
    * Goodbye!
    ~ playEmote("Bow")
    ->END
    // This code is needed to use the Inky editor
    === function playEmote(X) ===
    ~ return
    
    *I only have access to a Human conversationalist. I do not know if Trolls, Kobold and Undead work with this? Or let us know! :D
     
  2. ConjurerDragon

    ConjurerDragon Avatar

    Messages:
    1,700
    Likes Received:
    1,021
    Trophy Points:
    125
    Gender:
    Male
    Location:
    Rhineland-Palatinate
    How would I get that into the head of my conversationalist? Simply paste and copy do not work while I have the edit dialogue option of the conversationalist open ingame.
     
  3. Anpu

    Anpu Avatar

    Messages:
    7,944
    Likes Received:
    9,015
    Trophy Points:
    153
    Location:
    Hemut
    Sean Silverfoot likes this.
  4. ConjurerDragon

    ConjurerDragon Avatar

    Messages:
    1,700
    Likes Received:
    1,021
    Trophy Points:
    125
    Gender:
    Male
    Location:
    Rhineland-Palatinate