From 501ae383bb245c8346dffae3d0098d78a2276b84 Mon Sep 17 00:00:00 2001 From: RayanKazmi <103215438+RayanKazmi@users.noreply.github.com> Date: Sat, 8 Apr 2023 10:49:38 -0400 Subject: [PATCH 1/7] Update config.json --- config.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config.json b/config.json index bd474a8b..eecaa475 100644 --- a/config.json +++ b/config.json @@ -1,5 +1,5 @@ { - "ip":"YOUR_ATERNOS_SERVER_IP", - "port": "YOUR_ATERNOS_SERVER_PORT", - "name": "BOT_NAME" + "ip":"DreamSpacex.aternos.me", + "port": "49429", + "name": "DreamspaceBot" } From 6d87d91d6e14dc565d0c4022a523cb52ff6581ca Mon Sep 17 00:00:00 2001 From: RayanKazmi <103215438+RayanKazmi@users.noreply.github.com> Date: Sat, 8 Apr 2023 12:10:32 -0400 Subject: [PATCH 2/7] Add .circleci/config.yml --- .circleci/config.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 00000000..37edaacb --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,21 @@ +# This config is equivalent to both the '.circleci/extended/orb-free.yml' and the base '.circleci/config.yml' +version: 2.1 + +# Orbs are reusable packages of CircleCI configuration that you may share across projects, enabling you to create encapsulated, parameterized commands, jobs, and executors that can be used across multiple projects. +# See: https://circleci.com/docs/2.0/orb-intro/ +orbs: + node: circleci/node@4.7 + +# Invoke jobs via workflows +# See: https://circleci.com/docs/2.0/configuration-reference/#workflows +workflows: + sample: # This is the name of the workflow, feel free to change it to better match your workflow. + # Inside the workflow, you define the jobs you want to run. + jobs: + - node/test: + # This is the node version to use for the `cimg/node` tag + # Relevant tags can be found on the CircleCI Developer Hub + # https://circleci.com/developer/images/image/cimg/node + version: '16.10' + # If you are using yarn, change the line below from "npm" to "yarn" + pkg-manager: npm From b388c604869afdbe888ada39b4c50649f8606f6c Mon Sep 17 00:00:00 2001 From: RayanKazmi <103215438+RayanKazmi@users.noreply.github.com> Date: Sat, 8 Apr 2023 12:15:07 -0400 Subject: [PATCH 3/7] Add .circleci/config.yml --- .circleci/config.yml | 37 +++++++++++++++++++++---------------- 1 file changed, 21 insertions(+), 16 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 37edaacb..4175da6c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,21 +1,26 @@ -# This config is equivalent to both the '.circleci/extended/orb-free.yml' and the base '.circleci/config.yml' +# Use the latest 2.1 version of CircleCI pipeline process engine. +# See: https://circleci.com/docs/configuration-reference version: 2.1 -# Orbs are reusable packages of CircleCI configuration that you may share across projects, enabling you to create encapsulated, parameterized commands, jobs, and executors that can be used across multiple projects. -# See: https://circleci.com/docs/2.0/orb-intro/ -orbs: - node: circleci/node@4.7 +# Define a job to be invoked later in a workflow. +# See: https://circleci.com/docs/configuration-reference/#jobs +jobs: + say-hello: + # Specify the execution environment. You can specify an image from Docker Hub or use one of our convenience images from CircleCI's Developer Hub. + # See: https://circleci.com/docs/configuration-reference/#executor-job + docker: + - image: cimg/base:stable + # Add steps to the job + # See: https://circleci.com/docs/configuration-reference/#steps + steps: + - checkout + - run: + name: "Say hello" + command: "echo Hello, World!" -# Invoke jobs via workflows -# See: https://circleci.com/docs/2.0/configuration-reference/#workflows +# Orchestrate jobs using workflows +# See: https://circleci.com/docs/configuration-reference/#workflows workflows: - sample: # This is the name of the workflow, feel free to change it to better match your workflow. - # Inside the workflow, you define the jobs you want to run. + say-hello-workflow: jobs: - - node/test: - # This is the node version to use for the `cimg/node` tag - # Relevant tags can be found on the CircleCI Developer Hub - # https://circleci.com/developer/images/image/cimg/node - version: '16.10' - # If you are using yarn, change the line below from "npm" to "yarn" - pkg-manager: npm + - say-hello From 711b085bc2b2b59d13e8a98c2ee04e1f9f9ef6a1 Mon Sep 17 00:00:00 2001 From: RayanKazmi <103215438+RayanKazmi@users.noreply.github.com> Date: Sat, 8 Apr 2023 12:16:59 -0400 Subject: [PATCH 4/7] Add files via upload --- .circleci/config.yml | 56 ++++++++++++++++++++++++-------------------- 1 file changed, 30 insertions(+), 26 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4175da6c..714c862b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,26 +1,30 @@ -# Use the latest 2.1 version of CircleCI pipeline process engine. -# See: https://circleci.com/docs/configuration-reference -version: 2.1 - -# Define a job to be invoked later in a workflow. -# See: https://circleci.com/docs/configuration-reference/#jobs -jobs: - say-hello: - # Specify the execution environment. You can specify an image from Docker Hub or use one of our convenience images from CircleCI's Developer Hub. - # See: https://circleci.com/docs/configuration-reference/#executor-job - docker: - - image: cimg/base:stable - # Add steps to the job - # See: https://circleci.com/docs/configuration-reference/#steps - steps: - - checkout - - run: - name: "Say hello" - command: "echo Hello, World!" - -# Orchestrate jobs using workflows -# See: https://circleci.com/docs/configuration-reference/#workflows -workflows: - say-hello-workflow: - jobs: - - say-hello +############################################################ +# +------------------------------------------------------+ # +# | AntiLagSystem v1.1 Beta by Niklas409 | # +# +------------------------------------------------------+ # +############################################################ + +Config: +#Gib ein Prefix für das Plugin an. + Prefix: '&4&lAntiLagSystem &8» &r' +#Gib eine Nachricht an die kommt, wenn ein Spieler die benötigten Rechte nicht hat. + NoPerms: '&cDazu hast du keine Rechte!' +#Soll das Plugin Items auf dem Boden nach Zeit entfernen? // Ja [oder] Nein + ClearItems: 'Ja' +#Soll das Plugin Mobs nach Zeit entfernen? // Ja [oder] Nein + ClearMobs: 'Nein' +#Was soll bei Stufe 1 deaktiviert werden? [Unter 15 TPS] + Fly: 'Ja' + Fallschaden: 'Ja' +#Welche Plugins sollen bei Stufe 2 deaktiviert werden? (Müssen bei Ja auf dem Server sein) [Unter 10 TPS] + EchoPet: 'Nein' + SuperTrails: 'Nein' +#Welche Befehle sollen bei Stufe 2 deaktiviert werden? [Unter 10 TPS] + StartKick: 'Ja' + mutep: 'Ja' + tpa: 'Ja' + tp: 'Ja' +#Was soll bei Stufe 3 deaktiviert werden? [Unter 5 TPS] + Redstone: 'Ja' +#Welche Befehle sollen bei Stufe 3 deaktiviert werden? [Unter 5 TPS] + MSG: 'Ja' \ No newline at end of file From fc8610c193aef89a1aefc2b852d69c73e268142d Mon Sep 17 00:00:00 2001 From: RayanKazmi <103215438+RayanKazmi@users.noreply.github.com> Date: Sat, 8 Apr 2023 12:17:27 -0400 Subject: [PATCH 5/7] Add .circleci/config.yml --- .circleci/config.yml | 51 ++++++++++++++++++-------------------------- 1 file changed, 21 insertions(+), 30 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 714c862b..37edaacb 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,30 +1,21 @@ -############################################################ -# +------------------------------------------------------+ # -# | AntiLagSystem v1.1 Beta by Niklas409 | # -# +------------------------------------------------------+ # -############################################################ - -Config: -#Gib ein Prefix für das Plugin an. - Prefix: '&4&lAntiLagSystem &8» &r' -#Gib eine Nachricht an die kommt, wenn ein Spieler die benötigten Rechte nicht hat. - NoPerms: '&cDazu hast du keine Rechte!' -#Soll das Plugin Items auf dem Boden nach Zeit entfernen? // Ja [oder] Nein - ClearItems: 'Ja' -#Soll das Plugin Mobs nach Zeit entfernen? // Ja [oder] Nein - ClearMobs: 'Nein' -#Was soll bei Stufe 1 deaktiviert werden? [Unter 15 TPS] - Fly: 'Ja' - Fallschaden: 'Ja' -#Welche Plugins sollen bei Stufe 2 deaktiviert werden? (Müssen bei Ja auf dem Server sein) [Unter 10 TPS] - EchoPet: 'Nein' - SuperTrails: 'Nein' -#Welche Befehle sollen bei Stufe 2 deaktiviert werden? [Unter 10 TPS] - StartKick: 'Ja' - mutep: 'Ja' - tpa: 'Ja' - tp: 'Ja' -#Was soll bei Stufe 3 deaktiviert werden? [Unter 5 TPS] - Redstone: 'Ja' -#Welche Befehle sollen bei Stufe 3 deaktiviert werden? [Unter 5 TPS] - MSG: 'Ja' \ No newline at end of file +# This config is equivalent to both the '.circleci/extended/orb-free.yml' and the base '.circleci/config.yml' +version: 2.1 + +# Orbs are reusable packages of CircleCI configuration that you may share across projects, enabling you to create encapsulated, parameterized commands, jobs, and executors that can be used across multiple projects. +# See: https://circleci.com/docs/2.0/orb-intro/ +orbs: + node: circleci/node@4.7 + +# Invoke jobs via workflows +# See: https://circleci.com/docs/2.0/configuration-reference/#workflows +workflows: + sample: # This is the name of the workflow, feel free to change it to better match your workflow. + # Inside the workflow, you define the jobs you want to run. + jobs: + - node/test: + # This is the node version to use for the `cimg/node` tag + # Relevant tags can be found on the CircleCI Developer Hub + # https://circleci.com/developer/images/image/cimg/node + version: '16.10' + # If you are using yarn, change the line below from "npm" to "yarn" + pkg-manager: npm From eaaedd890fbb4ee4e91716e03a2432f745850e92 Mon Sep 17 00:00:00 2001 From: RayanKazmi <103215438+RayanKazmi@users.noreply.github.com> Date: Sat, 8 Apr 2023 12:20:56 -0400 Subject: [PATCH 6/7] Add .circleci/config.yml From dc9a5d6ed228fa6dca76b7dc6fbd09a66cc828a7 Mon Sep 17 00:00:00 2001 From: RayanKazmi <103215438+RayanKazmi@users.noreply.github.com> Date: Sat, 8 Apr 2023 12:25:53 -0400 Subject: [PATCH 7/7] Add .circleci/config.yml