KoadaDalLanguagePrimer.lua 362 B

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