ThexianLanguagePrimer.lua 358 B

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