Thread: Necrotic with full OSRS and 667 data

Page 3 of 5 FirstFirst 12345 LastLast
Results 21 to 30 of 45
  1. #21  
    Working On Something...

    Xterra's Avatar
    Join Date
    Jul 2014
    Posts
    1,118
    Thanks given
    250
    Thanks received
    173
    Rep Power
    99
    thanks for this
    Reply With Quote  
     

  2. #22  
    Endeavor

    Mikey`'s Avatar
    Join Date
    Dec 2007
    Posts
    4,434
    Thanks given
    715
    Thanks received
    1,435
    Rep Power
    1202
    I accidently moved the link into the spoiler when it was reuploaded, the link is on the main page now.
    Reply With Quote  
     

  3. #23  
    Registered Member
    Tyluur's Avatar
    Join Date
    Jun 2010
    Age
    26
    Posts
    5,103
    Thanks given
    1,819
    Thanks received
    1,767
    Rep Power
    2438
    Looks decent, although I don't see any pics of gradle in the media =[.
    Quote Originally Posted by blakeman8192 View Post
    Keep trying. Quitting is the only true failure.
    Spoiler for skrrrrr:

    Attached image
    Reply With Quote  
     

  4. #24  
    Endeavor

    Mikey`'s Avatar
    Join Date
    Dec 2007
    Posts
    4,434
    Thanks given
    715
    Thanks received
    1,435
    Rep Power
    1202
    Quote Originally Posted by Tyluur View Post
    Looks decent, although I don't see any pics of gradle in the media =[.
    server
    Code:
    plugins {
        id 'java'
        id 'war' // Gives access to providedCompile()
    }
    
    java {
        sourceCompatibility = JavaVersion.VERSION_12
        targetCompatibility = JavaVersion.VERSION_12
    }
    
    sourceSets {
        main {
            java {
                srcDir 'src/main/java'
            }
        }
        test {
            java {
                srcDir 'src/test/java'
            }
        }
    }
    
    repositories {
        mavenCentral()
    }
    
    test {
        useJUnitPlatform()
    }
    
    dependencies {
        testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.1'
        testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.1'
    
        compile fileTree(dir: 'lib', include: ['*.jar'])
        providedCompile group: 'org.projectlombok', name: 'lombok', version: '1.16.22'
        compile group: 'org.javacord', name: 'javacord', version: '3.0.4'
        compile group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '2.10.1'
        compile group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: '2.10.1'
        compile group: 'org.jsoup', name: 'jsoup', version: '1.11.3'
    }
    client
    Code:
    apply plugin: 'java'
    
    java {
        sourceCompatibility = JavaVersion.VERSION_1_8
        targetCompatibility = JavaVersion.VERSION_1_8
    }
    
    sourceSets {
        main {
            java {
                srcDir 'src/java/'
            }
            resources {
                srcDir 'src/resources/'
            }
        }
    }
    
    buildscript {
        repositories {
            flatDir dirs: 'proguard/lib'
        }
        dependencies {
            classpath ':proguard'
        }
    }
    
    repositories {
        mavenCentral()
        jcenter()
        maven { url 'https://jitpack.io/' }
    }
    
    dependencies {
        compile fileTree(dir: 'lib', include: ['*.jar'])
        compile 'com.github.MinnDevelopment:java-discord-rpc:v1.3.1'
        compile 'com.github.MinnDevelopment:discord-rpc-release:v3.3.0'
    }
    
    task fatJar(type: Jar) {
        manifest {
            attributes 'Implementation-Title': 'Kandarin Client',
                       'Implementation-Version': 1,
                       'Main-Class': 'org.necrotic.client.Client'
        }
        baseName = 'Kandarin-gamepack-unobfuscated'
        from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
        with jar
    }
    
    task proguard(type: proguard.gradle.ProGuardTask) {
        configuration 'proguard.txt'
        injars '/build/libs/Kandarin-gamepack-unobfuscated.jar'
        outjars '/build/libs/Kandarin-gamepack.jar'
        libraryjars 'proguard/rt.jar'
        printmapping 'obfuscation.map'
    }
    
    task buildjar {
        dependsOn 'fatJar'
        dependsOn 'proguard'
        tasks.findByName('proguard').mustRunAfter 'fatJar'
    }
    I suck at gradle so I hope you didn't expect anything good
    Reply With Quote  
     

  5. #25  
    Registered Member
    Join Date
    Dec 2020
    Posts
    2
    Thanks given
    0
    Thanks received
    0
    Rep Power
    0
    anyone know how to even get started on this? can't seem to get it turned on by using intellij
    Reply With Quote  
     

  6. #26  
    Registered Member
    Tyluur's Avatar
    Join Date
    Jun 2010
    Age
    26
    Posts
    5,103
    Thanks given
    1,819
    Thanks received
    1,767
    Rep Power
    2438
    Quote Originally Posted by Mikey` View Post
    server
    Code:
    plugins {
        id 'java'
        id 'war' // Gives access to providedCompile()
    }
    
    java {
        sourceCompatibility = JavaVersion.VERSION_12
        targetCompatibility = JavaVersion.VERSION_12
    }
    
    sourceSets {
        main {
            java {
                srcDir 'src/main/java'
            }
        }
        test {
            java {
                srcDir 'src/test/java'
            }
        }
    }
    
    repositories {
        mavenCentral()
    }
    
    test {
        useJUnitPlatform()
    }
    
    dependencies {
        testImplementation 'org.junit.jupiter:junit-jupiter-api:5.3.1'
        testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.3.1'
    
        compile fileTree(dir: 'lib', include: ['*.jar'])
        providedCompile group: 'org.projectlombok', name: 'lombok', version: '1.16.22'
        compile group: 'org.javacord', name: 'javacord', version: '3.0.4'
        compile group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '2.10.1'
        compile group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jsr310', version: '2.10.1'
        compile group: 'org.jsoup', name: 'jsoup', version: '1.11.3'
    }
    client
    Code:
    apply plugin: 'java'
    
    java {
        sourceCompatibility = JavaVersion.VERSION_1_8
        targetCompatibility = JavaVersion.VERSION_1_8
    }
    
    sourceSets {
        main {
            java {
                srcDir 'src/java/'
            }
            resources {
                srcDir 'src/resources/'
            }
        }
    }
    
    buildscript {
        repositories {
            flatDir dirs: 'proguard/lib'
        }
        dependencies {
            classpath ':proguard'
        }
    }
    
    repositories {
        mavenCentral()
        jcenter()
        maven { url 'https://jitpack.io/' }
    }
    
    dependencies {
        compile fileTree(dir: 'lib', include: ['*.jar'])
        compile 'com.github.MinnDevelopment:java-discord-rpc:v1.3.1'
        compile 'com.github.MinnDevelopment:discord-rpc-release:v3.3.0'
    }
    
    task fatJar(type: Jar) {
        manifest {
            attributes 'Implementation-Title': 'Kandarin Client',
                       'Implementation-Version': 1,
                       'Main-Class': 'org.necrotic.client.Client'
        }
        baseName = 'Kandarin-gamepack-unobfuscated'
        from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
        with jar
    }
    
    task proguard(type: proguard.gradle.ProGuardTask) {
        configuration 'proguard.txt'
        injars '/build/libs/Kandarin-gamepack-unobfuscated.jar'
        outjars '/build/libs/Kandarin-gamepack.jar'
        libraryjars 'proguard/rt.jar'
        printmapping 'obfuscation.map'
    }
    
    task buildjar {
        dependsOn 'fatJar'
        dependsOn 'proguard'
        tasks.findByName('proguard').mustRunAfter 'fatJar'
    }
    I suck at gradle so I hope you didn't expect anything good
    Haha no worries bro, I'm just glad its getting picked up more .
    Quote Originally Posted by blakeman8192 View Post
    Keep trying. Quitting is the only true failure.
    Spoiler for skrrrrr:

    Attached image
    Reply With Quote  
     

  7. Thankful user:


  8. #27  
    Endeavor

    Mikey`'s Avatar
    Join Date
    Dec 2007
    Posts
    4,434
    Thanks given
    715
    Thanks received
    1,435
    Rep Power
    1202
    Quote Originally Posted by heytexas View Post
    anyone know how to even get started on this? can't seem to get it turned on by using intellij
    https://jcoder.io/content/tutorial/t...-gradle-import
    Reply With Quote  
     

  9. #28  
    Banned

    Join Date
    Mar 2019
    Posts
    297
    Thanks given
    19
    Thanks received
    38
    Rep Power
    0
    Hey Mickey, the cache is not downloading by the client, so naturally I went to the dropbox link and it has been deleted... any change you could re-upload the cache?
    Reply With Quote  
     

  10. #29  
    Endeavor

    Mikey`'s Avatar
    Join Date
    Dec 2007
    Posts
    4,434
    Thanks given
    715
    Thanks received
    1,435
    Rep Power
    1202
    Quote Originally Posted by V View Post
    Hey Mickey, the cache is not downloading by the client, so naturally I went to the dropbox link and it has been deleted... any change you could re-upload the cache?
    There never was a dropbox link, the cache is included in the download.

    I've deleted some unnecessary files from the download and cleared ~200mb.
    Reply With Quote  
     

  11. #30  
    Registered Member
    Join Date
    Aug 2015
    Posts
    6
    Thanks given
    0
    Thanks received
    0
    Rep Power
    0
    i can't run the client in intellij, got the server running fine but can't seem to run client at all
    Reply With Quote  
     

Page 3 of 5 FirstFirst 12345 LastLast

Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. Replies: 1
    Last Post: 06-07-2017, 05:39 PM
  2. Replies: 1
    Last Post: 08-08-2013, 04:03 PM
  3. Replies: 4
    Last Post: 07-01-2013, 01:10 AM
  4. my 525 download with full banking and pm
    By `Michael in forum Downloads
    Replies: 33
    Last Post: 09-23-2009, 04:37 PM
  5. Newest client with full chicken and 1 new npc
    By Zachyboo in forum Downloads
    Replies: 39
    Last Post: 09-17-2007, 09:46 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •