abuccaneerrecruit.lua 1007 B

1234567891011121314151617181920212223242526272829
  1. --[[
  2. Script Name : SpawnScripts/BuccaneersHideout/abuccaneerrecruit.lua
  3. Script Author : Dorbin
  4. Script Date : 2022.12.17 04:12:06
  5. Script Purpose :
  6. :
  7. --]]
  8. require "SpawnScripts/Generic/CombatModule"
  9. function spawn(NPC, Spawn)
  10. combatModule(NPC, Spawn)
  11. end
  12. function aggro(NPC,Spawn)
  13. choice = MakeRandomInt(1,3)
  14. if choice ==1 then
  15. PlayFlavor(NPC, "voiceover/english/human_base_1/ft/human/human_base_1_1_aggro_gm_583690dc.mp3", "Summon help! We have invaders!", "", 3340212225, 279643307, Spawn, 0)
  16. elseif choice ==2 then
  17. PlayFlavor(NPC, "voiceover/english/human_base_1/ft/human/human_base_1_1_aggro_gm_a203c9ec.mp3", "Prepare to face your doom, meddler.", "", 1496819882, 365167432, Spawn, 0)
  18. elseif choice ==3 then
  19. PlayFlavor(NPC, "voiceover/english/human_base_1/ft/human/human_base_1_1_aggro_gm_a30c4f9d.mp3", "To arms!", "", 1238020980, 748146443, Spawn, 0)
  20. end
  21. end
  22. function respawn(NPC)
  23. spawn(NPC)
  24. end