mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
16 lines
360 B
Lua
Executable file
16 lines
360 B
Lua
Executable file
--[[
|
|
Script Name : Erudian Language Primer
|
|
Script Purpose :
|
|
Script Author : Neatz09
|
|
Script Date : 1/19/2019
|
|
Script Notes :
|
|
--]]
|
|
|
|
function obtained(Item, Spawn)
|
|
if not HasLanguage(Spawn,4) then
|
|
AddLanguage(Spawn, 4)
|
|
SendMessage(Spawn, "You have learned the basics of the Erudian language.", "White")
|
|
RemoveItem(Spawn, 909)
|
|
end
|
|
|
|
end
|