forked from metin2/server
Compare commits
58 Commits
Author | SHA1 | Date |
---|---|---|
Exynox | 48ee253534 | |
Exynox | 27108d629a | |
Exynox | 175816c81d | |
Tr0n | b15eb7f3fe | |
Tr0n | 3a8d9e38e8 | |
Tr0n | 4074c3b96a | |
Tr0n | 854fef68e8 | |
Tr0n | cf66bb3310 | |
Tr0n | 254f6f6664 | |
Tr0n | 0072bc5e14 | |
Tr0n | 62f3635b86 | |
Tr0n | 2c37b2009d | |
Tr0n | e0701ed5bd | |
Tr0n | 21381a4e3a | |
Tr0n | ba44269071 | |
Tr0n | f5ccb17736 | |
Tr0n | bb52a57ffc | |
Tr0n | 8360d6939f | |
Tr0n | 1e362d8507 | |
Tr0n | 0a907f41d2 | |
Tr0n | dbcabd7fa9 | |
Exynox | fcc2a9e4a0 | |
Tr0n | 12b6abf373 | |
Tr0n | e1daa48366 | |
Exynox | 83707434ee | |
Exynox | 042414a499 | |
Tr0n | 68c7c4bc4f | |
Tr0n | eafbee616f | |
Tr0n | 026cb861a8 | |
Tr0n | 1ba21fb1f9 | |
Tr0n | 8fede9a1df | |
Tr0n | dfb3d08998 | |
Tr0n | 326c134f9e | |
Tr0n | 9b7536ee9a | |
Tr0n | 9056f6c6c6 | |
Tr0n | 8685b02fdc | |
Tr0n | 341bef9aba | |
sdgmt2 | 8a1acefeeb | |
sdgmt2 | eacc808366 | |
sdgmt2 | 4a1460f36e | |
sdgmt2 | aae9b169df | |
sdgmt2 | dd74eafc24 | |
sdgmt2 | d471d99a24 | |
sdgmt2 | 350fb0d424 | |
sdgmt2 | 869720f9e6 | |
sdgmt2 | 4fc612552a | |
sdgmt2 | 248205ae01 | |
sdgmt2 | 82317e6c4d | |
Exynox | 847ab2ef89 | |
Exynox | ebc479b7df | |
Exynox | 1ee687f269 | |
Exynox | d85ef28eac | |
Exynox | 01cc27a7df | |
Exynox | 72b495c03c | |
Exynox | 0c86f802ca | |
Exynox | 05a1406c7c | |
Exynox | 00c5634c09 | |
Exynox | 42079d56b7 |
|
@ -10,9 +10,9 @@ Dockerfile
|
|||
.gitkeep
|
||||
|
||||
# Compiled quests
|
||||
gamefiles/locale/english/quest/object/
|
||||
gamefiles/locale/english/quest/pre_qc/
|
||||
gamefiles/locale/english/quest/qc
|
||||
gamefiles/data/quest/object/
|
||||
gamefiles/data/quest/pre_qc/
|
||||
gamefiles/data/quest/qc
|
||||
|
||||
# Test folder
|
||||
test/
|
|
@ -1,6 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="Encoding">
|
||||
<file url="PROJECT" charset="EUC-KR" />
|
||||
</component>
|
||||
</project>
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"cmake.configureOnOpen": true
|
||||
}
|
|
@ -1,6 +1,11 @@
|
|||
FROM ubuntu:22.04 as build
|
||||
WORKDIR /app
|
||||
|
||||
# Set up the CMake repository
|
||||
RUN apt-get update && apt-get install -y ca-certificates gpg wget
|
||||
RUN wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | gpg --dearmor - | tee /usr/share/keyrings/kitware-archive-keyring.gpg >/dev/null
|
||||
RUN echo 'deb [signed-by=/usr/share/keyrings/kitware-archive-keyring.gpg] https://apt.kitware.com/ubuntu/ jammy main' | tee /etc/apt/sources.list.d/kitware.list >/dev/null
|
||||
|
||||
# Update the system and install various dependencies
|
||||
RUN apt-get update && \
|
||||
apt-get install -y git cmake ninja-build build-essential tar curl zip unzip pkg-config autoconf python3 \
|
||||
|
@ -35,7 +40,7 @@ COPY --from=build /app/build/src/quest/qc /bin/qc
|
|||
COPY ./gamefiles/ .
|
||||
|
||||
# Compile the quests
|
||||
RUN cd /app/locale/english/quest && python2 make.py
|
||||
RUN cd /app/data/quest && python2 make.py
|
||||
|
||||
# Symlink the configuration files
|
||||
RUN ln -s "./conf/CMD" "CMD"
|
||||
|
|
|
@ -41,8 +41,6 @@ tstr IMPLEMENTOR
|
|||
tint IMPLEMENTOR
|
||||
tcon IMPLEMENTOR
|
||||
mob_ld IMPLEMENTOR
|
||||
pcbang_check IMPLEMENTOR
|
||||
pcbang_update IMPLEMENTOR
|
||||
setqf IMPLEMENTOR
|
||||
delqf IMPLEMENTOR
|
||||
effect IMPLEMENTOR
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue