less logging and more formatting
This commit is contained in:
parent
0faae768f5
commit
323ed0974d
4 changed files with 589 additions and 593 deletions
|
@ -84,7 +84,7 @@ local function alertGuards(aggressor, cell)
|
||||||
log(response)
|
log(response)
|
||||||
elseif config.combatDialogue == common.dialogueMode.voice then
|
elseif config.combatDialogue == common.dialogueMode.voice then
|
||||||
local response = common.playGuardVoice(npc.mobile, "join_combat")
|
local response = common.playGuardVoice(npc.mobile, "join_combat")
|
||||||
log("Playing sound file: %s", response)
|
log("Playing sound file %s because join_combat", response)
|
||||||
end
|
end
|
||||||
|
|
||||||
npc.mobile:startCombat(aggressor)
|
npc.mobile:startCombat(aggressor)
|
||||||
|
|
|
@ -65,7 +65,6 @@ this.playGuardVoice = function(mobile, type)
|
||||||
local sex = ref.baseObject.female and "f" or "m"
|
local sex = ref.baseObject.female and "f" or "m"
|
||||||
local race = ref.baseObject.race.id:lower()
|
local race = ref.baseObject.race.id:lower()
|
||||||
local directory, soundPath, sound
|
local directory, soundPath, sound
|
||||||
this.log("before: ref:%s sex:%s race:%s soundPath:%s type:%s", ref.id, sex, race, soundPath, type)
|
|
||||||
|
|
||||||
-- make sure the race/sex/type combo exists in the voice data
|
-- make sure the race/sex/type combo exists in the voice data
|
||||||
if this.dialogues.voice[race] and this.dialogues.voice[race][sex] and this.dialogues.voice[race][sex][type] then
|
if this.dialogues.voice[race] and this.dialogues.voice[race][sex] and this.dialogues.voice[race][sex][type] then
|
||||||
|
@ -74,7 +73,6 @@ this.playGuardVoice = function(mobile, type)
|
||||||
-- sound will be nil if the race/sex/type combo is an empty table
|
-- sound will be nil if the race/sex/type combo is an empty table
|
||||||
if sound then soundPath = directory .. sound.file end
|
if sound then soundPath = directory .. sound.file end
|
||||||
end
|
end
|
||||||
this.log("after: ref:%s sex:%s race:%s soundPath:%s type:%s", ref.id, sex, race, soundPath, type)
|
|
||||||
|
|
||||||
local distanceFromPlayer = math.clamp(mobile.position:distance(tes3.mobilePlayer.position), 0, distanceCap) or 0
|
local distanceFromPlayer = math.clamp(mobile.position:distance(tes3.mobilePlayer.position), 0, distanceCap) or 0
|
||||||
local volume = 1 - (distanceFromPlayer / distanceCap)
|
local volume = 1 - (distanceFromPlayer / distanceCap)
|
||||||
|
|
|
@ -2,14 +2,13 @@
|
||||||
{ file = "filename", subtitle = "what it says" },
|
{ file = "filename", subtitle = "what it says" },
|
||||||
]]
|
]]
|
||||||
|
|
||||||
-- LuaFormatter off
|
|
||||||
local voices = {
|
local voices = {
|
||||||
argonian = {
|
argonian = {
|
||||||
f = {
|
f = {
|
||||||
["sneaking"] = {
|
["sneaking"] = {
|
||||||
{ file = "Hlo_AF000a.mp3", subtitle = "What?" },
|
{ file = "Hlo_AF000a.mp3", subtitle = "What?" },
|
||||||
{ file = "Idl_AF007.mp3", subtitle = "What was that?" },
|
{ file = "Idl_AF007.mp3", subtitle = "What was that?" },
|
||||||
{ file = "Idl_AF001.mp3", subtitle = "Sniff." },
|
{ file = "Idl_AF001.mp3", subtitle = "Sniff." }
|
||||||
},
|
},
|
||||||
["stop_sneaking"] = {
|
["stop_sneaking"] = {
|
||||||
{ file = "Srv_AF003.mp3", subtitle = "You should leave." },
|
{ file = "Srv_AF003.mp3", subtitle = "You should leave." },
|
||||||
|
@ -18,7 +17,7 @@ local voices = {
|
||||||
{ file = "Hlo_AF000c.mp3", subtitle = "Humph." },
|
{ file = "Hlo_AF000c.mp3", subtitle = "Humph." },
|
||||||
{ file = "Hlo_AF000b.mp3", subtitle = "Humph." },
|
{ file = "Hlo_AF000b.mp3", subtitle = "Humph." },
|
||||||
{ file = "Thf_AF003.mp3", subtitle = "Hiss." },
|
{ file = "Thf_AF003.mp3", subtitle = "Hiss." },
|
||||||
{ file = "Hlo_AF000e.mp3", subtitle = "Get out of here!" },
|
{ file = "Hlo_AF000e.mp3", subtitle = "Get out of here!" }
|
||||||
},
|
},
|
||||||
["stop_following"] = {
|
["stop_following"] = {
|
||||||
{ file = "Hlo_AF019.mp3", subtitle = "You hardly seem worth the trouble, criminal." },
|
{ file = "Hlo_AF019.mp3", subtitle = "You hardly seem worth the trouble, criminal." },
|
||||||
|
@ -26,14 +25,14 @@ local voices = {
|
||||||
{ file = "Hlo_AF000c.mp3", subtitle = "Humph." },
|
{ file = "Hlo_AF000c.mp3", subtitle = "Humph." },
|
||||||
{ file = "Hlo_AF000d.mp3", subtitle = "I won't waste my time on the likes of you." },
|
{ file = "Hlo_AF000d.mp3", subtitle = "I won't waste my time on the likes of you." },
|
||||||
{ file = "Hlo_AF000e.mp3", subtitle = "Get out of here!" },
|
{ file = "Hlo_AF000e.mp3", subtitle = "Get out of here!" },
|
||||||
{ file = "Thf_AF003.mp3", subtitle = "Hiss." },
|
{ file = "Thf_AF003.mp3", subtitle = "Hiss." }
|
||||||
},
|
},
|
||||||
["join_combat"] = {
|
["join_combat"] = {
|
||||||
{ file = "Hlo_AF017.mp3", subtitle = "Your life is mine!" },
|
{ file = "Hlo_AF017.mp3", subtitle = "Your life is mine!" },
|
||||||
{ file = "Hlo_AF014.mp3", subtitle = "Kill it!" },
|
{ file = "Hlo_AF014.mp3", subtitle = "Kill it!" },
|
||||||
{ file = "Hlo_AF014.mp3", subtitle = "Rip it apart!" },
|
{ file = "Hlo_AF014.mp3", subtitle = "Rip it apart!" },
|
||||||
{ file = "Hlo_AF012.mp3", subtitle = "Bleed!" },
|
{ file = "Hlo_AF012.mp3", subtitle = "Bleed!" },
|
||||||
{ file = "Atk_AF010.mp3", subtitle = "Hahahaha." },
|
{ file = "Atk_AF010.mp3", subtitle = "Hahahaha." }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
m = {
|
m = {
|
||||||
|
@ -44,18 +43,18 @@ local voices = {
|
||||||
{ file = "Hlo_AM107.mp3", subtitle = "Your crimes are known to us." },
|
{ file = "Hlo_AM107.mp3", subtitle = "Your crimes are known to us." },
|
||||||
{ file = "Hlo_AM056.mp3", subtitle = "Sniff. This scent is new." },
|
{ file = "Hlo_AM056.mp3", subtitle = "Sniff. This scent is new." },
|
||||||
{ file = "Hlo_AM040.mp3", subtitle = "Is there nothing for you to do?" },
|
{ file = "Hlo_AM040.mp3", subtitle = "Is there nothing for you to do?" },
|
||||||
{ file = "Hlo_AM027.mp3", subtitle = "Must you make a pest of yourself?" },
|
{ file = "Hlo_AM027.mp3", subtitle = "Must you make a pest of yourself?" }
|
||||||
},
|
},
|
||||||
["stop_sneaking"] = {
|
["stop_sneaking"] = {
|
||||||
{ file = "Srv_AM012.mp3", subtitle = "Leave! Before I eat it!" },
|
{ file = "Srv_AM012.mp3", subtitle = "Leave! Before I eat it!" },
|
||||||
{ file = "Srv_AM009.mp3", subtitle = "It should go away and die!" },
|
{ file = "Srv_AM009.mp3", subtitle = "It should go away and die!" },
|
||||||
{ file = "Hlo_AM046.mp3", subtitle = "Crime doesn't suit you, friend." },
|
{ file = "Hlo_AM046.mp3", subtitle = "Crime doesn't suit you, friend." },
|
||||||
{ file = "Hlo_AM022.mp3", subtitle = "Be gone!" },
|
{ file = "Hlo_AM022.mp3", subtitle = "Be gone!" }
|
||||||
},
|
},
|
||||||
["stop_following"] = {
|
["stop_following"] = {
|
||||||
{ file = "Hlo_AM019.mp3", subtitle = "You hardly seem worth the trouble, criminal." },
|
{ file = "Hlo_AM019.mp3", subtitle = "You hardly seem worth the trouble, criminal." },
|
||||||
{ file = "Hlo_AM018.mp3", subtitle = "Get away, criminal." },
|
{ file = "Hlo_AM018.mp3", subtitle = "Get away, criminal." },
|
||||||
{ file = "Hlo_AM022.mp3", subtitle = "Be gone!" },
|
{ file = "Hlo_AM022.mp3", subtitle = "Be gone!" }
|
||||||
},
|
},
|
||||||
["join_combat"] = {
|
["join_combat"] = {
|
||||||
{ file = "bAtk_AM002.mp3", subtitle = "Your head will be my new trophy!" },
|
{ file = "bAtk_AM002.mp3", subtitle = "Your head will be my new trophy!" },
|
||||||
|
@ -64,7 +63,7 @@ local voices = {
|
||||||
{ file = "Atk_AM011.mp3", subtitle = "Kill!" },
|
{ file = "Atk_AM011.mp3", subtitle = "Kill!" },
|
||||||
{ file = "Atk_AM012.mp3", subtitle = "It will die!" },
|
{ file = "Atk_AM012.mp3", subtitle = "It will die!" },
|
||||||
{ file = "Atk_AM013.mp3", subtitle = "Suffer!" },
|
{ file = "Atk_AM013.mp3", subtitle = "Suffer!" },
|
||||||
{ file = "Atk_AM014.mp3", subtitle = "Die!" },
|
{ file = "Atk_AM014.mp3", subtitle = "Die!" }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
dir = "a"
|
dir = "a"
|
||||||
|
@ -74,25 +73,25 @@ local voices = {
|
||||||
["sneaking"] = {
|
["sneaking"] = {
|
||||||
{ file = "Srv_BF006.mp3", subtitle = "I don't like you here, outlander." },
|
{ file = "Srv_BF006.mp3", subtitle = "I don't like you here, outlander." },
|
||||||
{ file = "Hlo_BF026.mp3", subtitle = "Well, this should be interesting." },
|
{ file = "Hlo_BF026.mp3", subtitle = "Well, this should be interesting." },
|
||||||
{ file = "Hlo_BF106.mp3", subtitle = "You would be wise to give up crime. It doesn't suit you." },
|
{ file = "Hlo_BF106.mp3", subtitle = "You would be wise to give up crime. It doesn't suit you." }
|
||||||
},
|
},
|
||||||
["stop_sneaking"] = {
|
["stop_sneaking"] = {
|
||||||
{ file = "Srv_BF024.mp3", subtitle = "Do not waste my time." },
|
{ file = "Srv_BF024.mp3", subtitle = "Do not waste my time." },
|
||||||
{ file = "Idl_BF001.mp3", subtitle = "What was that about?" },
|
{ file = "Idl_BF001.mp3", subtitle = "What was that about?" }
|
||||||
},
|
},
|
||||||
["stop_following"] = {
|
["stop_following"] = {
|
||||||
{ file = "Srv_BF024.mp3", subtitle = "Do not waste my time." },
|
{ file = "Srv_BF024.mp3", subtitle = "Do not waste my time." },
|
||||||
{ file = "Srv_BF003.mp3", subtitle = "You are repulsive, please go away." },
|
{ file = "Srv_BF003.mp3", subtitle = "You are repulsive, please go away." },
|
||||||
{ file = "Hlo_BF025.mp3", subtitle = "No, I don't have time for you." },
|
{ file = "Hlo_BF025.mp3", subtitle = "No, I don't have time for you." },
|
||||||
{ file = "Hlo_BF001.mp3", subtitle = "I think you should go elsewhere." },
|
{ file = "Hlo_BF001.mp3", subtitle = "I think you should go elsewhere." },
|
||||||
{ file = "Hlo_BF056.mp3", subtitle = "I am busy, so, if you will excuse me." },
|
{ file = "Hlo_BF056.mp3", subtitle = "I am busy, so, if you will excuse me." }
|
||||||
},
|
},
|
||||||
["join_combat"] = {
|
["join_combat"] = {
|
||||||
{ file = "Atk_BF013.mp3", subtitle = "I should have killed you sooner!" },
|
{ file = "Atk_BF013.mp3", subtitle = "I should have killed you sooner!" },
|
||||||
{ file = "Atk_BF009.mp3", subtitle = "Soon you'll be reduced to dust!" },
|
{ file = "Atk_BF009.mp3", subtitle = "Soon you'll be reduced to dust!" },
|
||||||
{ file = "Atk_BF006.mp3", subtitle = "Death awaits you!" },
|
{ file = "Atk_BF006.mp3", subtitle = "Death awaits you!" },
|
||||||
{ file = "Atk_BF004.mp3", subtitle = "You'll be dead soon!" },
|
{ file = "Atk_BF004.mp3", subtitle = "You'll be dead soon!" },
|
||||||
{ file = "Atk_BF008.mp3", subtitle = "You should have run while you had a chance!" },
|
{ file = "Atk_BF008.mp3", subtitle = "You should have run while you had a chance!" }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
m = {
|
m = {
|
||||||
|
@ -100,28 +99,28 @@ local voices = {
|
||||||
{ file = "Flw_BM001.mp3", subtitle = "Where are you going?" },
|
{ file = "Flw_BM001.mp3", subtitle = "Where are you going?" },
|
||||||
{ file = "Hlo_BM105.mp3", subtitle = "You'd be wise to stay out of trouble, friend." },
|
{ file = "Hlo_BM105.mp3", subtitle = "You'd be wise to stay out of trouble, friend." },
|
||||||
{ file = "Hlo_BM106.mp3", subtitle = "You would be wise to give up crime. It doesn't suit you." },
|
{ file = "Hlo_BM106.mp3", subtitle = "You would be wise to give up crime. It doesn't suit you." },
|
||||||
{ file = "Srv_BM006.mp3", subtitle = "I'm watching you." },
|
{ file = "Srv_BM006.mp3", subtitle = "I'm watching you." }
|
||||||
},
|
},
|
||||||
["stop_sneaking"] = {
|
["stop_sneaking"] = {
|
||||||
{ file = "Hlo_BM025.mp3", subtitle = "I don't have time for you." },
|
{ file = "Hlo_BM025.mp3", subtitle = "I don't have time for you." },
|
||||||
{ file = "Srv_BM012.mp3", subtitle = "Do not waste my time." },
|
{ file = "Srv_BM012.mp3", subtitle = "Do not waste my time." },
|
||||||
{ file = "Hlo_BM017.mp3", subtitle = "What a revolting display." },
|
{ file = "Hlo_BM017.mp3", subtitle = "What a revolting display." },
|
||||||
{ file = "Hlo_BM000b.mp3", subtitle = "Humph." },
|
{ file = "Hlo_BM000b.mp3", subtitle = "Humph." },
|
||||||
{ file = "Hlo_BM000c.mp3", subtitle = "Humph." },
|
{ file = "Hlo_BM000c.mp3", subtitle = "Humph." }
|
||||||
},
|
},
|
||||||
["stop_following"] = {
|
["stop_following"] = {
|
||||||
{ file = "Hlo_BM029.mp3", subtitle = "This is becoming most unpleasant." },
|
{ file = "Hlo_BM029.mp3", subtitle = "This is becoming most unpleasant." },
|
||||||
{ file = "Hlo_BM028.mp3", subtitle = "You are beginning to annoy me." },
|
{ file = "Hlo_BM028.mp3", subtitle = "You are beginning to annoy me." },
|
||||||
{ file = "Hlo_BM025.mp3", subtitle = "I don't have time for you." },
|
{ file = "Hlo_BM025.mp3", subtitle = "I don't have time for you." },
|
||||||
{ file = "Srv_BM012.mp3", subtitle = "Do not waste my time." },
|
{ file = "Srv_BM012.mp3", subtitle = "Do not waste my time." },
|
||||||
{ file = "Srv_BM003.mp3", subtitle = "You are repulsive. Please, go away." },
|
{ file = "Srv_BM003.mp3", subtitle = "You are repulsive. Please, go away." }
|
||||||
},
|
},
|
||||||
["join_combat"] = {
|
["join_combat"] = {
|
||||||
{ file = "CrAtk_BM005.mp3", subtitle = "Die!" },
|
{ file = "CrAtk_BM005.mp3", subtitle = "Die!" },
|
||||||
{ file = "Atk_BM013.mp3", subtitle = "I should have killed you sooner!" },
|
{ file = "Atk_BM013.mp3", subtitle = "I should have killed you sooner!" },
|
||||||
{ file = "Atk_BM009.mp3", subtitle = "Soon you'll be reduced to dust!" },
|
{ file = "Atk_BM009.mp3", subtitle = "Soon you'll be reduced to dust!" },
|
||||||
{ file = "Atk_BM006.mp3", subtitle = "Death awaits you!" },
|
{ file = "Atk_BM006.mp3", subtitle = "Death awaits you!" },
|
||||||
{ file = "Atk_BM004.mp3", subtitle = "You'll be dead soon!" },
|
{ file = "Atk_BM004.mp3", subtitle = "You'll be dead soon!" }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
dir = "b"
|
dir = "b"
|
||||||
|
@ -145,7 +144,7 @@ local voices = {
|
||||||
{ file = "Hlo_DF094.mp3", subtitle = "I've got better things to do, so, if you don't mind, let's move this along." },
|
{ file = "Hlo_DF094.mp3", subtitle = "I've got better things to do, so, if you don't mind, let's move this along." },
|
||||||
{ file = "Hlo_DF046.mp3", subtitle = "If you'll excuse me, I don't have time for you right now. Or ever." },
|
{ file = "Hlo_DF046.mp3", subtitle = "If you'll excuse me, I don't have time for you right now. Or ever." },
|
||||||
{ file = "Hlo_DF045.mp3", subtitle = "I'm late for an appointment. Hopefully somewhere away from you." },
|
{ file = "Hlo_DF045.mp3", subtitle = "I'm late for an appointment. Hopefully somewhere away from you." },
|
||||||
{ file = "Hlo_DF037.mp3", subtitle = "Annoying outlanders." },
|
{ file = "Hlo_DF037.mp3", subtitle = "Annoying outlanders." }
|
||||||
},
|
},
|
||||||
["join_combat"] = {
|
["join_combat"] = {
|
||||||
{ file = "Atk_DF002.mp3", subtitle = "Your life's end is approaching." },
|
{ file = "Atk_DF002.mp3", subtitle = "Your life's end is approaching." },
|
||||||
|
@ -158,27 +157,27 @@ local voices = {
|
||||||
{ file = "Atk_DF013.mp3", subtitle = "Surrender your life to me and I will end your pain!" },
|
{ file = "Atk_DF013.mp3", subtitle = "Surrender your life to me and I will end your pain!" },
|
||||||
{ file = "bAtk_DF002.mp3", subtitle = "Your head will be my new trophy!" },
|
{ file = "bAtk_DF002.mp3", subtitle = "Your head will be my new trophy!" },
|
||||||
{ file = "bAtk_DF004.mp3", subtitle = "I've fought guars more ferocious than you!" },
|
{ file = "bAtk_DF004.mp3", subtitle = "I've fought guars more ferocious than you!" },
|
||||||
{ file = "bAtk_DF005.mp3", subtitle = "Your cursed bloodline ends here!" },
|
{ file = "bAtk_DF005.mp3", subtitle = "Your cursed bloodline ends here!" }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
m = {
|
m = {
|
||||||
["sneaking"] = {
|
["sneaking"] = {
|
||||||
{ file = "Flw_DM001.mp3", subtitle = "Where are you going?" },
|
{ file = "Flw_DM001.mp3", subtitle = "Where are you going?" },
|
||||||
{ file = "Idl_DM007.mp3", subtitle = "What was that?" },
|
{ file = "Idl_DM007.mp3", subtitle = "What was that?" },
|
||||||
{ file = "Hlo_DM165.mp3", subtitle = "There are better ways than theft to earn a coin, outlander." },
|
{ file = "Hlo_DM165.mp3", subtitle = "There are better ways than theft to earn a coin, outlander." }
|
||||||
},
|
},
|
||||||
["stop_sneaking"] = {
|
["stop_sneaking"] = {
|
||||||
{ file = "Hlo_DM021.mp3", subtitle = "Bothersome creature." },
|
{ file = "Hlo_DM021.mp3", subtitle = "Bothersome creature." },
|
||||||
{ file = "Hlo_DM001.mp3", subtitle = "Go away." },
|
{ file = "Hlo_DM001.mp3", subtitle = "Go away." },
|
||||||
{ file = "Hlo_DM000b.mp3", subtitle = "Humph." },
|
{ file = "Hlo_DM000b.mp3", subtitle = "Humph." },
|
||||||
{ file = "Hlo_DM000c.mp3", subtitle = "Hmmph." },
|
{ file = "Hlo_DM000c.mp3", subtitle = "Hmmph." }
|
||||||
},
|
},
|
||||||
["stop_following"] = {
|
["stop_following"] = {
|
||||||
{ file = "Hlo_DM111.mp3", subtitle = "Move along, outlander." },
|
{ file = "Hlo_DM111.mp3", subtitle = "Move along, outlander." },
|
||||||
{ file = "Hlo_DM035.mp3", subtitle = "Keep moving, scum." },
|
{ file = "Hlo_DM035.mp3", subtitle = "Keep moving, scum." },
|
||||||
{ file = "Hlo_DM021.mp3", subtitle = "Bothersome creature." },
|
{ file = "Hlo_DM021.mp3", subtitle = "Bothersome creature." },
|
||||||
{ file = "Hlo_DM000b.mp3", subtitle ="Humph." },
|
{ file = "Hlo_DM000b.mp3", subtitle = "Humph." },
|
||||||
{ file = "Hlo_DM000c.mp3", subtitle = "Hmmph." },
|
{ file = "Hlo_DM000c.mp3", subtitle = "Hmmph." }
|
||||||
},
|
},
|
||||||
["join_combat"] = {
|
["join_combat"] = {
|
||||||
{ file = "CrAtk_AM005.mp3", subtitle = "Die!" },
|
{ file = "CrAtk_AM005.mp3", subtitle = "Die!" },
|
||||||
|
@ -195,13 +194,13 @@ local voices = {
|
||||||
["sneaking"] = {
|
["sneaking"] = {
|
||||||
{ file = "Srv_HF012.mp3", subtitle = "If you don't leave now you will wish you had." },
|
{ file = "Srv_HF012.mp3", subtitle = "If you don't leave now you will wish you had." },
|
||||||
{ file = "Hlo_HF106.mp3", subtitle = "I won't tolerate any thievery if that's what you're thinking." },
|
{ file = "Hlo_HF106.mp3", subtitle = "I won't tolerate any thievery if that's what you're thinking." },
|
||||||
{ file = "Hlo_HF047.mp3", subtitle = "Keep your hands where I can see them, thief." },
|
{ file = "Hlo_HF047.mp3", subtitle = "Keep your hands where I can see them, thief." }
|
||||||
},
|
},
|
||||||
["stop_sneaking"] = {
|
["stop_sneaking"] = {
|
||||||
{ file = "Srv_HF003.mp3", subtitle = "Don't waste my time." },
|
{ file = "Srv_HF003.mp3", subtitle = "Don't waste my time." },
|
||||||
{ file = "Hlo_HF000b.mp3", subtitle = "Hmph!" },
|
{ file = "Hlo_HF000b.mp3", subtitle = "Hmph!" },
|
||||||
{ file = "Hlo_HF000c.mp3", subtitle = "Hmph!" },
|
{ file = "Hlo_HF000c.mp3", subtitle = "Hmph!" },
|
||||||
{ file = "Hlo_HF000e.mp3", subtitle = "Get out of here." },
|
{ file = "Hlo_HF000e.mp3", subtitle = "Get out of here." }
|
||||||
},
|
},
|
||||||
["stop_following"] = {
|
["stop_following"] = {
|
||||||
{ file = "Hlo_HF059.mp3", subtitle = "My patience is limited." },
|
{ file = "Hlo_HF059.mp3", subtitle = "My patience is limited." },
|
||||||
|
@ -209,13 +208,13 @@ local voices = {
|
||||||
{ file = "Hlo_HF000d.mp3", subtitle = "Clearly, you are an idiot." },
|
{ file = "Hlo_HF000d.mp3", subtitle = "Clearly, you are an idiot." },
|
||||||
{ file = "Hlo_HF001.mp3", subtitle = "I haven't any time for you now." },
|
{ file = "Hlo_HF001.mp3", subtitle = "I haven't any time for you now." },
|
||||||
{ file = "Hlo_HF000e.mp3", subtitle = "Get out of here." },
|
{ file = "Hlo_HF000e.mp3", subtitle = "Get out of here." },
|
||||||
{ file = "Idl_HF002.mp3", subtitle = "If that creature visits again, I think I'll have choice words to say." },
|
{ file = "Idl_HF002.mp3", subtitle = "If that creature visits again, I think I'll have choice words to say." }
|
||||||
},
|
},
|
||||||
["join_combat"] = {
|
["join_combat"] = {
|
||||||
{ file = "CrAtk_HF005.mp3", subtitle = "Die!" },
|
{ file = "CrAtk_HF005.mp3", subtitle = "Die!" },
|
||||||
{ file = "Atk_HF013.mp3", subtitle = "You'll soon be nothing more than a bad memory!" },
|
{ file = "Atk_HF013.mp3", subtitle = "You'll soon be nothing more than a bad memory!" },
|
||||||
{ file = "Atk_HF014.mp3", subtitle = "I shall enjoy watching you take your last breath." },
|
{ file = "Atk_HF014.mp3", subtitle = "I shall enjoy watching you take your last breath." },
|
||||||
{ file = "Atk_HF012.mp3", subtitle = "Embrace your demise!" },
|
{ file = "Atk_HF012.mp3", subtitle = "Embrace your demise!" }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
m = {
|
m = {
|
||||||
|
@ -223,26 +222,26 @@ local voices = {
|
||||||
{ file = "Hlo_HM106.mp3", subtitle = "I won't tolerate any thievery if that's what you're thinking." },
|
{ file = "Hlo_HM106.mp3", subtitle = "I won't tolerate any thievery if that's what you're thinking." },
|
||||||
{ file = "Hlo_HM047.mp3", subtitle = "Keep your hands where I can see them, thief." },
|
{ file = "Hlo_HM047.mp3", subtitle = "Keep your hands where I can see them, thief." },
|
||||||
{ file = "Srv_HM012.mp3", subtitle = "If I see you shoplift, you will pay with your life!" },
|
{ file = "Srv_HM012.mp3", subtitle = "If I see you shoplift, you will pay with your life!" },
|
||||||
{ file = "Hlo_HM089.mp3", subtitle = "Do you want something?" },
|
{ file = "Hlo_HM089.mp3", subtitle = "Do you want something?" }
|
||||||
},
|
},
|
||||||
["stop_sneaking"] = {
|
["stop_sneaking"] = {
|
||||||
{ file = "Hlo_HM028.mp3", subtitle = "You creatures are all the same." },
|
{ file = "Hlo_HM028.mp3", subtitle = "You creatures are all the same." },
|
||||||
{ file = "Srv_HM003.mp3", subtitle = "Don't waste my time." },
|
{ file = "Srv_HM003.mp3", subtitle = "Don't waste my time." },
|
||||||
{ file = "Srv_HM006.mp3", subtitle = "You try my patience." },
|
{ file = "Srv_HM006.mp3", subtitle = "You try my patience." },
|
||||||
{ file = "Hlo_HM000c.mp3", subtitle = "Humph!" },
|
{ file = "Hlo_HM000c.mp3", subtitle = "Humph!" }
|
||||||
},
|
},
|
||||||
["stop_following"] = {
|
["stop_following"] = {
|
||||||
{ file = "Hlo_HM059.mp3", subtitle = "My patience is limited." },
|
{ file = "Hlo_HM059.mp3", subtitle = "My patience is limited." },
|
||||||
{ file = "Srv_HM006.mp3", subtitle = "You try my patience." },
|
{ file = "Srv_HM006.mp3", subtitle = "You try my patience." },
|
||||||
{ file = "Hlo_HM001.mp3", subtitle = "I haven't any time for you now." },
|
{ file = "Hlo_HM001.mp3", subtitle = "I haven't any time for you now." },
|
||||||
{ file = "Hlo_HM000d.mp3", subtitle = "I won't waste my time on the likes of you!" },
|
{ file = "Hlo_HM000d.mp3", subtitle = "I won't waste my time on the likes of you!" },
|
||||||
{ file = "Hlo_HM000c.mp3", subtitle = "Humph!" },
|
{ file = "Hlo_HM000c.mp3", subtitle = "Humph!" }
|
||||||
},
|
},
|
||||||
["join_combat"] = {
|
["join_combat"] = {
|
||||||
{ file = "Atk_HM014.mp3", subtitle = "I shall enjoy watching you take your last breath." },
|
{ file = "Atk_HM014.mp3", subtitle = "I shall enjoy watching you take your last breath." },
|
||||||
{ file = "Atk_HM013.mp3", subtitle = "You'll soon be nothing more than a bad memory!" },
|
{ file = "Atk_HM013.mp3", subtitle = "You'll soon be nothing more than a bad memory!" },
|
||||||
{ file = "Atk_HM012.mp3", subtitle = "Embrace your demise!" },
|
{ file = "Atk_HM012.mp3", subtitle = "Embrace your demise!" },
|
||||||
{ file = "Atk_HM007.mp3", subtitle = "You will die in disgrace." },
|
{ file = "Atk_HM007.mp3", subtitle = "You will die in disgrace." }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
dir = "h"
|
dir = "h"
|
||||||
|
@ -255,13 +254,13 @@ local voices = {
|
||||||
{ file = "Hlo_IF057.mp3", subtitle = "Stay out of trouble, and you won't get hurt." },
|
{ file = "Hlo_IF057.mp3", subtitle = "Stay out of trouble, and you won't get hurt." },
|
||||||
{ file = "Hlo_IF071.mp3", subtitle = "Watch your step." },
|
{ file = "Hlo_IF071.mp3", subtitle = "Watch your step." },
|
||||||
{ file = "Hlo_IF070.mp3", subtitle = "Don't try anything funny." },
|
{ file = "Hlo_IF070.mp3", subtitle = "Don't try anything funny." },
|
||||||
{ file = "Hlo_IF007.mp3", subtitle = "Are you here to start trouble, or are you just stupid?"},
|
{ file = "Hlo_IF007.mp3", subtitle = "Are you here to start trouble, or are you just stupid?" },
|
||||||
{ file = "tHlo_IF003.mp3", subtitle = "Crime doesn't pay." }
|
{ file = "tHlo_IF003.mp3", subtitle = "Crime doesn't pay." }
|
||||||
},
|
},
|
||||||
["stop_sneaking"] = {
|
["stop_sneaking"] = {
|
||||||
{ file = "Hlo_IF011.mp3", subtitle = "So tiresome." },
|
{ file = "Hlo_IF011.mp3", subtitle = "So tiresome." },
|
||||||
{ file = "Idl_IF002.mp3", subtitle = "I don't know if I like this." },
|
{ file = "Idl_IF002.mp3", subtitle = "I don't know if I like this." },
|
||||||
{ file = "Hlo_IF006.mp3", subtitle = "What a pathetic excuse for a criminal." },
|
{ file = "Hlo_IF006.mp3", subtitle = "What a pathetic excuse for a criminal." }
|
||||||
},
|
},
|
||||||
["stop_following"] = {
|
["stop_following"] = {
|
||||||
{ file = "Srv_IF021.mp3", subtitle = "I think we're done here. Please leave." },
|
{ file = "Srv_IF021.mp3", subtitle = "I think we're done here. Please leave." },
|
||||||
|
@ -269,21 +268,21 @@ local voices = {
|
||||||
{ file = "Hlo_IF006.mp3", subtitle = "What a pathetic excuse for a criminal." },
|
{ file = "Hlo_IF006.mp3", subtitle = "What a pathetic excuse for a criminal." },
|
||||||
{ file = "Hlo_IF000d.mp3", subtitle = "I wouldn't waste my time on the likes of you!" },
|
{ file = "Hlo_IF000d.mp3", subtitle = "I wouldn't waste my time on the likes of you!" },
|
||||||
{ file = "bIdl_IF003.mp3", subtitle = "My mother warned me about mooks like you." },
|
{ file = "bIdl_IF003.mp3", subtitle = "My mother warned me about mooks like you." },
|
||||||
{ file = "bIdl_IF013.mp3", subtitle = "[Wide yawn.]"}
|
{ file = "bIdl_IF013.mp3", subtitle = "[Wide yawn.]" }
|
||||||
},
|
},
|
||||||
["join_combat"] = {
|
["join_combat"] = {
|
||||||
{ file = "Atk_IF010.mp3", subtitle = "Die, scoundrel!" },
|
{ file = "Atk_IF010.mp3", subtitle = "Die, scoundrel!" },
|
||||||
{ file = "Atk_IF014.mp3", subtitle = "This is pointless, give in!" },
|
{ file = "Atk_IF014.mp3", subtitle = "This is pointless, give in!" },
|
||||||
{ file = "Atk_IF005.mp3", subtitle = "You won't escape me that easily!" },
|
{ file = "Atk_IF005.mp3", subtitle = "You won't escape me that easily!" },
|
||||||
{ file = "bAtk_IF005.mp3", subtitle = "Your head will be my new trophy!" },
|
{ file = "bAtk_IF005.mp3", subtitle = "Your head will be my new trophy!" },
|
||||||
{ file = "bAtk_IF008.mp3", subtitle = "Your cursed bloodline ends here!" },
|
{ file = "bAtk_IF008.mp3", subtitle = "Your cursed bloodline ends here!" }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
m = {
|
m = {
|
||||||
["sneaking"] = {
|
["sneaking"] = {
|
||||||
{ file = "Hlo_IM007.mp3", subtitle = "Are you here to start trouble, or are you just stupid?" },
|
{ file = "Hlo_IM007.mp3", subtitle = "Are you here to start trouble, or are you just stupid?" },
|
||||||
{ file = "Flw_IM001.mp3", subtitle = "Where are you going?" },
|
{ file = "Flw_IM001.mp3", subtitle = "Where are you going?" },
|
||||||
{ file = "Hlo_IM057.mp3", subtitle = "Stay out of trouble and you won't get hurt." },
|
{ file = "Hlo_IM057.mp3", subtitle = "Stay out of trouble and you won't get hurt." }
|
||||||
},
|
},
|
||||||
["stop_sneaking"] = {
|
["stop_sneaking"] = {
|
||||||
{ file = "bIdl_IM028.mp3", subtitle = "Just as well..." },
|
{ file = "bIdl_IM028.mp3", subtitle = "Just as well..." },
|
||||||
|
@ -313,27 +312,27 @@ local voices = {
|
||||||
{ file = "Hlo_KF106.mp3", subtitle = "You are too easily caught." },
|
{ file = "Hlo_KF106.mp3", subtitle = "You are too easily caught." },
|
||||||
{ file = "Hlo_KF041.mp3", subtitle = "Why is it here?" },
|
{ file = "Hlo_KF041.mp3", subtitle = "Why is it here?" },
|
||||||
{ file = "Hlo_KF019.mp3", subtitle = "You are trouble. Khajiit know this." },
|
{ file = "Hlo_KF019.mp3", subtitle = "You are trouble. Khajiit know this." },
|
||||||
{ file = "Hlo_KF017.mp3", subtitle = "Does it want to feel Khajiiti claws?" },
|
{ file = "Hlo_KF017.mp3", subtitle = "Does it want to feel Khajiiti claws?" }
|
||||||
},
|
},
|
||||||
["stop_sneaking"] = {
|
["stop_sneaking"] = {
|
||||||
{ file = "Hlo_KF016.mp3", subtitle = "Disgusting thing. Leave now." },
|
{ file = "Hlo_KF016.mp3", subtitle = "Disgusting thing. Leave now." },
|
||||||
{ file = "Hlo_KF053.mp3", subtitle = "You do not please us." },
|
{ file = "Hlo_KF053.mp3", subtitle = "You do not please us." },
|
||||||
{ file = "Hlo_KF021.mp3", subtitle = "It will leave. Now." },
|
{ file = "Hlo_KF021.mp3", subtitle = "It will leave. Now." },
|
||||||
{ file = "Hlo_KF000b.mp3", subtitle = "Hmmph!" },
|
{ file = "Hlo_KF000b.mp3", subtitle = "Hmmph!" },
|
||||||
{ file = "Hlo_KF000c.mp3", subtitle = "Grrfph!" },
|
{ file = "Hlo_KF000c.mp3", subtitle = "Grrfph!" }
|
||||||
},
|
},
|
||||||
["stop_following"] = {
|
["stop_following"] = {
|
||||||
{ file = "Srv_KF009.mp3", subtitle = "Annoying creature! It should go away." },
|
{ file = "Srv_KF009.mp3", subtitle = "Annoying creature! It should go away." },
|
||||||
{ file = "Hlo_KF016.mp3", subtitle = "Disgusting thing. Leave now." },
|
{ file = "Hlo_KF016.mp3", subtitle = "Disgusting thing. Leave now." },
|
||||||
{ file = "Hlo_KF000d.mp3", subtitle = "I won't waste my time on the likes of you." },
|
{ file = "Hlo_KF000d.mp3", subtitle = "I won't waste my time on the likes of you." },
|
||||||
{ file = "Hlo_KF026.mp3", subtitle = "So little manners, so little time." },
|
{ file = "Hlo_KF026.mp3", subtitle = "So little manners, so little time." }
|
||||||
},
|
},
|
||||||
["join_combat"] = {
|
["join_combat"] = {
|
||||||
{ file = "Atk_KF014.mp3", subtitle = "This one is no more." },
|
{ file = "Atk_KF014.mp3", subtitle = "This one is no more." },
|
||||||
{ file = "Atk_KF015.mp3", subtitle = "This one is no more." },
|
{ file = "Atk_KF015.mp3", subtitle = "This one is no more." },
|
||||||
{ file = "CrAtk_KF005.mp3", subtitle = "Die!" },
|
{ file = "CrAtk_KF005.mp3", subtitle = "Die!" },
|
||||||
{ file = "Atk_KF010.mp3", subtitle = "So small and tasty. I will enjoy eating you." },
|
{ file = "Atk_KF010.mp3", subtitle = "So small and tasty. I will enjoy eating you." },
|
||||||
{ file = "Fle_KF004.mp3", subtitle = "You had your chance!" },
|
{ file = "Fle_KF004.mp3", subtitle = "You had your chance!" }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
m = {
|
m = {
|
||||||
|
@ -341,25 +340,25 @@ local voices = {
|
||||||
{ file = "Hlo_KM041.mp3", subtitle = "Why is it here?" },
|
{ file = "Hlo_KM041.mp3", subtitle = "Why is it here?" },
|
||||||
{ file = "Hlo_KM106.mp3", subtitle = "You are too easily caught." },
|
{ file = "Hlo_KM106.mp3", subtitle = "You are too easily caught." },
|
||||||
{ file = "Hlo_KM019.mp3", subtitle = "You are trouble. Khajiit know this." },
|
{ file = "Hlo_KM019.mp3", subtitle = "You are trouble. Khajiit know this." },
|
||||||
{ file = "Hlo_KM017.mp3", subtitle = "Does it want to feel Khajiiti claws?" },
|
{ file = "Hlo_KM017.mp3", subtitle = "Does it want to feel Khajiiti claws?" }
|
||||||
},
|
},
|
||||||
["stop_sneaking"] = {
|
["stop_sneaking"] = {
|
||||||
{ file = "Srv_KM006.mp3", subtitle = "This one should leave." },
|
{ file = "Srv_KM006.mp3", subtitle = "This one should leave." },
|
||||||
{ file = "Hlo_KM053.mp3", subtitle = "You do not please us." },
|
{ file = "Hlo_KM053.mp3", subtitle = "You do not please us." },
|
||||||
{ file = "Hlo_KM021.mp3", subtitle = "It will leave. Now." },
|
{ file = "Hlo_KM021.mp3", subtitle = "It will leave. Now." },
|
||||||
{ file = "Hlo_KM016.mp3", subtitle = "Disgusting thing. Leave now." },
|
{ file = "Hlo_KM016.mp3", subtitle = "Disgusting thing. Leave now." }
|
||||||
},
|
},
|
||||||
["stop_following"] = {
|
["stop_following"] = {
|
||||||
{ file = "Hlo_KM022.mp3", subtitle = "Go away! Do not come back!" },
|
{ file = "Hlo_KM022.mp3", subtitle = "Go away! Do not come back!" },
|
||||||
{ file = "Hlo_KM053.mp3", subtitle = "You do not please us." },
|
{ file = "Hlo_KM053.mp3", subtitle = "You do not please us." },
|
||||||
{ file = "Hlo_KM016.mp3", subtitle = "Disgusting thing. Leave now." },
|
{ file = "Hlo_KM016.mp3", subtitle = "Disgusting thing. Leave now." },
|
||||||
{ file = "Hlo_KM026.mp3", subtitle = "So little manners, so little time." },
|
{ file = "Hlo_KM026.mp3", subtitle = "So little manners, so little time." }
|
||||||
},
|
},
|
||||||
["join_combat"] = {
|
["join_combat"] = {
|
||||||
{ file = "Atk_KM014.mp3", subtitle = "This one is no more." },
|
{ file = "Atk_KM014.mp3", subtitle = "This one is no more." },
|
||||||
{ file = "Atk_KM015.mp3", subtitle = "This one is no more!" },
|
{ file = "Atk_KM015.mp3", subtitle = "This one is no more!" },
|
||||||
{ file = "Atk_KM010.mp3", subtitle = "So small and tasty. I will enjoy eating you." },
|
{ file = "Atk_KM010.mp3", subtitle = "So small and tasty. I will enjoy eating you." },
|
||||||
{ file = "bAtk_KM004.mp3", subtitle = "I’ve fought guars more ferocious than you!" },
|
{ file = "bAtk_KM004.mp3", subtitle = "I’ve fought guars more ferocious than you!" }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
dir = "k"
|
dir = "k"
|
||||||
|
@ -370,13 +369,13 @@ local voices = {
|
||||||
{ file = "Hlo_NF106.mp3", subtitle = "Hmm. You're not here to start trouble, are you?" },
|
{ file = "Hlo_NF106.mp3", subtitle = "Hmm. You're not here to start trouble, are you?" },
|
||||||
{ file = "Hlo_NF087.mp3", subtitle = "What's this all about?" },
|
{ file = "Hlo_NF087.mp3", subtitle = "What's this all about?" },
|
||||||
{ file = "Hlo_NF059.mp3", subtitle = "You like to walk a fine line, don't you?" },
|
{ file = "Hlo_NF059.mp3", subtitle = "You like to walk a fine line, don't you?" },
|
||||||
{ file = "Hlo_NF047.mp3", subtitle = "I've got no patience for petty criminals. Move on." },
|
{ file = "Hlo_NF047.mp3", subtitle = "I've got no patience for petty criminals. Move on." }
|
||||||
},
|
},
|
||||||
["stop_sneaking"] = {
|
["stop_sneaking"] = {
|
||||||
{ file = "Srv_NF009.mp3", subtitle = "You must be joking! Go away!" },
|
{ file = "Srv_NF009.mp3", subtitle = "You must be joking! Go away!" },
|
||||||
{ file = "Hlo_NF077.mp3", subtitle = "On your way." },
|
{ file = "Hlo_NF077.mp3", subtitle = "On your way." },
|
||||||
{ file = "Hlo_NF030.mp3", subtitle = "I think you should keep walking." },
|
{ file = "Hlo_NF030.mp3", subtitle = "I think you should keep walking." },
|
||||||
{ file = "Hlo_NF022.mp3", subtitle = "Get out of here before you get hurt." },
|
{ file = "Hlo_NF022.mp3", subtitle = "Get out of here before you get hurt." }
|
||||||
},
|
},
|
||||||
["stop_following"] = {
|
["stop_following"] = {
|
||||||
{ file = "Hlo_NF055.mp3", subtitle = "By the gods! You tourists are a nuisance!" },
|
{ file = "Hlo_NF055.mp3", subtitle = "By the gods! You tourists are a nuisance!" },
|
||||||
|
@ -389,7 +388,7 @@ local voices = {
|
||||||
{ file = "Atk_NF015.mp3", subtitle = "Face death!" },
|
{ file = "Atk_NF015.mp3", subtitle = "Face death!" },
|
||||||
{ file = "Atk_NF007.mp3", subtitle = "I will bathe in your blood." },
|
{ file = "Atk_NF007.mp3", subtitle = "I will bathe in your blood." },
|
||||||
{ file = "Atk_NF004.mp3", subtitle = "Fool!" },
|
{ file = "Atk_NF004.mp3", subtitle = "Fool!" },
|
||||||
{ file = "bAtk_NF002.mp3", subtitle = "Your cursed bloodline ends here!" },
|
{ file = "bAtk_NF002.mp3", subtitle = "Your cursed bloodline ends here!" }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
m = {
|
m = {
|
||||||
|
@ -397,25 +396,25 @@ local voices = {
|
||||||
{ file = "Hlo_NM106.mp3", subtitle = "Hello. Hmm. You're not here to start trouble, are you?" },
|
{ file = "Hlo_NM106.mp3", subtitle = "Hello. Hmm. You're not here to start trouble, are you?" },
|
||||||
{ file = "Hlo_NM087.mp3", subtitle = "What's this all about?" },
|
{ file = "Hlo_NM087.mp3", subtitle = "What's this all about?" },
|
||||||
{ file = "Hlo_NM059.mp3", subtitle = "You like to dance close to the fire, don't you?" },
|
{ file = "Hlo_NM059.mp3", subtitle = "You like to dance close to the fire, don't you?" },
|
||||||
{ file = "Hlo_NM047.mp3", subtitle = "I've got no patience for petty criminals. Move on." },
|
{ file = "Hlo_NM047.mp3", subtitle = "I've got no patience for petty criminals. Move on." }
|
||||||
},
|
},
|
||||||
["stop_sneaking"] = {
|
["stop_sneaking"] = {
|
||||||
{ file = "Hlo_NM077.mp3", subtitle = "On your way." },
|
{ file = "Hlo_NM077.mp3", subtitle = "On your way." },
|
||||||
{ file = "Hlo_NM017.mp3", subtitle = "You must be joking." },
|
{ file = "Hlo_NM017.mp3", subtitle = "You must be joking." },
|
||||||
{ file = "Hlo_NM022.mp3", subtitle = "Get out of here, before you get hurt!" },
|
{ file = "Hlo_NM022.mp3", subtitle = "Get out of here, before you get hurt!" },
|
||||||
{ file = "Hlo_NM022.mp3", subtitle = "Get out of here, before you get hurt!" },
|
{ file = "Hlo_NM022.mp3", subtitle = "Get out of here, before you get hurt!" }
|
||||||
},
|
},
|
||||||
["stop_following"] = {
|
["stop_following"] = {
|
||||||
{ file = "Hlo_NM055.mp3", subtitle = "By the gods! You tourists are a nuisance!" },
|
{ file = "Hlo_NM055.mp3", subtitle = "By the gods! You tourists are a nuisance!" },
|
||||||
{ file = "Hlo_NM022.mp3", subtitle = "Get out of here before you get hurt." },
|
{ file = "Hlo_NM022.mp3", subtitle = "Get out of here before you get hurt." },
|
||||||
{ file = "Srv_NM003.mp3", subtitle = "Do not waste my time!" },
|
{ file = "Srv_NM003.mp3", subtitle = "Do not waste my time!" },
|
||||||
{ file = "bIdl_NM016.mp3", subtitle = "[Wide yawn.]" },
|
{ file = "bIdl_NM016.mp3", subtitle = "[Wide yawn.]" }
|
||||||
},
|
},
|
||||||
["join_combat"] = {
|
["join_combat"] = {
|
||||||
{ file = "Atk_NM020.mp3", subtitle = "It will be your blood here, not mine!" },
|
{ file = "Atk_NM020.mp3", subtitle = "It will be your blood here, not mine!" },
|
||||||
{ file = "Atk_NM007.mp3", subtitle = "I will bathe in your blood." },
|
{ file = "Atk_NM007.mp3", subtitle = "I will bathe in your blood." },
|
||||||
{ file = "Atk_NM004.mp3", subtitle = "Fool!" },
|
{ file = "Atk_NM004.mp3", subtitle = "Fool!" },
|
||||||
{ file = "bAtk_NM002.mp3", subtitle = "Your cursed bloodline ends here!" },
|
{ file = "bAtk_NM002.mp3", subtitle = "Your cursed bloodline ends here!" }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
dir = "n"
|
dir = "n"
|
||||||
|
@ -426,25 +425,25 @@ local voices = {
|
||||||
{ file = "Hlo_OF018.mp3", subtitle = "We cut off the hand that steals. Know this, thief." },
|
{ file = "Hlo_OF018.mp3", subtitle = "We cut off the hand that steals. Know this, thief." },
|
||||||
{ file = "Hlo_OF106.mp3", subtitle = "I know of your taste for crime. Be warned." },
|
{ file = "Hlo_OF106.mp3", subtitle = "I know of your taste for crime. Be warned." },
|
||||||
{ file = "Hlo_OF044.mp3", subtitle = "What are you supposed to be?" },
|
{ file = "Hlo_OF044.mp3", subtitle = "What are you supposed to be?" },
|
||||||
{ file = "Idl_OF009.mp3", subtitle = "Finally something interesting." },
|
{ file = "Idl_OF009.mp3", subtitle = "Finally something interesting." }
|
||||||
},
|
},
|
||||||
["stop_sneaking"] = {
|
["stop_sneaking"] = {
|
||||||
{ file = "Srv_OF003.mp3", subtitle = "Get out! You'll give this place a bad name." },
|
{ file = "Srv_OF003.mp3", subtitle = "Get out! You'll give this place a bad name." },
|
||||||
{ file = "Hlo_OF056.mp3", subtitle = "Do not waste my time." },
|
{ file = "Hlo_OF056.mp3", subtitle = "Do not waste my time." },
|
||||||
{ file = "Hlo_OF023.mp3", subtitle = "I haven't time for fools." },
|
{ file = "Hlo_OF023.mp3", subtitle = "I haven't time for fools." },
|
||||||
{ file = "Hlo_OF026.mp3", subtitle = "So annoying." },
|
{ file = "Hlo_OF026.mp3", subtitle = "So annoying." }
|
||||||
},
|
},
|
||||||
["stop_following"] = {
|
["stop_following"] = {
|
||||||
{ file = "Hlo_OF056.mp3", subtitle = "Do not waste my time." },
|
{ file = "Hlo_OF056.mp3", subtitle = "Do not waste my time." },
|
||||||
{ file = "Hlo_OF026.mp3", subtitle = "So annoying." },
|
{ file = "Hlo_OF026.mp3", subtitle = "So annoying." },
|
||||||
{ file = "Hlo_OF025.mp3", subtitle = "You're hardly worth my time." },
|
{ file = "Hlo_OF025.mp3", subtitle = "You're hardly worth my time." },
|
||||||
{ file = "Hlo_OF023.mp3", subtitle = "I haven't time for fools." },
|
{ file = "Hlo_OF023.mp3", subtitle = "I haven't time for fools." }
|
||||||
},
|
},
|
||||||
["join_combat"] = {
|
["join_combat"] = {
|
||||||
{ file = "CrAtk_OF005.mp3", subtitle = "Die!" },
|
{ file = "CrAtk_OF005.mp3", subtitle = "Die!" },
|
||||||
{ file = "Atk_OF015.mp3", subtitle = "Our blood is made for fighting!" },
|
{ file = "Atk_OF015.mp3", subtitle = "Our blood is made for fighting!" },
|
||||||
{ file = "Atk_OF005.mp3", subtitle = "Now you die." },
|
{ file = "Atk_OF005.mp3", subtitle = "Now you die." },
|
||||||
{ file = "Atk_OF003.mp3", subtitle = "No surrender! No mercy!" },
|
{ file = "Atk_OF003.mp3", subtitle = "No surrender! No mercy!" }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
m = {
|
m = {
|
||||||
|
@ -452,25 +451,25 @@ local voices = {
|
||||||
{ file = "Hlo_OM018.mp3", subtitle = "We cut of the hand that steals. Know this, thief." },
|
{ file = "Hlo_OM018.mp3", subtitle = "We cut of the hand that steals. Know this, thief." },
|
||||||
{ file = "Hlo_OM106.mp3", subtitle = "I know of your taste for crime. Be warned." },
|
{ file = "Hlo_OM106.mp3", subtitle = "I know of your taste for crime. Be warned." },
|
||||||
{ file = "Hlo_OM055.mp3", subtitle = "What are you doing?" },
|
{ file = "Hlo_OM055.mp3", subtitle = "What are you doing?" },
|
||||||
{ file = "Hlo_OM024.mp3", subtitle = "Do you seek a fight with me? If not, leave." },
|
{ file = "Hlo_OM024.mp3", subtitle = "Do you seek a fight with me? If not, leave." }
|
||||||
},
|
},
|
||||||
["stop_sneaking"] = {
|
["stop_sneaking"] = {
|
||||||
{ file = "Srv_OM006.mp3", subtitle = "Bother me again and I'll rip your arm off." },
|
{ file = "Srv_OM006.mp3", subtitle = "Bother me again and I'll rip your arm off." },
|
||||||
{ file = "Hlo_OM056.mp3", subtitle = "Do not waste my time." },
|
{ file = "Hlo_OM056.mp3", subtitle = "Do not waste my time." },
|
||||||
{ file = "Hlo_OM026.mp3", subtitle = "Annoying creature." },
|
{ file = "Hlo_OM026.mp3", subtitle = "Annoying creature." },
|
||||||
{ file = "Hlo_OM023.mp3", subtitle = "I haven't time for fools." },
|
{ file = "Hlo_OM023.mp3", subtitle = "I haven't time for fools." }
|
||||||
},
|
},
|
||||||
["stop_following"] = {
|
["stop_following"] = {
|
||||||
{ file = "Srv_OM006.mp3", subtitle = "Bother me again and I'll rip your arm off." },
|
{ file = "Srv_OM006.mp3", subtitle = "Bother me again and I'll rip your arm off." },
|
||||||
{ file = "Hlo_OM056.mp3", subtitle = "Do not waste my time." },
|
{ file = "Hlo_OM056.mp3", subtitle = "Do not waste my time." },
|
||||||
{ file = "Hlo_OM025.mp3", subtitle = "You're hardly worth my time." },
|
{ file = "Hlo_OM025.mp3", subtitle = "You're hardly worth my time." },
|
||||||
{ file = "Hlo_OM023.mp3", subtitle = "I haven't time for fools." },
|
{ file = "Hlo_OM023.mp3", subtitle = "I haven't time for fools." }
|
||||||
},
|
},
|
||||||
["join_combat"] = {
|
["join_combat"] = {
|
||||||
{ file = "CrAtk_OM005.mp3", subtitle = "Die!" },
|
{ file = "CrAtk_OM005.mp3", subtitle = "Die!" },
|
||||||
{ file = "Atk_OM015.mp3", subtitle = "Our blood is made for fighting!" },
|
{ file = "Atk_OM015.mp3", subtitle = "Our blood is made for fighting!" },
|
||||||
{ file = "Atk_OM011.mp3", subtitle = "I will kill you quickly." },
|
{ file = "Atk_OM011.mp3", subtitle = "I will kill you quickly." },
|
||||||
{ file = "Atk_OM013.mp3", subtitle = "Your bones will be my dinner." },
|
{ file = "Atk_OM013.mp3", subtitle = "Your bones will be my dinner." }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
dir = "o"
|
dir = "o"
|
||||||
|
@ -483,25 +482,25 @@ local voices = {
|
||||||
{ file = "Hlo_RF055.mp3", subtitle = "There's something not right about you. Maybe you should go." },
|
{ file = "Hlo_RF055.mp3", subtitle = "There's something not right about you. Maybe you should go." },
|
||||||
{ file = "Hlo_RF054.mp3", subtitle = "How do I know you're not up to something devious?" },
|
{ file = "Hlo_RF054.mp3", subtitle = "How do I know you're not up to something devious?" },
|
||||||
{ file = "Hlo_RF024.mp3", subtitle = "If you're looking for trouble, you're getting very warm." },
|
{ file = "Hlo_RF024.mp3", subtitle = "If you're looking for trouble, you're getting very warm." },
|
||||||
{ file = "Thf_RF001.mp3", subtitle = "Not on my watch, thief."},
|
{ file = "Thf_RF001.mp3", subtitle = "Not on my watch, thief." }
|
||||||
},
|
},
|
||||||
["stop_sneaking"] = {
|
["stop_sneaking"] = {
|
||||||
{ file = "Hlo_RF027.mp3", subtitle = "Keep walking." },
|
{ file = "Hlo_RF027.mp3", subtitle = "Keep walking." },
|
||||||
{ file = "Hlo_RF022.mp3", subtitle = "Get lost." },
|
{ file = "Hlo_RF022.mp3", subtitle = "Get lost." },
|
||||||
{ file = "Hlo_RF001.mp3", subtitle = "I think it would be best if you leave. Now." },
|
{ file = "Hlo_RF001.mp3", subtitle = "I think it would be best if you leave. Now." },
|
||||||
{ file = "Hlo_RF000b.mp3", subtitle = "Humph." },
|
{ file = "Hlo_RF000b.mp3", subtitle = "Humph." }
|
||||||
},
|
},
|
||||||
["stop_following"] = {
|
["stop_following"] = {
|
||||||
{ file = "Hlo_RF046.mp3", subtitle = "I don't want any part of this. Whatever it is." },
|
{ file = "Hlo_RF046.mp3", subtitle = "I don't want any part of this. Whatever it is." },
|
||||||
{ file = "Hlo_RF000b.mp3", subtitle = "Humph." },
|
{ file = "Hlo_RF000b.mp3", subtitle = "Humph." },
|
||||||
{ file = "Hlo_RF000d.mp3", subtitle = "I won't waste my time on the likes of you." },
|
{ file = "Hlo_RF000d.mp3", subtitle = "I won't waste my time on the likes of you." },
|
||||||
{ file = "Atk_RF004.mp3", subtitle = "Stupid fetcher!" },
|
{ file = "Atk_RF004.mp3", subtitle = "Stupid fetcher!" }
|
||||||
},
|
},
|
||||||
["join_combat"] = {
|
["join_combat"] = {
|
||||||
{ file = "CrAtk_RF005.mp3", subtitle = "Die!" },
|
{ file = "CrAtk_RF005.mp3", subtitle = "Die!" },
|
||||||
{ file = "Atk_RF010.mp3", subtitle = "You'll be dead soon." },
|
{ file = "Atk_RF010.mp3", subtitle = "You'll be dead soon." },
|
||||||
{ file = "Atk_RF014.mp3", subtitle = "Run or die!" },
|
{ file = "Atk_RF014.mp3", subtitle = "Run or die!" },
|
||||||
{ file = "Atk_RF007.mp3", subtitle = "Run while you can." },
|
{ file = "Atk_RF007.mp3", subtitle = "Run while you can." }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
m = {
|
m = {
|
||||||
|
@ -511,25 +510,25 @@ local voices = {
|
||||||
{ file = "Hlo_RM055.mp3", subtitle = "There's something not right about you. Maybe you should go." },
|
{ file = "Hlo_RM055.mp3", subtitle = "There's something not right about you. Maybe you should go." },
|
||||||
{ file = "Hlo_RM054.mp3", subtitle = "How do I know you're not up to something devious?" },
|
{ file = "Hlo_RM054.mp3", subtitle = "How do I know you're not up to something devious?" },
|
||||||
{ file = "Hlo_RM024.mp3", subtitle = "If you're looking for trouble, you're getting very warm." },
|
{ file = "Hlo_RM024.mp3", subtitle = "If you're looking for trouble, you're getting very warm." },
|
||||||
{ file = "Thf_RM001.mp3", subtitle = "Not on my watch, thief." },
|
{ file = "Thf_RM001.mp3", subtitle = "Not on my watch, thief." }
|
||||||
},
|
},
|
||||||
["stop_sneaking"] = {
|
["stop_sneaking"] = {
|
||||||
{ file = "Hlo_RM027.mp3", subtitle = "Keep walking." },
|
{ file = "Hlo_RM027.mp3", subtitle = "Keep walking." },
|
||||||
{ file = "Hlo_RM022.mp3", subtitle = "Get lost." },
|
{ file = "Hlo_RM022.mp3", subtitle = "Get lost." },
|
||||||
{ file = "Hlo_RM001.mp3", subtitle = "I think it would be best if you leave. Now." },
|
{ file = "Hlo_RM001.mp3", subtitle = "I think it would be best if you leave. Now." },
|
||||||
{ file = "Fle_RM002.mp3", subtitle = "We're done here." },
|
{ file = "Fle_RM002.mp3", subtitle = "We're done here." }
|
||||||
},
|
},
|
||||||
["stop_following"] = {
|
["stop_following"] = {
|
||||||
{ file = "Hlo_RM046.mp3", subtitle = "I don't want any part of this. Whatever it is." },
|
{ file = "Hlo_RM046.mp3", subtitle = "I don't want any part of this. Whatever it is." },
|
||||||
{ file = "Hlo_RM044.mp3", subtitle = "Stop wasting my time with your foolishness!" },
|
{ file = "Hlo_RM044.mp3", subtitle = "Stop wasting my time with your foolishness!" },
|
||||||
{ file = "Hlo_RM022.mp3", subtitle = "Get lost." },
|
{ file = "Hlo_RM022.mp3", subtitle = "Get lost." },
|
||||||
{ file = "Srv_RM003.mp3", subtitle = "It ... should leave!" },
|
{ file = "Srv_RM003.mp3", subtitle = "It ... should leave!" }
|
||||||
},
|
},
|
||||||
["join_combat"] = {
|
["join_combat"] = {
|
||||||
{ file = "Atk_RM016.mp3", subtitle = "I hope you suffer!" },
|
{ file = "Atk_RM016.mp3", subtitle = "I hope you suffer!" },
|
||||||
{ file = "Atk_RM010.mp3", subtitle = "You'll be dead soon." },
|
{ file = "Atk_RM010.mp3", subtitle = "You'll be dead soon." },
|
||||||
{ file = "Atk_RM014.mp3", subtitle = "Here it comes!" },
|
{ file = "Atk_RM014.mp3", subtitle = "Here it comes!" },
|
||||||
{ file = "Atk_RM007.mp3", subtitle = "Run while you can." },
|
{ file = "Atk_RM007.mp3", subtitle = "Run while you can." }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
dir = "r"
|
dir = "r"
|
||||||
|
@ -540,25 +539,25 @@ local voices = {
|
||||||
{ file = "Hlo_WF106.mp3", subtitle = "Criminals should dealt with harshly, don't you think?" },
|
{ file = "Hlo_WF106.mp3", subtitle = "Criminals should dealt with harshly, don't you think?" },
|
||||||
{ file = "Hlo_WF083.mp3", subtitle = "What is this about?" },
|
{ file = "Hlo_WF083.mp3", subtitle = "What is this about?" },
|
||||||
{ file = "Hlo_WF024.mp3", subtitle = "You'll get more than you bargained for from me." },
|
{ file = "Hlo_WF024.mp3", subtitle = "You'll get more than you bargained for from me." },
|
||||||
{ file = "Hlo_WF000d.mp3", subtitle = "You don't want to see me angry." },
|
{ file = "Hlo_WF000d.mp3", subtitle = "You don't want to see me angry." }
|
||||||
},
|
},
|
||||||
["stop_sneaking"] = {
|
["stop_sneaking"] = {
|
||||||
{ file = "Hlo_WF025.mp3", subtitle = "I really don't want you around here." },
|
{ file = "Hlo_WF025.mp3", subtitle = "I really don't want you around here." },
|
||||||
{ file = "Hlo_WF023.mp3", subtitle = "Useless tourists." },
|
{ file = "Hlo_WF023.mp3", subtitle = "Useless tourists." },
|
||||||
{ file = "Hlo_WF028.mp3", subtitle = "I don't like you much, stranger." },
|
{ file = "Hlo_WF028.mp3", subtitle = "I don't like you much, stranger." },
|
||||||
{ file = "Hlo_WF019.mp3", subtitle = "You're a disgrace." },
|
{ file = "Hlo_WF019.mp3", subtitle = "You're a disgrace." }
|
||||||
},
|
},
|
||||||
["stop_following"] = {
|
["stop_following"] = {
|
||||||
{ file = "Srv_WF009.mp3", subtitle = "You offend me!" },
|
{ file = "Srv_WF009.mp3", subtitle = "You offend me!" },
|
||||||
{ file = "Atk_WF002.mp3", subtitle = "Fetcher!" },
|
{ file = "Atk_WF002.mp3", subtitle = "Fetcher!" },
|
||||||
{ file = "Hlo_WF055.mp3", subtitle = "Too much trouble. Must be going now." },
|
{ file = "Hlo_WF055.mp3", subtitle = "Too much trouble. Must be going now." },
|
||||||
{ file = "Hlo_WF054.mp3", subtitle = "I'm sure this is important, but I really must go." },
|
{ file = "Hlo_WF054.mp3", subtitle = "I'm sure this is important, but I really must go." }
|
||||||
},
|
},
|
||||||
["join_combat"] = {
|
["join_combat"] = {
|
||||||
{ file = "CrAtk_WF005.mp3", subtitle = "Die!" },
|
{ file = "CrAtk_WF005.mp3", subtitle = "Die!" },
|
||||||
{ file = "Atk_WF001.mp3", subtitle = "Now you're going to get it." },
|
{ file = "Atk_WF001.mp3", subtitle = "Now you're going to get it." },
|
||||||
{ file = "Atk_WF009.mp3", subtitle = "One of us will die here and it won't be me." },
|
{ file = "Atk_WF009.mp3", subtitle = "One of us will die here and it won't be me." },
|
||||||
{ file = "Atk_WF008.mp3", subtitle = "Run while you can." },
|
{ file = "Atk_WF008.mp3", subtitle = "Run while you can." }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
m = {
|
m = {
|
||||||
|
@ -566,31 +565,30 @@ local voices = {
|
||||||
{ file = "Hlo_WM106.mp3", subtitle = "Criminals should dealt with harshly, don't you think?" },
|
{ file = "Hlo_WM106.mp3", subtitle = "Criminals should dealt with harshly, don't you think?" },
|
||||||
{ file = "Hlo_WM083.mp3", subtitle = "What is this about?" },
|
{ file = "Hlo_WM083.mp3", subtitle = "What is this about?" },
|
||||||
{ file = "Hlo_WM024.mp3", subtitle = "You'll get more than you bargained for from me." },
|
{ file = "Hlo_WM024.mp3", subtitle = "You'll get more than you bargained for from me." },
|
||||||
{ file = "Hlo_WM046.mp3", subtitle = "The laws are harsh for thieves. Including yourself." },
|
{ file = "Hlo_WM046.mp3", subtitle = "The laws are harsh for thieves. Including yourself." }
|
||||||
},
|
},
|
||||||
["stop_sneaking"] = {
|
["stop_sneaking"] = {
|
||||||
{ file = "Hlo_WM025.mp3", subtitle = "I really don't want you around here." },
|
{ file = "Hlo_WM025.mp3", subtitle = "I really don't want you around here." },
|
||||||
{ file = "Hlo_WM023.mp3", subtitle = "Useless tourists." },
|
{ file = "Hlo_WM023.mp3", subtitle = "Useless tourists." },
|
||||||
{ file = "Hlo_WM028.mp3", subtitle = "I don't like you much." },
|
{ file = "Hlo_WM028.mp3", subtitle = "I don't like you much." },
|
||||||
{ file = "Hlo_WM019.mp3", subtitle = "You're a disgrace." },
|
{ file = "Hlo_WM019.mp3", subtitle = "You're a disgrace." }
|
||||||
},
|
},
|
||||||
["stop_following"] = {
|
["stop_following"] = {
|
||||||
{ file = "Hlo_WM027.mp3", subtitle = "Can't you find someone else to bother?" },
|
{ file = "Hlo_WM027.mp3", subtitle = "Can't you find someone else to bother?" },
|
||||||
{ file = "Atk_WM002.mp3", subtitle = "Fetcher!" },
|
{ file = "Atk_WM002.mp3", subtitle = "Fetcher!" },
|
||||||
{ file = "Hlo_WM055.mp3", subtitle = "Too much trouble. Must be going now." },
|
{ file = "Hlo_WM055.mp3", subtitle = "Too much trouble. Must be going now." },
|
||||||
{ file = "Hlo_WM054.mp3", subtitle = "I'm sure this is important, but I really must go." },
|
{ file = "Hlo_WM054.mp3", subtitle = "I'm sure this is important, but I really must go." }
|
||||||
},
|
},
|
||||||
["join_combat"] = {
|
["join_combat"] = {
|
||||||
{ file = "Atk_WM003.mp3", subtitle = "You don't deserve to live." },
|
{ file = "Atk_WM003.mp3", subtitle = "You don't deserve to live." },
|
||||||
{ file = "Atk_WM001.mp3", subtitle = "Now you're going to get it." },
|
{ file = "Atk_WM001.mp3", subtitle = "Now you're going to get it." },
|
||||||
{ file = "Atk_WM009.mp3", subtitle = "One of us will die here and it won't be me." },
|
{ file = "Atk_WM009.mp3", subtitle = "One of us will die here and it won't be me." },
|
||||||
{ file = "Atk_WM008.mp3", subtitle = "Run while you can." },
|
{ file = "Atk_WM008.mp3", subtitle = "Run while you can." }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
dir = "w"
|
dir = "w"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
-- LuaFormatter on
|
|
||||||
|
|
||||||
-- TR voices
|
-- TR voices
|
||||||
voices["t_els_cathay"] = voices.khajiit
|
voices["t_els_cathay"] = voices.khajiit
|
||||||
|
|
|
@ -63,7 +63,7 @@ local function startDialogue(chance)
|
||||||
log(response)
|
log(response)
|
||||||
elseif config.sneakDialogue == common.dialogueMode.voice then
|
elseif config.sneakDialogue == common.dialogueMode.voice then
|
||||||
local response = common.playGuardVoice(follower, "sneaking")
|
local response = common.playGuardVoice(follower, "sneaking")
|
||||||
log("Playing sound file: %s", response)
|
log("Playing sound file %s because sneaking", response)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -106,7 +106,7 @@ local function stopFollowing(onTimer)
|
||||||
log(response)
|
log(response)
|
||||||
elseif config.sneakDialogue == common.dialogueMode.voice then
|
elseif config.sneakDialogue == common.dialogueMode.voice then
|
||||||
local response = common.playGuardVoice(follower, "stop_following")
|
local response = common.playGuardVoice(follower, "stop_following")
|
||||||
log("Playing sound file: %s", response)
|
log("Playing sound file %s because stop_following", response)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -154,7 +154,7 @@ local function abortFollow()
|
||||||
log(response)
|
log(response)
|
||||||
elseif config.sneakDialogue == common.dialogueMode.voice then
|
elseif config.sneakDialogue == common.dialogueMode.voice then
|
||||||
local response = common.playGuardVoice(follower, "stop_sneaking")
|
local response = common.playGuardVoice(follower, "stop_sneaking")
|
||||||
log("Playing sound file: %s", response)
|
log("Playing sound file %s because stop_sneaking", response)
|
||||||
end
|
end
|
||||||
stopFollowing(false)
|
stopFollowing(false)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue