12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- --[[
- Script Name : quillfingers.lua
- Script Purpose : Waypoint Path for quillfingers.lua
- Script Author : Devn00b
- Script Date : 04/11/2020 06:17:43 PM
- Script Notes : Locations collected from Live
- --]]
- function spawn(NPC)
- waypoints(NPC)
- end
- function hailed(NPC, Spawn)
- FaceTarget(NPC, Spawn)
-
- local choice = math.random(1,2)
- if choice == 1 then
- PlayFlavor(NPC, "voiceover/english/halfling_eco_good_1/ft/halfling/halfling_eco_good_1_hail_gm_cd9164d6.mp3", "You're a stranger. And I don't like strangers, no sir I don't!", "sulk", 785726454, 3155500140, Spawn)
- elseif choice == 2 then
- PlayFlavor(NPC, "voiceover/english/halfling_eco_good_1/ft/halfling/halfling_eco_good_1_hail_gm_75c0e97c.mp3", "Welcome to the city, adventurer. Be mindful of the peace and quiet. Here in Qeynos, we value our privacy.", "bow", 1955296899, 2249687997, Spawn)
- else
- end
- end
- function respawn(NPC)
- spawn(NPC)
- end
- function waypoints(NPC)
- MovementLoopAddLocation(NPC, 451.46, -11.41, 116.82, 2, 0)
- MovementLoopAddLocation(NPC, 470.39, -11.52, 134.93, 2, 0)
- MovementLoopAddLocation(NPC, 489.07, -11.4, 142.29, 2, 0)
- MovementLoopAddLocation(NPC, 525.11, -10.46, 149.37, 2, 0)
- MovementLoopAddLocation(NPC, 545.9, -10.56, 152.61, 2, 0)
- MovementLoopAddLocation(NPC, 605.81, -12.12, 146.65, 2, 0)
- MovementLoopAddLocation(NPC, 609.47, -11.57, 158.08, 2, 0)
- MovementLoopAddLocation(NPC, 625.38, -12.36, 158.09, 2, 0)
- MovementLoopAddLocation(NPC, 625.59, -16.63, 195.33, 2, 0)
- MovementLoopAddLocation(NPC, 678.57, -19.45, 182.33, 2, 0)
- MovementLoopAddLocation(NPC, 686.49, -19.57, 218.19, 2, 0)
- MovementLoopAddLocation(NPC, 622.04, -18.61, 233.99, 2, 0)
- MovementLoopAddLocation(NPC, 578.55, -17.93, 241.46, 2, 0)
- MovementLoopAddLocation(NPC, 561.94, -17.73, 242.56, 2, 0)
- MovementLoopAddLocation(NPC, 533.14, -18.33, 242.15, 2, 0)
- MovementLoopAddLocation(NPC, 497.26, -19.87, 240.62, 2, 0)
- MovementLoopAddLocation(NPC, 465.94, -21.88, 234.24, 2, 0)
- MovementLoopAddLocation(NPC, 459.18, -22.03, 232.23, 2, 0)
- MovementLoopAddLocation(NPC, 479.65, -19.85, 180.64, 2, 0)
- MovementLoopAddLocation(NPC, 490.42, -12.8, 150.23, 2, 0)
- MovementLoopAddLocation(NPC, 480.65, -11.77, 141.88, 2, 0)
- MovementLoopAddLocation(NPC, 450.19, -11.44, 116.21, 2, 0)
- MovementLoopAddLocation(NPC, 480.65, -11.77, 141.88, 2, 0)
- MovementLoopAddLocation(NPC, 490.42, -12.8, 150.23, 2, 0)
- MovementLoopAddLocation(NPC, 479.65, -19.85, 180.64, 2, 0)
- MovementLoopAddLocation(NPC, 459.18, -22.03, 232.23, 2, 0)
- MovementLoopAddLocation(NPC, 465.94, -21.88, 234.24, 2, 0)
- MovementLoopAddLocation(NPC, 497.26, -19.87, 240.62, 2, 0)
- MovementLoopAddLocation(NPC, 533.14, -18.33, 242.15, 2, 0)
- MovementLoopAddLocation(NPC, 561.94, -17.73, 242.56, 2, 0)
- MovementLoopAddLocation(NPC, 578.55, -17.93, 241.46, 2, 0)
- MovementLoopAddLocation(NPC, 622.04, -18.61, 233.99, 2, 0)
- MovementLoopAddLocation(NPC, 686.49, -19.57, 218.19, 2, 0)
- MovementLoopAddLocation(NPC, 678.57, -19.45, 182.33, 2, 0)
- MovementLoopAddLocation(NPC, 625.59, -16.63, 195.33, 2, 0)
- MovementLoopAddLocation(NPC, 625.38, -12.36, 158.09, 2, 0)
- MovementLoopAddLocation(NPC, 609.47, -11.57, 158.08, 2, 0)
- MovementLoopAddLocation(NPC, 605.81, -12.12, 146.65, 2, 0)
- MovementLoopAddLocation(NPC, 545.9, -10.56, 152.61, 2, 0)
- MovementLoopAddLocation(NPC, 525.11, -10.46, 149.37, 2, 0)
- MovementLoopAddLocation(NPC, 489.07, -11.4, 142.29, 2, 0)
- MovementLoopAddLocation(NPC, 470.39, -11.52, 134.93, 2, 0)
- MovementLoopAddLocation(NPC, 451.46, -11.41, 116.82, 2, 0)
- end
|