myitinos hace 5 años
padre
commit
065244441f
Se han modificado 3 ficheros con 44 adiciones y 14 borrados
  1. +10
    -0
      .drone.yml
  2. +20
    -14
      README.md
  3. +14
    -0
      build-image.sh

+ 10
- 0
.drone.yml Ver fichero

@ -0,0 +1,10 @@
pipeline:
build-docker:
image: docker:18.06.1-ce
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
- chmod +x ./build-image.sh
- ./build-image.sh
when:
event: [push]

+ 20
- 14
README.md Ver fichero

@ -1,18 +1,24 @@
# HackTheGame v0.0.2
## Decription
Hello Guys! This is v0.0.2, there are some improvement over the last version:
+ Added Save/Load System
+ Added Inn (Restore HP and Save)
+ Added Simple Fighting
+ Added Some Monster
+ Added Boss "Flag Guardian"
# HackTheGame-v002
## Instruction
- Deploy pake docker
- Binary bisa di taruh di soal / GDrive
Because of some problem I need to disable offline playing and now it's only available online at:
nc 192.168.0.1 8080
## Category
Joy
## Dependencies
## Desription
The game is progessing quite nicely,
now you can fight some monster.
This repo depends on:
And maybe if you level up enough
you could defeat the Final Boss
"The Flag Guardian"
### cpp-base64
here: https://github.com/ReneNyffenegger/cpp-base64
Author: Leonardo
## Flag
GKSK{H0w_d1d_I_n0t_real1ze_such_4_s7up1d_m1sT4k3}
## Difficulty
Easy

+ 14
- 0
build-image.sh Ver fichero

@ -0,0 +1,14 @@
#!/bin/sh
set -e
set -o xtrace
IMAGE_NAME=HackTheGame-v002
# clean old images
OLD_IMAGES=$(docker images $IMAGE_NAME -q --no-trunc)
if [ -n "${OLD_IMAGES}" ]; then
docker rmi -f ${OLD_IMAGES};
fi
#Build Images
docker build . -t $IMAGE_NAME

Cargando…
Cancelar
Guardar