Initial commit

This commit is contained in:
2021-10-16 17:25:28 +02:00
commit 98dd5c66b6
41 changed files with 1484 additions and 0 deletions

13
CBlackjack/CBlackjack.iml Normal file
View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="client" level="project" />
<orderEntry type="module" module-name="Util" />
</component>
</module>

View File

@ -0,0 +1,16 @@
package io.reisub.dreambot.cblackjack;
import io.reisub.dreambot.util.Constants;
import org.dreambot.api.script.Category;
import org.dreambot.api.script.ScriptManifest;
import org.dreambot.api.script.impl.TaskScript;
@SuppressWarnings("unused")
@ScriptManifest(name = "CBlackjack", description = "Pummels and steals", author = Constants.AUTHOR,
version = 1.0, category = Category.THIEVING, image = "")
public class CBlackjack extends TaskScript {
@Override
public void onStart() {
}
}

View File

@ -0,0 +1,4 @@
package io.reisub.dreambot.cblackjack.tasks;
public class ExchangeNotes {
}

View File

@ -0,0 +1,4 @@
package io.reisub.dreambot.cblackjack.tasks;
public class KnockOut {
}

View File

@ -0,0 +1,4 @@
package io.reisub.dreambot.cblackjack.tasks;
public class Pickpocket {
}