HalasianLanguagePrimer.lua 360 B

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