mirror of
https://github.com/emagi/eq2emu-content
synced 2026-08-12 20:23:03 -04:00
15 lines
No EOL
358 B
Lua
Executable file
15 lines
No EOL
358 B
Lua
Executable file
--[[
|
|
Script Name : Thexian Language Primer
|
|
Script Purpose :
|
|
Script Author :
|
|
Script Date : 3/1/2021
|
|
Script Notes :
|
|
--]]
|
|
|
|
function obtained(Item, Spawn)
|
|
if not HasLanguage(Spawn,2) then
|
|
AddLanguage(Spawn, 2)
|
|
SendMessage(Spawn, "You have learned the basics of the Thexian language.", "White")
|
|
RemoveItem(Spawn, 910)
|
|
end
|
|
end |