diff --git a/readme.md b/readme.md
index 6ac757c0..c1dbc1d2 100644
--- a/readme.md
+++ b/readme.md
@@ -2,10 +2,17 @@
## Dependency
+Latest version:
+[  ](https://bintray.com/bluefireoly/KSpigot/KSpigot/_latestVersion)
+
+
+Gradle (Kotlin-Script)
+
+
**The repository:**
```kotlin
repository {
- maven("https://dl.bintray.com/bluefireoly/KSpigot")
+ jcenter()
}
```
@@ -17,8 +24,55 @@ dependencies {
}
```
-Latest version:
-[  ](https://bintray.com/bluefireoly/KSpigot/KSpigot/_latestVersion)
+
+
+
+
+Gradle (Groovy)
+
+
+**The repository:**
+```groovy
+repository {
+ jcenter()
+}
+```
+
+**The dependency:**
+
+```groovy
+dependencies {
+ implementation 'net.axay:KSpigot:VERSION_HERE'
+}
+```
+
+
+
+
+
+Maven
+
+
+**The repository:**
+```xml
+
+ jcenter
+ jcenter
+ https://jcenter.bintray.com
+
+```
+
+**The dependency:**
+```xml
+
+ net.axay
+ KSpigot
+ VERSION_HERE
+
+```
+
+
+
## About
@@ -130,7 +184,7 @@ val wand = itemStack(Material.GOLD_BLOCK) {
#### For complex chat components
```kotlin
-chatComponent {
+val component = chatComponent {
text("You got a friend request! ") {
color = col("#4FEA40")
@@ -249,4 +303,10 @@ listener.register(plugin)
listener.unregister()
```
+### Structures
+
+Tutorial coming soon...
+
+
+
> Any questions? Feel free to contact me!
\ No newline at end of file