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

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 {
}