GnomishLanguagePrimer.lua 359 B

123456789101112131415
  1. --[[
  2. Script Name : Gnomish Language Primer
  3. Script Purpose :
  4. Script Author : Neatz09
  5. Script Date : 1/19/2019
  6. Script Notes :
  7. --]]
  8. function obtained(Item, Spawn)
  9. if not HasLanguage(Spawn,6) then
  10. AddLanguage(Spawn, 6)
  11. SendMessage(Spawn, "You have learned the basics of the Gnomish language", "White")
  12. RemoveItem(Spawn, 903)
  13. end
  14. end