Initial commit
This commit is contained in:
13
CBlackjack/CBlackjack.iml
Normal file
13
CBlackjack/CBlackjack.iml
Normal 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>
|
16
CBlackjack/src/io/reisub/dreambot/cblackjack/CBlackjack.java
Normal file
16
CBlackjack/src/io/reisub/dreambot/cblackjack/CBlackjack.java
Normal 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() {
|
||||
|
||||
}
|
||||
}
|
@ -0,0 +1,4 @@
|
||||
package io.reisub.dreambot.cblackjack.tasks;
|
||||
|
||||
public class ExchangeNotes {
|
||||
}
|
@ -0,0 +1,4 @@
|
||||
package io.reisub.dreambot.cblackjack.tasks;
|
||||
|
||||
public class KnockOut {
|
||||
}
|
@ -0,0 +1,4 @@
|
||||
package io.reisub.dreambot.cblackjack.tasks;
|
||||
|
||||
public class Pickpocket {
|
||||
}
|
Reference in New Issue
Block a user