Initial commit
This commit is contained in:
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