123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- --[[
- Script Name : SpawnScripts/qeynos_combined02/aBaubbleshiredefender133771775.lua
- Script Author : Rylec
- Script Date : 2021.01.16 05:01:26
- Script Purpose :
- :
- --]]
- function spawn(NPC)
- math.randomseed(os.time())
- choice = math.random(1134,1139)
- SpawnSet(NPC, "hair_type", choice)
- AddTimer(NPC, 1000, "EmoteLoop")
- end
- function hailed(NPC, Spawn)
- FaceTarget(NPC, Spawn)
- math.randomseed(os.time())
- voice = math.random(1,3)
- PlayFlavor(NPC, "voiceover/english/voice_emotes/greetings/greetings_"..voice.."_1005.mp3", "", "", 0, 0, Spawn)
- end
- function respawn(NPC)
- spawn(NPC)
- end
- function EmoteLoop(NPC)
- math.randomseed(os.time())
- local choice1 = math.random(1,17)
- local timer = math.random(5000,9000)
- if choice1 == 1 then
- -- converse_male01
- PlayAnimation(NPC, 11233)
- AddTimer(NPC, timer, "EmoteLoop")
- elseif choice1 == 2 then
- -- converse_male02
- PlayAnimation(NPC, 11234)
- AddTimer(NPC, timer, "EmoteLoop")
- elseif choice1 == 3 then
- -- converse_male03
- PlayAnimation(NPC, 11235)
- AddTimer(NPC, timer, "EmoteLoop")
- elseif choice1 == 4 then
- -- converse_male04
- PlayAnimation(NPC, 2983)
- AddTimer(NPC, timer, "EmoteLoop")
- elseif choice1 == 5 then
- -- converse_male05
- PlayAnimation(NPC, 11236)
- AddTimer(NPC, timer, "EmoteLoop")
- elseif choice1 == 6 then
- -- converse_male06
- PlayAnimation(NPC, 11237)
- AddTimer(NPC, timer, "EmoteLoop")
- elseif choice1 == 7 then
- -- converse_male07
- PlayAnimation(NPC, 11238)
- AddTimer(NPC, timer, "EmoteLoop")
- elseif choice1 == 8 then
- -- converse_male08
- PlayAnimation(NPC, 11239)
- AddTimer(NPC, timer, "EmoteLoop")
- elseif choice1 == 9 then
- -- converse_male09
- PlayAnimation(NPC, 11240)
- AddTimer(NPC, timer, "EmoteLoop")
- elseif choice1 == 10 then
- -- converse_male10
- PlayAnimation(NPC, 11241)
- AddTimer(NPC, timer, "EmoteLoop")
- elseif choice1 == 11 then
- -- converse_male11
- PlayAnimation(NPC, 11242)
- AddTimer(NPC, timer, "EmoteLoop")
- elseif choice1 == 12 then
- -- converse_male12
- PlayAnimation(NPC, 2991)
- AddTimer(NPC, timer, "EmoteLoop")
- elseif choice1 == 13 then
- -- no
- PlayAnimation(NPC, 11881)
- AddTimer(NPC, timer, "EmoteLoop")
- elseif choice1 == 14 then
- -- agree
- PlayAnimation(NPC, 10745)
- AddTimer(NPC, timer, "EmoteLoop")
- elseif choice1 == 15 then
- -- nod
- PlayAnimation(NPC, 11882)
- AddTimer(NPC, timer, "EmoteLoop")
- elseif choice1 == 16 then
- -- heckno
- PlayAnimation(NPC, 11680)
- AddTimer(NPC, timer, "EmoteLoop")
- else
- -- shrug
- PlayAnimation(NPC, 12240)
- AddTimer(NPC, timer, "EmoteLoop")
- end
- end
- --function Idle(NPC)
- -- PlayAnimation(NPC, 323)
- -- EmoteLoop(NPC)
- --end
|