aBrotherhoodenforcer2.lua 680 B

1234567891011121314151617181920212223242526272829
  1. --[[
  2. Script Name : <script-name>
  3. Script Purpose : <purpose>
  4. Script Author : <author-name>
  5. Script Date : <date>
  6. Script Notes : <special-instructions>
  7. --]]
  8. function spawn(NPC)
  9. MovementLoopAddLocation(NPC, -7.44, 4.00, -46.95, 3, 0)
  10. MovementLoopAddLocation(NPC, -15.15, 3.75, -31.27, 3, 6)
  11. MovementLoopAddLocation(NPC, -24.59, 2.00, -7.14, 3, 10, "DespawnBE2")
  12. AddTimer(NPC, 18000, "ComeWithUs")
  13. end
  14. function hailed(NPC, Spawn)
  15. end
  16. function respawn(NPC)
  17. end
  18. function DespawnBE2(NPC)
  19. Despawn(NPC)
  20. end
  21. function ComeWithUs(NPC)
  22. PlayFlavor(NPC, "", "Be quiet, don't struggle, and come with us, Rommuls.", "", 1689589577, 4560189, Spawn)
  23. end