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