Edit Movies Reactions

Discussion in 'Mods' started by mardrest, Jan 17, 2020.

  1. mardrest

    mardrest Pangalactic Porcupine

    Hello, i need help by editing the MoviesReactions file. I change the text, but in the game it doesn't change.
    How can i change the text? The code i used is this:
    Code:
    {
    "Action": "EditData",
    "Target": "Data/MoviesReactions",
    "Entries": {
    "Sam": {
      "NPCName": "Sam",
      "Reactions": [
       {
        "Tag": "dislike",
        "Response": "like",
        "Whitelist": [],
        "SpecialResponses": {
         "BeforeMovie": {
          "ResponsePoint": null,
          "Script": "",
          "Text": "It's an old movie with lots of talking, right? Hmm...$s"
         },
         "DuringMovie": {
          "ResponsePoint": null,
          "Script": "/message Sam \"Sam is playing his handheld video game system.\"",
          "Text": "Huh? Oh! Yeah... The movie's... interesting...$10"
         },
         "AfterMovie": {
          "ResponsePoint": null,
          "Script": "",
          "Text": "Yeah... Uh... That one character was interesting... And, um... heh...$10"
         }
        },
        "ID": "reaction_4"
        }
       ]
      }
    }
    }
    Thanks
     
      Last edited: Jan 17, 2020
    • Allayna

      Allayna Ketchup Robot

      You were missing a couple characters, try this!
      Code:
      {
      "Action": "EditData",
      "Target": "Data/MoviesReactions",
      "Entries": {
      "Sam": {
        "NPCName": "Sam",
        "Reactions": [
         {
          "Tag": "dislike",
          "Response": "like",
          "Whitelist": [],
          "SpecialResponses": {
           "BeforeMovie": {
            "ResponsePoint": null,
            "Script": "",
            "Text": "It's an old movie with lots of talking, right? Hmm...$s"
           },
           "DuringMovie": {
            "ResponsePoint": null,
            "Script": "/message Sam \"Sam is playing his handheld video game system.\"",
            "Text": "Huh? Oh! Yeah... The movie's... interesting...$10"
           },
           "AfterMovie": {
            "ResponsePoint": null,
            "Script": "",
            "Text": "Yeah... Uh... That one character was interesting... And, um... heh...$10"
           },
           "ID": "reaction_4"
          }
         ]
        }
      }
      }
       
      • mardrest

        mardrest Pangalactic Porcupine

        I pasted the code above wrong, in my code are like you posted.
        Thanks anyway
        I edited the code now as i have it.
        I wan't to change the name for Sam and others, that's why i wan't to edit it.
         
          Last edited: Jan 17, 2020
        • hollsterman

          hollsterman Space Hobo

          I know this is very late, but it's also usefull for anyone who eber wants to do this in the future, and get's redirected here.
          If you want to change it, you need to have all the reactions there by my testing.
          In this example I've changed Abigail's reaction to horror movies. (it's a bit down)


          Code:
          {
                      "Action": "EditData",
                      "Target": "Data/MoviesReactions",
                      "Entries": {
                          "Abigail": {
                              "NPCName": "Abigail",
                              "Reactions": [
                              {
                                  "Tag": "horror",
                                  "Response": "love",
                                  "Whitelist": [],
                                  "SpecialResponses": null,
                                  "ID": "reaction_0"
                              },
                              {
                                  "Tag": "classic",
                                  "Response": "dislike",
                                  "Whitelist": [],
                                  "SpecialResponses": null,
                                  "ID": "reaction_1"
                              },
                              {
                                  "Tag": "summer_movie_0",
                                  "Response": "like",
                                  "Whitelist": [],
                                  "SpecialResponses": {
                                  "BeforeMovie": {
                                      "ResponsePoint": null,
                                      "Script": "",
                                      "Text": "I can't believe they made a Prairie King movie... I hope it's good!"
                                  },
                                  "DuringMovie": {
                                      "ResponsePoint": null,
                                      "Script": "",
                                      "Text": "Listen... it's got that old familiar music.$h"
                                  },
                                  "AfterMovie": {
                                      "ResponsePoint": null,
                                      "Script": "",
                                      "Text": "Well the acting was awful, but I still had a great time.$h"
                                  }
                                  },
                                  "ID": "reaction_2"
                              },
                              {
                                  "Tag": "spring_movie_1",
                                  "Response": "like",
                                  "Whitelist": [],
                                  "SpecialResponses": {
                                  "BeforeMovie": {
                                      "ResponsePoint": null,
                                      "Script": "",
                                      "Text": "I'm excited to 'explore our vibrant world'... aren't you?$h"
                                  },
                                  "DuringMovie": {
                                      "ResponsePoint": null,
                                      "Script": "",
                                      "Text": "I didn't know that!"
                                  },
                                  "AfterMovie": {
                                      "ResponsePoint": null,
                                      "Script": "",
                                      "Text": "That was really interesting. I liked the raccoons the best... they're so cute!$h"
                                  }
                                  },
                                  "ID": "reaction_3"
                              },
                              {
                                  "Tag": "love",
                                  "Response": "like",
                                  "Whitelist": [],
                                  "SpecialResponses": {
                                  "BeforeMovie": {
                                      "ResponsePoint": null,
                                      "Script": "",
                                      "Text": "I love horror movies... are you ready for change?$h"
                                  },
                                  "DuringMovie": {
                                      "ResponsePoint": null,
                                      "Script": "/shake Abigail 3000/pause 500/message \"Abigail is Proud you changed it!\"",
                                      "Text": "Hooray it worked!.$h"
                                  },
                                  "AfterMovie": {
                                      "ResponsePoint": null,
                                      "Script": "",
                                      "Text": "That was pretty campy, but you did a great job.$h"
                                  }
                                  },
                                  "ID": "reaction_4"
                              },
                              {
                                  "Tag": "like",
                                  "Response": "like",
                                  "Whitelist": [],
                                  "SpecialResponses": {
                                  "BeforeMovie": {
                                      "ResponsePoint": null,
                                      "Script": "",
                                      "Text": "Hey! Thanks for inviting me, I love going to the movies.$h"
                                  },
                                  "DuringMovie": null,
                                  "AfterMovie": {
                                      "ResponsePoint": null,
                                      "Script": "",
                                      "Text": "That was interesting... I wonder what I would've done in the same situation?"
                                  }
                                  },
                                  "ID": "reaction_5"
                              },
                              {
                                  "Tag": "dislike",
                                  "Response": "like",
                                  "Whitelist": [],
                                  "SpecialResponses": {
                                  "BeforeMovie": {
                                      "ResponsePoint": null,
                                      "Script": "",
                                      "Text": "From seeing the trailer, this one looks like a real snoozefest...$6"
                                  },
                                  "DuringMovie": {
                                      "ResponsePoint": null,
                                      "Script": "",
                                      "Text": "Wake me up if anything interesting happens.$6"
                                  },
                                  "AfterMovie": {
                                      "ResponsePoint": null,
                                      "Script": "",
                                      "Text": "*yawn*... that was pretty boring, wasn't it?$6"
                                  }
                                  },
                                  "ID": "reaction_6"
                              }
                              ]
                          }
                                         
                      }
                  }
           

          Share This Page