pianoplay.lua 476 B

123456789101112131415161718192021222324
  1. --[[
  2. Script Name : SpawnScripts/The Estate of Unrest/pianoplay.lua
  3. Script Author : neatz09
  4. Script Date : 2021.01.02 01:01:02
  5. Script Purpose :
  6. :
  7. --]]
  8. function spawn(NPC)
  9. end
  10. function casted_on(NPC, Spawn, Message)
  11. Say(NPC, "Plays an emote if quest is uncompleted.")
  12. if Message == "Play piano" then
  13. SendMessage(Spawn, "You don't have any music to play.", "white")
  14. end
  15. end
  16. function respawn(NPC)
  17. end