Skip to content

Commit 20b2b3e

Browse files
committed
Rebrand
1 parent b0553e2 commit 20b2b3e

File tree

18 files changed

+30
-44
lines changed

18 files changed

+30
-44
lines changed

.gitmodules

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[submodule "NetHandler"]
22
path = NetHandler
3-
url = https://github.com/Offline-CheatBreaker/Bukkit-API-NetHandler
3+
url = https://github.com/CheatBreakerNet/Bukkit-API-NetHandler

Examples/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
# Offline CheatBreaker Bukkit API Examples
1+
# CheatBreaker Bukkit API Examples
22
These small examples will help you get started with implementing the CB API into your plugins.
33

44

55
## Reporting an issue
66

7-
If you suspect an issue you can submit one [here](https://github.com/Offline-CheatBreaker/Bukkit-API/issues).
7+
If you suspect an issue you can submit one [here](https://github.com/CheatBreakerNet/Bukkit-API/issues).
88

99
## Get the Source
1010

1111
1. Install maven `sudo apt-get install maven`
1212
2. Verify installation `mvn -v`
13-
3. Clone the repository `git clone https://github.com/Offline-Cheatbreaker/Bukkit-API.git`
13+
3. Clone the repository `git clone https://github.com/CheatBreakerNet/Bukkit-API.git`
1414
4. Navigate to the new folder `cd Bukkit-API/Examples`
1515
5. Navigate to the example directory you want to compile (e.g. `cd cMiniMap`)
1616
6. Create a folder named `lib`
17-
7. Download our [latest API jar file](https://github.com/Offline-CheatBreaker/Bukkit-API/releases/latest)
17+
7. Download our [latest API jar file](https://github.com/CheatBreakerNet/Bukkit-API/releases/latest)
1818
8. Move the `CheatBreakerAPI.jar` file you downloaded to the `lib` folder
1919
9. Import `pom.xml` into your IDE
2020

@@ -26,4 +26,4 @@ If you suspect an issue you can submit one [here](https://github.com/Offline-Che
2626

2727
## Contributing
2828

29-
You can submit a [pull request](https://github.com/Offline-CheatBreaker/Bukkit-API/pulls) with your changes.
29+
You can submit a [pull request](https://github.com/CheatBreakerNet/Bukkit-API/pulls) with your changes.

Examples/cHolograms/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

7-
<groupId>com.offlinecheatbreaker</groupId>
7+
<groupId>net.cheatbreaker</groupId>
88
<artifactId>cHolograms</artifactId>
99
<version>1.0-SNAPSHOT</version>
1010
<packaging>jar</packaging>

Examples/cHolograms/src/main/java/com/offlinecheatbreaker/cholograms/cHolograms.java renamed to Examples/cHolograms/src/main/java/net/cheatbreaker/cholograms/cHolograms.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.offlinecheatbreaker.cholograms;
1+
package net.cheatbreaker.cholograms;
22

33
import com.cheatbreaker.api.CheatBreakerAPI;
44
import org.bukkit.Bukkit;
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: cHolograms
22
version: ${project.version}
3-
main: com.offlinecheatbreaker.cholograms.cHolograms
3+
main: net.cheatbreaker.cholograms.cHolograms
44
api-version: 1.13
55
depend: [ CheatBreakerAPI ]

Examples/cMiniMap/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

7-
<groupId>com.offlinecheatbreaker</groupId>
7+
<groupId>net.cheatbreaker</groupId>
88
<artifactId>cMiniMap</artifactId>
99
<version>1.0-SNAPSHOT</version>
1010
<packaging>jar</packaging>

Examples/cMiniMap/src/main/java/com/offlinecheatbreaker/cminimap/cMiniMap.java renamed to Examples/cMiniMap/src/main/java/net/cheatbreaker/cminimap/cMiniMap.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.offlinecheatbreaker.cminimap;
1+
package net.cheatbreaker.cminimap;
22

33
import com.cheatbreaker.api.CheatBreakerAPI;
44
import com.cheatbreaker.api.object.MinimapStatus;
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: cMiniMap
22
version: ${project.version}
3-
main: com.offlinecheatbreaker.cminimap.cMiniMap
3+
main: net.cheatbreaker.cminimap.cMiniMap
44
api-version: 1.13
55
depend: [ CheatBreakerAPI ]

Examples/cStaffModules/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

7-
<groupId>com.offlinecheatbreaker</groupId>
7+
<groupId>net.cheatbreaker</groupId>
88
<artifactId>cStaffModules</artifactId>
99
<version>1.0-SNAPSHOT</version>
1010
<packaging>jar</packaging>
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.offlinecheatbreaker.cstaffmodules;
1+
package net.cheatbreaker.cstaffmodules;
22

33
import com.cheatbreaker.api.CheatBreakerAPI;
44
import lombok.Getter;
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: cStaffModules
22
version: ${project.version}
3-
main: com.offlinecheatbreaker.cstaffmodules.cStaffModules
3+
main: net.cheatbreaker.cstaffmodules.cStaffModules
44
api-version: 1.13
55
depend: [ CheatBreakerAPI ]

Examples/cWaypoints/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

7-
<groupId>com.offlinecheatbreaker</groupId>
7+
<groupId>net.cheatbreaker</groupId>
88
<artifactId>cWaypoints</artifactId>
99
<version>1.0-SNAPSHOT</version>
1010
<packaging>jar</packaging>

Examples/cWaypoints/src/main/java/com/offlinecheatbreaker/cwaypoints/cWaypoints.java renamed to Examples/cWaypoints/src/main/java/net/cheatbreaker/cwaypoints/cWaypoints.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.offlinecheatbreaker.cwaypoints;
1+
package net.cheatbreaker.cwaypoints;
22

33
import com.cheatbreaker.api.CheatBreakerAPI;
44
import com.cheatbreaker.api.object.CBWaypoint;
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: cWaypoints
22
version: ${project.version}
3-
main: com.offlinecheatbreaker.cwaypoints.cWaypoints
3+
main: net.cheatbreaker.cwaypoints.cWaypoints
44
api-version: 1.13
55
depend: [ CheatBreakerAPI ]

Jenkinsfile

-14
This file was deleted.

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
# CheatBreaker Bukkit API
22

3-
[![Releases](https://img.shields.io/github/release/Offline-CheatBreaker/Bukkit-API.svg)](https://github.com/Offline-Cheatbreaker/Bukkit-API/releases)
4-
[![Issues](https://img.shields.io/github/issues/Offline-CheatBreaker/Bukkit-API)](https://github.com/Offline-CheatBreaker/Bukkit-API/issues)
5-
[![Pull Requests](https://img.shields.io/github/issues-pr/Offline-CheatBreaker/Bukkit-API)](https://github.com/Offline-CheatBreaker/Bukkit-API/pulls)
6-
<a href="https://discord.offlinecheatbreaker.com"><img src="https://discordapp.com/api/guilds/633325309395206156/widget.png?style=shield" alt="Discord Server"></a>
3+
[![Releases](https://img.shields.io/github/release/CheatBreakerNet/Bukkit-API.svg)](https://github.com/CheatBreakerNet/Bukkit-API/releases)
4+
[![Issues](https://img.shields.io/github/issues/CheatBreakerNet/Bukkit-API)](https://github.com/CheatBreakerNet/Bukkit-API/issues)
5+
[![Pull Requests](https://img.shields.io/github/issues-pr/CheatBreakerNet/Bukkit-API)](https://github.com/CheatBreakerNet/Bukkit-API/pulls)
6+
<a href="https://discord.cheatbreaker.net"><img src="https://discordapp.com/api/guilds/633325309395206156/widget.png?style=shield" alt="Discord Server"></a>
77

88
The CheatBreaker API will allow you to detect when a player is running CheatBreaker, enable and disable HUD modules, allow x-ray for your staff, and much more.
99

1010
## Compatibility
1111

1212
This API has been tested with Spigot 1.7.10, PaperSpigot 1.7.10 and mSpigot 1.7.10 (MineHQ Spigot). However, it can work on other/newer versions as well.
1313

14-
This API can detect people on Offline CheatBreaker 1.7.10 and 1.8.9.
14+
This API can detect people on CheatBreaker 1.7.10 and 1.8.9.
1515

1616
## Download
1717

18-
The latest release can be found [here](https://github.com/Offline-Cheatbreaker/Bukkit-API/releases/latest).
18+
The latest release can be found [here](https://github.com/CheatBreakerNet/Bukkit-API/releases/latest).
1919

2020
## Commands
2121

@@ -33,7 +33,7 @@ Example plugins can be found under the [`Examples`](/Examples) folder. Those exa
3333

3434
1. Install maven `sudo apt-get install maven`
3535
2. Verify installation `mvn -v`
36-
3. Clone the repository `git clone [email protected]:Offline-CheatBreaker/Bukkit-API.git`
36+
3. Clone the repository `git clone [email protected]:CheatBreaker/Bukkit-API.git`
3737
4. Navigate to the new folder `cd Bukkit-API`
3838
5. Import `pom.xml` into your IDE
3939

@@ -45,11 +45,11 @@ Example plugins can be found under the [`Examples`](/Examples) folder. Those exa
4545

4646
## Documentation
4747

48-
Documentation can be found on the [wiki pages](https://github.com/Offline-CheatBreaker/Bukkit-API/wiki).
48+
Documentation can be found on the [wiki pages](https://github.com/CheatBreakerNet/Bukkit-API/wiki).
4949

5050
---
5151

52-
**License:** [GNU/GPL v3](https://github.com/Offline-CheatBreaker/Bukkit-API/blob/master/LICENSE)
52+
**License:** [GNU/GPL v3](https://github.com/CheatBreakerNet/Bukkit-API/blob/master/LICENSE)
5353

5454
## Credits
5555

src/main/resources/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ permissions:
66
# Toggles if the server will kick someone for not using CheatBreaker.
77
kick:
88
enabled: true
9-
message: "&cOffline CheatBreaker is required to play on &6&lServer name&r&c!\n&cYou can download it from OfflineCheatBreaker.com"
9+
message: "&cCheatBreaker is required to play on &6&lServer name&r&c!\n&cYou can download it from CheatBreaker.net"
1010

1111
# Toggle if the server should message someone for using CheatBreaker
1212
auth-message:

src/main/resources/plugin.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: ${project.name}
22
version: ${git.commit.id.abbrev}
33
description: CheatBreaker Bukkit API
4-
author: CheatBreaker & Offline CheatBreaker Development Teams
5-
website: https://offlinecheatbreaker.com
4+
author: CheatBreaker Development Team
5+
website: https://cheatbreaker.net
66
main: com.cheatbreaker.api.CheatBreakerAPI
77
load: STARTUP
88
commands:

0 commit comments

Comments
 (0)