Zaikik.lua 509 B

1234567891011121314151617181920212223
  1. --[[
  2. Script Name : SpawnScripts/Commonlands/Zaikik.lua
  3. Script Author : Premierio015
  4. Script Date : 2021.03.14 06:03:54
  5. Script Purpose :
  6. :
  7. --]]
  8. require "SpawnScripts/Generic/NPCModule"
  9. function spawn(NPC, Spawn)
  10. NPCModule(NPC, Spawn)
  11. ratonga(NPC)
  12. end
  13. function hailed(NPC, Spawn)
  14. FaceTarget(NPC, Spawn)
  15. PlayFlavor(NPC, "", "Outside! In the box! Don't be stupid!", "", 1689589577, 4560189)
  16. end
  17. function respawn(NPC)
  18. spawn(NPC)
  19. end