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

16 lines
No EOL
362 B
Lua
Executable file

--[[
Script Name : Feir'Dal Language Primer
Script Purpose :
Script Author : Neatz09
Script Date : 1/19/2019
Script Notes :
--]]
function obtained(Item, Spawn)
if not HasLanguage(Spawn,16) then
AddLanguage(Spawn, 16)
SendMessage(Spawn, "You have learned the basics of the Feir'Dal language.", "White")
RemoveItem(Spawn, 902)
end
end