So i'm trying to make a dialogue for a follower conversation and I finally figured out how to change ranks. The setup for the NPC that can either be a great follower, just a follower, or an enemy will have three different response menus and whatever the player chooses depends on that NPC's reaction. After that, the dialogue will never show again.
Anyway, for one it was for the ally position. Natalie.SetFactionRank(NatalieFaction, 4), put actor in with cell of any and reference as playerref, and then the faction as NatalieFaction. Long story short, both were compiled and function. PERFECT! Now comes the issue in hand. For the second dialogue, this would only be at a friend level. Natalie.SetFactionRank(NatalieFaction, 1) and the last one is a negative Natalie.SetFactionRank(NatalieFaction, -1) The problem is when I started on the second one, it has this error:
Starting 1 compile threads for 1 files...
Compiling "TIF__03003529"...
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\temp\TIF__03003529.psc(20,15): script property NatalieFriend already defined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\temp\TIF__03003529.psc(20,15): script variable ::NatalieFriend_var already defined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\temp\TIF__03003529.psc(20,15): script property NatalieFriend already has a get function defined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\temp\TIF__03003529.psc(20,15): script property NatalieFriend already has a set function defined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\temp\TIF__03003529.psc(22,15): script property NatalieFriend already defined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\temp\TIF__03003529.psc(22,15): script variable ::NatalieFriend_var already defined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\temp\TIF__03003529.psc(22,15): script property NatalieFriend already has a get function defined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\temp\TIF__03003529.psc(22,15): script property NatalieFriend already has a set function defined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\temp\TIF__03003529.psc(24,15): script property NatalieFriend already defined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\temp\TIF__03003529.psc(24,15): script variable ::NatalieFriend_var already defined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\temp\TIF__03003529.psc(24,15): script property NatalieFriend already has a get function defined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\temp\TIF__03003529.psc(24,15): script property NatalieFriend already has a set function defined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\temp\TIF__03003529.psc(30,13): script property NewProperty already defined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\temp\TIF__03003529.psc(30,13): script variable ::NewProperty_var already defined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\temp\TIF__03003529.psc(30,13): script property NewProperty already has a get function defined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\temp\TIF__03003529.psc(30,13): script property NewProperty already has a set function defined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\temp\TIF__03003529.psc(32,15): script property NewProperty already defined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\temp\TIF__03003529.psc(32,15): script variable ::NewProperty_var already defined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\temp\TIF__03003529.psc(32,15): script property NewProperty already has a get function defined
C:\Program Files (x86)\Steam\steamapps\common\skyrim\Data\Scripts\Source\temp\TIF__03003529.psc(32,15): script property NewProperty already has a set function defined
No output generated for TIF__03003529, compilation failed.
Batch compile of 1 files finished. 0 succeeded, 1 failed.
Failed on TIF__03003529
When I try anything else, this repeats. What am I doing wrong?