Merge pull request #3 from runelite-extended/master

Pull from Upstream
This commit is contained in:
Tyler Bochard
2019-06-17 17:35:15 -04:00
committed by GitHub
10 changed files with 866 additions and 324 deletions

View File

@@ -62,10 +62,12 @@ public class ClanManModePlugin extends Plugin
@Inject @Inject
private ClanManager clanManager; private ClanManager clanManager;
private static final String CAST = "CAST";
private static final String ATTACK_OPTIONS_ATTACK = "ATTACK"; private static final String ATTACK_OPTIONS_ATTACK = "ATTACK";
public static final HashSet<String> ATTACK_OPTIONS_KEYWORDS = new HashSet<>(); public static final HashSet<String> ATTACK_OPTIONS_KEYWORDS = new HashSet<>();
static static
{ {
ATTACK_OPTIONS_KEYWORDS.add(CAST);
ATTACK_OPTIONS_KEYWORDS.add(ATTACK_OPTIONS_ATTACK); ATTACK_OPTIONS_KEYWORDS.add(ATTACK_OPTIONS_ATTACK);
} }

View File

@@ -24,7 +24,6 @@
*/ */
package net.runelite.client.plugins.lizardmenshaman; package net.runelite.client.plugins.lizardmenshaman;
import com.google.common.eventbus.Subscribe;
import com.google.inject.Provides; import com.google.inject.Provides;
import java.util.HashMap; import java.util.HashMap;
import java.util.Map; import java.util.Map;
@@ -36,8 +35,10 @@ import net.runelite.api.Actor;
import net.runelite.api.Client; import net.runelite.api.Client;
import net.runelite.api.coords.LocalPoint; import net.runelite.api.coords.LocalPoint;
import net.runelite.api.events.AnimationChanged; import net.runelite.api.events.AnimationChanged;
import net.runelite.api.events.ChatMessage;
import net.runelite.client.Notifier; import net.runelite.client.Notifier;
import net.runelite.client.config.ConfigManager; import net.runelite.client.config.ConfigManager;
import net.runelite.client.eventbus.Subscribe;
import net.runelite.client.plugins.Plugin; import net.runelite.client.plugins.Plugin;
import net.runelite.client.plugins.PluginDescriptor; import net.runelite.client.plugins.PluginDescriptor;
import net.runelite.client.plugins.PluginType; import net.runelite.client.plugins.PluginType;
@@ -94,6 +95,18 @@ public class LizardmenShamanPlugin extends Plugin
spawns.clear(); spawns.clear();
} }
@Subscribe
public void onChatMessage(ChatMessage event)
{
if (config.notifyOnSpawn())
{
if (event.getMessage().contains(MESSAGE))
{
notifier.notify(MESSAGE);
}
}
}
@Subscribe @Subscribe
public void onAnimationChanged(AnimationChanged event) public void onAnimationChanged(AnimationChanged event)
{ {
@@ -102,17 +115,13 @@ public class LizardmenShamanPlugin extends Plugin
{ {
return; return;
} }
else if (actor.getName().equals(SHAMAN) && actor.getAnimation() == 7157)
if (actor.getName().equals(SHAMAN) && actor.getAnimation() == 7157)
{ {
if (config.showTimer()) if (config.showTimer())
{ {
spawns.put(event.getActor().getLocalLocation(), new LizardmenShamanSpawn(8.4, null)); spawns.put(event.getActor().getLocalLocation(), new LizardmenShamanSpawn(8.4, null));
} }
if (config.notifyOnSpawn())
{
notifier.notify(MESSAGE);
}
} }
} }
} }

View File

@@ -727,8 +727,10 @@ public class MenuEntrySwapperPlugin extends Plugin
{ {
if (event.getType() == WALK.getId()) if (event.getType() == WALK.getId())
{ {
MenuEntry menuEntry = entries[entries.length - 1]; MenuEntry[] menuEntries = client.getMenuEntries();
MenuEntry menuEntry = menuEntries[menuEntries.length - 1];
menuEntry.setType(MenuAction.WALK.getId() + MENU_ACTION_DEPRIORITIZE_OFFSET); menuEntry.setType(MenuAction.WALK.getId() + MENU_ACTION_DEPRIORITIZE_OFFSET);
client.setMenuEntries(menuEntries);
} }
else if (option.equalsIgnoreCase("examine")) else if (option.equalsIgnoreCase("examine"))
{ {
@@ -938,6 +940,11 @@ public class MenuEntrySwapperPlugin extends Plugin
swap(client, "buy-plank", option, target, true); swap(client, "buy-plank", option, target, true);
} }
if (config.claimDynamite() && target.equals("thirus"))
{
swap(client, "claim", option, target, true);
}
if (config.swapTrade()) if (config.swapTrade())
{ {
swap(client, "trade", option, target, true); swap(client, "trade", option, target, true);
@@ -950,11 +957,6 @@ public class MenuEntrySwapperPlugin extends Plugin
swap(client, "claim-slime", option, target, true); swap(client, "claim-slime", option, target, true);
} }
if (config.claimDynamite() && target.contains("Thirus"))
{
swap(client, "claim-dynamite", option, target, true);
}
if (config.swapTravel()) if (config.swapTravel())
{ {
swap(client, "travel", option, target, true); swap(client, "travel", option, target, true);

View File

@@ -105,10 +105,12 @@ public class PvpToolsPlugin extends Plugin
private static final String WALK_HERE = "WALK HERE"; private static final String WALK_HERE = "WALK HERE";
private static final String CANCEL = "CANCEL"; private static final String CANCEL = "CANCEL";
private static final String CAST = "CAST";
private static final String ATTACK_OPTIONS_ATTACK = "ATTACK"; private static final String ATTACK_OPTIONS_ATTACK = "ATTACK";
public static final HashSet<String> ATTACK_OPTIONS_KEYWORDS = new HashSet<>(); public static final HashSet<String> ATTACK_OPTIONS_KEYWORDS = new HashSet<>();
static static
{ {
ATTACK_OPTIONS_KEYWORDS.add(CAST);
ATTACK_OPTIONS_KEYWORDS.add(ATTACK_OPTIONS_ATTACK); ATTACK_OPTIONS_KEYWORDS.add(ATTACK_OPTIONS_ATTACK);
} }

View File

@@ -158,8 +158,6 @@ public class RaidsOverlay extends Overlay
boolean unknownCombat = false; boolean unknownCombat = false;
String puzzles = ""; String puzzles = "";
String roomName = ""; String roomName = "";
if (config.enhanceScouterTitle() || config.scavsBeforeIce() || sharable)
{
for (Room layoutRoom : plugin.getRaid().getLayout().getRooms()) for (Room layoutRoom : plugin.getRaid().getLayout().getRooms())
{ {
int position = layoutRoom.getPosition(); int position = layoutRoom.getPosition();
@@ -241,7 +239,6 @@ public class RaidsOverlay extends Overlay
} }
scavsBeforeIceRooms.add(prev); scavsBeforeIceRooms.add(prev);
} }
}
int lastScavs = scavRooms.get(scavRooms.size() - 1); int lastScavs = scavRooms.get(scavRooms.size() - 1);
panelComponent.getChildren().add(TitleComponent.builder() panelComponent.getChildren().add(TitleComponent.builder()
.text(displayLayout) .text(displayLayout)

View File

@@ -1,3 +1,27 @@
/*
* Copyright (c) 2019, gazivodag <https://github.com/gazivodag>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package net.runelite.client.plugins.runedoku; package net.runelite.client.plugins.runedoku;
import java.awt.Color; import java.awt.Color;

View File

@@ -1,3 +1,27 @@
/*
* Copyright (c) 2019, gazivodag <https://github.com/gazivodag>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package net.runelite.client.plugins.runedoku; package net.runelite.client.plugins.runedoku;
import java.awt.Color; import java.awt.Color;
@@ -137,6 +161,8 @@ class RunedokuUtil
} }
item = sudokuScreen.getWidgetItem(myIndex); item = sudokuScreen.getWidgetItem(myIndex);
if (item != null) if (item != null)
{
if (item.getId() != -1)
{ {
myArr[i][ii] = RunedokuPiece.getById(item.getId()).getPieceForSudoku(); myArr[i][ii] = RunedokuPiece.getById(item.getId()).getPieceForSudoku();
} }
@@ -145,6 +171,11 @@ class RunedokuUtil
myArr[i][ii] = 0; myArr[i][ii] = 0;
} }
} }
else
{
myArr[i][ii] = 0;
}
}
} }
return myArr; return myArr;
} }

View File

@@ -252,6 +252,7 @@ public class RuneLitePlusPlugin extends Plugin
{ {
if (client.getWidget(WidgetID.BANK_PIN_GROUP_ID, 0) == null if (client.getWidget(WidgetID.BANK_PIN_GROUP_ID, 0) == null
|| !client.getWidget(WidgetInfo.BANK_PIN_TOP_LEFT_TEXT).getText().equals("Bank of Gielinor") || !client.getWidget(WidgetInfo.BANK_PIN_TOP_LEFT_TEXT).getText().equals("Bank of Gielinor")
&& !client.getWidget(WidgetInfo.BANK_PIN_TOP_LEFT_TEXT).getText().equals("Chambers of Xeric")
&& !client.getWidget(WidgetInfo.BANK_PIN_TOP_LEFT_TEXT).getText().equals("Grand Exchange") && !client.getWidget(WidgetInfo.BANK_PIN_TOP_LEFT_TEXT).getText().equals("Grand Exchange")
&& !client.getWidget(WidgetInfo.BANK_PIN_TOP_LEFT_TEXT).getText().equals("Housing Security System")) && !client.getWidget(WidgetInfo.BANK_PIN_TOP_LEFT_TEXT).getText().equals("Housing Security System"))
{ {

View File

@@ -39,7 +39,7 @@ import net.runelite.client.plugins.PluginType;
* Shift Walker Plugin. Credit to MenuEntrySwapperPlugin for code some code structure used here. * Shift Walker Plugin. Credit to MenuEntrySwapperPlugin for code some code structure used here.
*/ */
@PluginDescriptor( @PluginDescriptor(
name = "Shift To Walk", name = "Shift Walk Under",
description = "Use Shift to toggle the Walk Here menu option. While pressed you will Walk rather than interact with objects.", description = "Use Shift to toggle the Walk Here menu option. While pressed you will Walk rather than interact with objects.",
tags = {"npcs", "items", "objects"}, tags = {"npcs", "items", "objects"},
type = PluginType.UTILITY, type = PluginType.UTILITY,

File diff suppressed because it is too large Load Diff