mirror of
https://github.com/otland/forgottenserver
synced 2026-08-15 16:32:07 -04:00
7 lines
133 B
Lua
7 lines
133 B
Lua
local handler = PacketHandler(0xEE)
|
|
|
|
function handler.onReceive(player, msg)
|
|
player:say("hi", TALKTYPE_SAY)
|
|
end
|
|
|
|
handler:register()
|