mirror of
https://github.com/redstrate/Kawari.git
synced 2025-04-20 06:37:45 +00:00
10 lines
265 B
Lua
10 lines
265 B
Lua
function onBeginLogin(player)
|
|
-- send a welcome message
|
|
player:send_message("Welcome to Kawari!")
|
|
end
|
|
|
|
function doAction(player)
|
|
-- give sprint
|
|
-- commented out because it breaks other stats due to stubs
|
|
--player:give_status_effect(50, 5.0)
|
|
end
|