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