Skip to content

Commit

Permalink
Merge pull request #77358 from Kamejeir/teamster-nomultiquest
Browse files Browse the repository at this point in the history
no more duplicate teamster quests
  • Loading branch information
Maleclypse authored Nov 2, 2024
2 parents dcd00d1 + f708023 commit 46ce09b
Showing 1 changed file with 4 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -180,10 +180,7 @@
"text": "How do I get to that farm?",
"topic": "TALK_FREE_MERCHANT_TEAMSTER_DIRECTIONS_2",
"condition": {
"and": [
{ "math": [ "npc_randomize_dialogue_direction", "==", "1" ] },
{ "not": { "compare_string": [ "isherwood", { "u_val": "teamster_mission_directions" } ] } }
]
"and": [ { "math": [ "npc_randomize_dialogue_direction == 1" ] }, { "not": { "u_has_mission": "directions_isherwood" } } ]
},
"effect": { "assign_mission": "directions_isherwood" },
"switch": true
Expand All @@ -192,10 +189,7 @@
"text": "How do I get to that lab?",
"topic": "TALK_FREE_MERCHANT_TEAMSTER_DIRECTIONS_2",
"condition": {
"and": [
{ "math": [ "npc_randomize_dialogue_direction", "==", "2" ] },
{ "not": { "compare_string": [ "hub01", { "u_val": "teamster_mission_directions" } ] } }
]
"and": [ { "math": [ "npc_randomize_dialogue_direction == 2" ] }, { "not": { "u_has_mission": "directions_hub01" } } ]
},
"effect": { "assign_mission": "directions_hub01" },
"switch": true
Expand All @@ -204,10 +198,7 @@
"text": "How do I get to that castle?",
"topic": "TALK_FREE_MERCHANT_TEAMSTER_DIRECTIONS_2",
"condition": {
"and": [
{ "math": [ "npc_randomize_dialogue_direction", "==", "3" ] },
{ "not": { "compare_string": [ "exodii", { "u_val": "teamster_mission_directions" } ] } }
]
"and": [ { "math": [ "npc_randomize_dialogue_direction == 3" ] }, { "not": { "u_has_mission": "directions_exodii" } } ]
},
"effect": { "assign_mission": "directions_exodii" },
"switch": true
Expand All @@ -216,10 +207,7 @@
"text": "Where was that?",
"topic": "TALK_FREE_MERCHANT_TEAMSTER_DIRECTIONS_2",
"condition": {
"and": [
{ "math": [ "npc_randomize_dialogue_direction", "==", "4" ] },
{ "not": { "compare_string": [ "artisans", { "u_val": "teamster_mission_directions" } ] } }
]
"and": [ { "math": [ "npc_randomize_dialogue_direction == 4" ] }, { "not": { "u_has_mission": "directions_artisans" } } ]
},
"effect": { "assign_mission": "directions_artisans" },
"switch": true
Expand Down

0 comments on commit 46ce09b

Please sign in to comment.