forked from Ad5001/CodeBlocks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yml
More file actions
47 lines (35 loc) · 1.83 KB
/
Copy pathconfig.yml
File metadata and controls
47 lines (35 loc) · 1.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
---
# Welcome to CodeBlocks config !
# CodeBlocks is a plugin that allows you to execute PHP code when activating the blocks.
activate_on_click: true
activate_on_redstone: true
activate_on_walk: true
activate_on_break: true
# Who can create code blocks? Those who know a password that you will enter below (enter "password"), those who have the permission codeblocks.modify (enter "perm")
# or the ones who have the username listed below ("usernames")
Type: perm
# Password. Only if you specified "password" upper. DO NOT USE SPACES ! You should use underscores ("_") instead
password: "Hey"
# Choose how many times a player can fail at the password. Number of attemps by player will be reset every restart
PasswordAttemps: 5
# Usernames. Only if you specified "usernames" upper.
usernames:
- ExampleOfPlayer
- ChangeThemToYourPlayerUsername
# Security things ! Since it's executing some arbitrary code, please consider enable these functions to protect you're server from hackers that would exploit this plugin to destroy your VPS/Server !
# When these lines are set to true,all function described above them will be disabled.
# Disables directory and file management functions
FileProtection: true
# Exec functions ! **DISABLE THEM !!!!!!!** MIGHT INTRODUCE VIRUSES !
ExecProtection: true
# Loops . You might need to disable them or if they are infinite loops, they CAN crash your server
LoopProtection: true
# Internet connections functions. Those function might cause lag your server and could als introduce viruses into your computer or track your server.
InternetProtection: true
# Exit functions. Those functions stops your server.
ExitProtection: true
# DispatchCommand. This function execute command as someone else !
DispatchCommandProtection: true
# Server functions. This prevent from accessing any data on the Server.
ServerProtection: true
...