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

16 lines
No EOL
418 B
Lua
Executable file

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