FeirDalLanguagePrimer.lua 362 B

12345678910111213141516
  1. --[[
  2. Script Name : Feir'Dal 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,16) then
  10. AddLanguage(Spawn, 16)
  11. SendMessage(Spawn, "You have learned the basics of the Feir'Dal language.", "White")
  12. RemoveItem(Spawn, 902)
  13. end
  14. end