Testing is good

This commit is contained in:
ceikry
2021-06-24 21:31:01 -05:00
parent 3731edfff4
commit fe81487a1c
3 changed files with 6 additions and 6 deletions
@@ -18,6 +18,7 @@ import core.plugin.PluginManifest;
import core.plugin.PluginType;
import rs09.game.content.dialogue.DialogueFile;
import rs09.game.content.dialogue.EmptyPlugin;
import rs09.game.system.SystemLogger;
import rs09.game.system.config.ItemConfigParser;
import java.util.ArrayList;
@@ -553,6 +554,7 @@ public final class DialogueInterpreter {
* @param objects The arguments.
*/
public void sendInput(boolean string, Object... objects) {
SystemLogger.logInfo("Sending runscript");
player.getPacketDispatch().sendRunScript(string ? 109 : 108, "s", objects);
}
+1 -2
View File
@@ -128,12 +128,11 @@ object ContentAPI {
else -> throw IllegalStateException("Invalid value passed for item")
}
when(container){
return when(container){
Container.INVENTORY -> player.inventory.remove(it)
Container.BANK -> player.bank.remove(it)
Container.EQUIPMENT -> player.equipment.remove(it)
}
return false
}
/**
@@ -10,6 +10,7 @@ import org.rs09.consts.Components
import org.rs09.consts.Items
import rs09.game.interaction.InteractionListener
import rs09.game.interaction.InterfaceListener
import rs09.game.system.SystemLogger
class SilverInterface : InterfaceListener() {
@@ -58,10 +59,7 @@ class SilverInterface : InterfaceListener() {
if(amt == -1) ContentAPI.sendInputDialogue(player, true, "Enter the amount:"){value ->
make(player,product,value as Int)
}
make(player, product, amt)
} else make(player, product, amt)
return@on true
}
}
@@ -82,6 +80,7 @@ class SilverInterface : InterfaceListener() {
if(product == SilverProduct.UNBLESSED && player.location.withinDistance(ContentAPI.location(3226,3254,0))){
player.achievementDiaryManager.finishTask(player, DiaryType.LUMBRIDGE, 2, 8)
}
delay = 3
} else return true
amt--