добавлены скрипты eluna в докер контейнер

This commit is contained in:
2025-08-21 01:07:42 +04:00
parent 6337968baa
commit bf6283a63e
3 changed files with 11 additions and 1 deletions
-1
View File
@@ -24,7 +24,6 @@
/src/server/scripts/Custom/* /src/server/scripts/Custom/*
!/src/server/scripts/Custom/README.md !/src/server/scripts/Custom/README.md
/*.override.yml
/*.override.yaml /*.override.yaml
!.gitkeep !.gitkeep
+4
View File
@@ -0,0 +1,4 @@
services:
ac-worldserver:
volumes:
- ./lua_scripts:/azerothcore/lua_scripts
+7
View File
@@ -0,0 +1,7 @@
local PLAYER_EVENT_ON_LOGIN = 3
local function OnLogin(event, player)
player:SendBroadcastMessage("Eluna greetings you")
end
RegisterPlayerEvent(PLAYER_EVENT_ON_LOGIN, OnLogin)