mirror of
https://github.com/2006-Scape/2006Scape.git
synced 2026-07-02 16:49:03 +00:00
[GH-ISSUE #257] Rares/Other Items #13537
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Sch4ff3r on GitHub (Dec 10, 2019).
Original GitHub issue: https://github.com/2006-Scape/2006Scape/issues/257
Bunny ears when wore, goes into weapon slot. Instead of going into helmet slot.
Bearmask equips as a weapon instead of a helmet.
@Gptaqbc commented on GitHub (Dec 10, 2019):
This should work (Same fix for the bunny ears):
For bearmask: add 'Bearmask' in this method: private static String[] fullmask
in: Item.java
at line ~148
Like that:
private static String[] fullmask = { "full helm(t)", "full helm(g)", "full helm", "mask", "Verac's helm",
"Guthan's helm", "Karil's coif", "mask", "Torag's helm", "Void", "helmet",
"sallet", "Facemask", "Bearmask" };
Make sure you type it correctly or else it wont work.
Also add the ID of the item to this array:
@Gptaqbc commented on GitHub (Dec 10, 2019):
I think the yo-yo issue should have its own thread because it's not the same fix needed. Let me know if you split the issues, I'll delete this comment. :)
@Sch4ff3r commented on GitHub (Dec 10, 2019):
New issue made for yo-yo
@Sch4ff3r commented on GitHub (Dec 10, 2019):
https://i.gyazo.com/c63646ffdbb975c8b129cff13fcb0479.png
@Gptaqbc commented on GitHub (Dec 10, 2019):
Can't open the gyazo at work.
@DPSCryptic commented on GitHub (Dec 10, 2019):
shows the bear mask in weapon slot with the full mask code besides it
@Gptaqbc commented on GitHub (Dec 10, 2019):
So my fix isn't working?
@DPSCryptic commented on GitHub (Dec 10, 2019):
and i think full mask means it covers the whole face.
think it doesnt mean its head slot, think --> public static int hats[] <-- is for head slot
@Gptaqbc commented on GitHub (Dec 10, 2019):
Bear mask is a full mask though, that's why we add it there.
@DPSCryptic commented on GitHub (Dec 10, 2019):
im not saying it doesnt :P it should be like that
@Gptaqbc commented on GitHub (Dec 11, 2019):
Done