This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.main; | |
import javax.swing.*; | |
import java.awt.*; | |
import java.awt.event.*; | |
import java.util.ArrayList; | |
import java.util.Random; | |
/** | |
* Created by Lucas on 31/05/2017. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package Bulby; | |
import Bulby.io.FileManager; | |
import Bulby.io.Frames; | |
import Bulby.io.Login; | |
import Bulby.io.Packets; | |
import Bulby.npcs.NPC; | |
import Bulby.npcs.combat.NPCPlayerCombat; | |
import Bulby.npcs.loading.LoadNPCLists; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package Bulby; | |
import Bulby.io.FileManager; | |
import Bulby.io.Frames; | |
import Bulby.io.Login; | |
import Bulby.io.Packets; | |
import Bulby.npcs.NPC; | |
import Bulby.npcs.combat.NPCPlayerCombat; | |
import Bulby.npcs.loading.LoadNPCLists; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package Bulby; | |
import Bulby.io.FileManager; | |
import Bulby.io.Frames; | |
import Bulby.io.Login; | |
import Bulby.io.Packets; | |
import Bulby.npcs.NPC; | |
import Bulby.npcs.combat.NPCPlayerCombat; | |
import Bulby.npcs.loading.LoadNPCLists; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package wc_teste; | |
import com.runemate.game.api.script.framework.task.TaskBot; | |
import wc_teste.tasks.Chop; | |
import wc_teste.tasks.Drop; | |
/** | |
* Created by Lucas on 14/07/2017. | |
*/ | |
public class Main extends TaskBot { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package bm_jadinkos_firemaker; | |
import bm_jadinkos_firemaker.tasks.FireVines; | |
import bm_jadinkos_firemaker.tasks.GetVines; | |
import com.runemate.game.api.script.framework.task.TaskBot; | |
/** | |
* Created by Lucas on 13/07/2017. | |
*/ | |
public class Main extends TaskBot { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main; | |
import main.puzzle.Position; | |
/** | |
* Created by Lucas on 25/07/2017. | |
*/ | |
public interface CaleSteps { | |
Position[] getWhiteEdgesTriad(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main; | |
import java.util.ArrayList; | |
import java.util.Arrays; | |
public class StringCutter { | |
public static String[] cutted(String source, int power){ | |
//System.out.println("Cortando a String \"" + source + "\" em " + power + " em " + power + " unidade(s)..."); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* To change this license header, choose License Headers in Project Properties. | |
* To change this template file, choose Tools | Templates | |
* and open the template in the editor. | |
*/ | |
/** | |
* | |
* @author lucas | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package bm_chins_2.tasks; | |
import com.prime.api.extension.game.hybrid.local.Interaction; | |
import com.runemate.game.api.hybrid.Environment; | |
import com.runemate.game.api.hybrid.entities.GameObject; | |
import com.runemate.game.api.hybrid.local.Skill; | |
import com.runemate.game.api.hybrid.local.hud.interfaces.Inventory; | |
import com.runemate.game.api.hybrid.local.hud.interfaces.SpriteItem; | |
import com.runemate.game.api.hybrid.location.Coordinate; | |
import com.runemate.game.api.hybrid.location.navigation.basic.PredefinedPath; |