mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
108 lines
No EOL
6.8 KiB
Lua
Executable file
108 lines
No EOL
6.8 KiB
Lua
Executable file
--[[
|
|
Script Name : SpawnScripts/Castleview/KethelinShadowcross.lua
|
|
Script Purpose : Kethelin Shadowcross
|
|
Script Author : Scatman
|
|
Script Date : 2009.10.03
|
|
Script Notes : Edited calling with Daylena Telanthis - Dorbin 4/18/2022
|
|
--]]
|
|
dofile("SpawnScripts/Generic/GenericEcologyVoiceOvers.lua")
|
|
|
|
function spawn(NPC)
|
|
SetPlayerProximityFunction(NPC, 8, "InRange", "LeaveRange")
|
|
SetInfoStructString(NPC, "action_state", "mood_angry")
|
|
end
|
|
|
|
function respawn(NPC)
|
|
spawn(NPC)
|
|
end
|
|
|
|
function InRange(NPC, Spawn)
|
|
if GetFactionAmount(Spawn,11) <0 then
|
|
FaceTarget(NPC, Spawn)
|
|
FactionChecking(NPC, Spawn, faction)
|
|
else
|
|
if MakeRandomInt(0, 100) <= 66 then
|
|
choice = MakeRandomInt(1,2)
|
|
if choice==1 then
|
|
TalkCheck(NPC, Spawn)
|
|
elseif choice==2 then
|
|
zone = GetZone(NPC)
|
|
Daylena = GetSpawnByLocationID(zone,418702)
|
|
DaylenaTalkCheck(Daylena,Spawn)
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|
|
|
|
|
|
function LeaveRange(NPC, Spawn)
|
|
end
|
|
|
|
function hailed(NPC, Spawn)
|
|
if GetFactionAmount(Spawn,11) <0 then
|
|
FaceTarget(NPC, Spawn)
|
|
FactionChecking(NPC, Spawn, faction)
|
|
else
|
|
FaceTarget(NPC, Spawn)
|
|
TalkHail(NPC, Spawn)
|
|
end
|
|
end
|
|
|
|
function TalkCheck(NPC, Spawn)
|
|
local choice = math.random(1, 5)
|
|
if choice == 1 then
|
|
PlayFlavor(NPC, "voiceover/english/highelf_eco_good_celestialwatch/ft/eco/good/highelf_eco_good_celestialwatch_hail_gm_1a077d47.mp3", "The Qeynos Guard blindly strikes at the darkness rather than see the opportunity for redemption that lies within even the most lost of us.", "", 970013852, 575367438, Spawn)
|
|
elseif choice == 2 then
|
|
PlayFlavor(NPC, "voiceover/english/highelf_eco_good_celestialwatch/ft/eco/good/highelf_eco_good_celestialwatch_hail_gm_3af79ac9.mp3", "While their fellow citizens struggle against the tides of evil, the Tunarian Alliance worries itself with the plight of soulless plants and animals.", "", 3394764444, 3959777727, Spawn)
|
|
elseif choice == 3 then
|
|
PlayFlavor(NPC, "voiceover/english/highelf_eco_good_celestialwatch/ft/eco/good/highelf_eco_good_celestialwatch_hail_gm_87dd538b.mp3", "Were they to encounter a god, the Concordium would drop their staves and bow before the might of a true power.", "", 3531845971, 679110479, Spawn)
|
|
elseif choice == 4 then
|
|
PlayFlavor(NPC, "voiceover/english/highelf_eco_good_celestialwatch/ft/eco/good/highelf_eco_good_celestialwatch_hail_gm_d1a0f4da.mp3", "The Celestial Watch preserves the rituals of servitude to the gods so that all might experience through worship the return of the ancient deities.", "", 3161458185, 1498528167, Spawn)
|
|
elseif choice == 5 then
|
|
PlayFlavor(NPC, "voiceover/english/highelf_eco_good_celestialwatch/ft/eco/good/highelf_eco_good_celestialwatch_hail_gm_e796f41.mp3", "The Ironforge Exchange neglects the spiritual through its devotion to the physical materials and pleasures of this world.", "", 1452894482, 3882311847, Spawn, 0)
|
|
end
|
|
end
|
|
|
|
|
|
function TalkHail(NPC, Spawn)
|
|
|
|
local choice = math.random(1, 4)
|
|
if choice == 1 then
|
|
PlayFlavor(NPC, "voiceover/english/highelf_eco_good_celestialwatch/ft/eco/good/highelf_eco_good_celestialwatch_hail_gm_1a077d47.mp3", "The Qeynos Guard blindly strikes at the darkness rather than see the opportunity for redemption that lies within even the most lost of us.", "", 970013852, 575367438, Spawn)
|
|
elseif choice == 2 then
|
|
PlayFlavor(NPC, "voiceover/english/highelf_eco_good_celestialwatch/ft/eco/good/highelf_eco_good_celestialwatch_hail_gm_3af79ac9.mp3", "While their fellow citizens struggle against the tides of evil, the Tunarian Alliance worries itself with the plight of soulless plants and animals.", "", 3394764444, 3959777727, Spawn)
|
|
elseif choice == 3 then
|
|
PlayFlavor(NPC, "voiceover/english/highelf_eco_good_celestialwatch/ft/eco/good/highelf_eco_good_celestialwatch_hail_gm_87dd538b.mp3", "Were they to encounter a god, the Concordium would drop their staves and bow before the might of a true power.", "", 3531845971, 679110479, Spawn)
|
|
elseif choice == 4 then
|
|
PlayFlavor(NPC, "voiceover/english/highelf_eco_good_celestialwatch/ft/eco/good/highelf_eco_good_celestialwatch_hail_gm_d1a0f4da.mp3", "The Celestial Watch preserves the rituals of servitude to the gods so that all might experience through worship the return of the ancient deities.", "", 3161458185, 1498528167, Spawn)
|
|
end
|
|
end
|
|
|
|
function DaylenaTalkCheck(Daylena, Spawn)
|
|
local ConcFac = GetFactionAmount(Spawn, 136)
|
|
if ConcFac >=30000 then
|
|
local choice = math.random(1, 7)
|
|
elseif ConcFac >=10000 then
|
|
local choice = math.random(1, 6)
|
|
else
|
|
local choice = math.random(1, 5)
|
|
if choice == 1 then
|
|
PlayFlavor(Daylena, "voiceover/english/highelf_eco_good_concordium/ft/eco/good/highelf_eco_good_concordium_hail_gf_15aa4eed.mp3", "Those who have neither the abilities nor the aspirations to pursue the intellectual arts will find a home at the Ironforge Exchange.", "", 523104392, 3732258776, Spawn)
|
|
elseif choice == 2 then
|
|
PlayFlavor(Daylena, "voiceover/english/highelf_eco_good_concordium/ft/eco/good/highelf_eco_good_concordium_hail_gf_4121a9b2.mp3", "The Concordium uses ancient and forgotten knowledge to protect us from the shadows that surround Qeynos.", "", 1945306751, 352506246, Spawn)
|
|
elseif choice == 3 then
|
|
PlayFlavor(Daylena, "voiceover/english/highelf_eco_good_concordium/ft/eco/good/highelf_eco_good_concordium_hail_gf_88bbd1aa.mp3", "The Tunarian Alliance does not see the greater issues beyond individual evils. Their forests might be scorched wastelands and they would still be fending off poachers.", "", 3133325899, 3316523299, Spawn)
|
|
elseif choice == 4 then
|
|
PlayFlavor(Daylena, "voiceover/english/highelf_eco_good_concordium/ft/eco/good/highelf_eco_good_concordium_hail_gf_987a9a3c.mp3", "While the Celestial Watch futilely awaits word from its forgotten gods the Concordium has harnessed the true power that blazes within each of us.", "", 3806603086, 3205979382, Spawn)
|
|
elseif choice == 5 then
|
|
PlayFlavor(Daylena, "voiceover/english/highelf_eco_good_concordium/ft/eco/good/highelf_eco_good_concordium_hail_gf_b52cd580.mp3", "The Qeynos Guard cannot defend us from dark forces it neither sees nor understands.", "", 1941375851, 1104708565, Spawn)
|
|
elseif choice == 6 then
|
|
FaceTarget(Daylena, Spawn)
|
|
PlayFlavor(Daylena, "voiceover/english/highelf_eco_good_concordium/ft/eco/good/highelf_eco_good_concordium_10_gf_f5fd7a50.mp3", "To aid the Concordium is to unleash the force for good that burns within us all!", "thank", 3469670242, 3251902799, Spawn)
|
|
elseif choice == 7 then
|
|
FaceTarget(Daylena, Spawn)
|
|
PlayFlavor(Daylena, "voiceover/english/highelf_eco_good_concordium/ft/eco/good/highelf_eco_good_concordium_30_gf_1e49a37f.mp3", "Your couragous actions have assisted the Concordium in its quest for all knowledge!", "cheer", 1170821333, 3893107670, Spawn)
|
|
end
|
|
end
|
|
end |