Jump to content

jason1337777

Members
  • Posts

    36
  • Joined

  • Last visited

  • Feedback

    0%

Profile Information

  • Gender
    Male

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

jason1337777's Achievements

Bronze Poster

Bronze Poster (2/10)

12

Reputation

  1. Can someone help me or tell me where I went wrong with this lol, I’m relatively new to this but I have a full complete script I just need to finish this part. plugins { id 'java' } version = '0.0.1' sourceCompatibility = JavaVersion.VERSION_11 targetCompatibility = JavaVersion.VERSION_11 ext { pluginName = 'Zulrah' pluginDescription = 'Kills Zulrah for you' osbotVersion = '3.8.0' // Replace with the actual OSBot version you're using } repositories { mavenCentral() maven { url = uri('https://osbot.org/maven') credentials { username = System.getenv('OSBOT_MAVEN_USERNAME') password = System.getenv('OSBOT_MAVEN_PASSWORD') } } } dependencies { implementation "org.osbot:osbot:${osbotVersion}" implementation 'org.projectlombok:lombok:1.18.22' annotationProcessor 'org.projectlombok:lombok:1.18.22' implementation 'org.slf4j:slf4j-api:1.7.32' implementation 'ch.qos.logback:logback-classic:1.2.6' testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1' testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1' } jar { manifest { attributes( 'Plugin-Version': project.version, 'Plugin-Id': pluginName.toLowerCase().replace(' ', '-'), 'Plugin-Name': pluginName, 'Plugin-Description': pluginDescription, 'Main-Class': 'net.unethicalite.plugins.zulrah.UnethicalZulrahPlugin' ) } from { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } } } test { useJUnitPlatform() } tasks.withType(JavaCompile) { options.encoding = 'UTF-8' } task copyJar(type: Copy) { from jar into System.getProperty('user.home') + '/OSBot/Scripts/' } task osbot(type: JavaExec) { main = 'org.osbot.rs07.Boot' classpath = sourceSets.main.runtimeClasspath args = ['-bot', jar.archivePath] } osbot.dependsOn(copyJar) // Ensure OSBot API packages are available sourceSets { main { java { srcDirs 'src/main/java' include 'org/osbot/rs07/**' include 'org/osbot/rs07/api/**' include 'org/osbot/rs07/api/ai/**' include 'org/osbot/rs07/api/map/**' include 'org/osbot/rs07/api/model/**' include 'org/osbot/rs07/api/ui/**' include 'org/osbot/rs07/api/util/**' include 'org/osbot/rs07/canvas/**' include 'org/osbot/rs07/event/**' include 'org/osbot/rs07/input/**' include 'org/osbot/rs07/listener/**' include 'org/osbot/rs07/script/**' include 'org/osbot/rs07/utility/**' } } } Should I have just kept it like this but I assume this is wrong also plugins { id 'java' } version = '0.0.1' ext { pluginName = 'Zulrah' pluginDescription = 'Kills Zulrah for you' } jar { manifest { attributes( 'Plugin-Version': project.version, 'Plugin-Id': pluginName.toLowerCase().replace(' ', '-'), 'Plugin-Name': pluginName, 'Plugin-Description': pluginDescription ) } } repositories { mavenCentral() // Add any other repositories you need } dependencies { // Add your dependencies here // For example: // implementation 'org.osbot:osbot-sdk:1.0.0' }
  2. Hey czar the script isn’t popping up in osbot for me? I did forget to like the thread before you liked my post does that matter?
  3. Hey czar I was wondering if I could trail this and was curious does this support the colossal pouch?
  4. Hey khal could I trail this please and thank you
  5. oh lol i dont even remember trialing this lol guess ill just have to buy it then xd ill message you shortly on discord
  6. Hey Khal is there anyway I could get a trial for this please?
  7. anyone know whats going on with the client as of this morning?
  8. rip i missed the trial lol i just realized i had a notification sorry
  9. Could I trial this please
  10. Could I trial this please?
  11. could i trial this please
×
×
  • Create New...