eq2emu-content/ItemScripts/YkeshanLanguagePrimer.lua
2024-10-26 11:37:28 +00:00

16 lines
419 B
Lua
Executable file

--[[
Script Name : ItemScripts/YkeshanLanguagePrimer.lua
Script Author : Dorbin
Script Date : 2022.01.20 05:01:04
Script Purpose :
:
--]]
function obtained(Item, Spawn)
if not HasLanguage(Spawn, 15) then
AddLanguage(Spawn, 15)
SendMessage(Spawn, "You have learned the basics of the Yakeshan language.", "White")
RemoveItem(Spawn, 911)
end
end