mirror of
https://github.com/2006-Scape/2006Scape.git
synced 2026-07-03 00:31:51 +00:00
[Mage Training Arena] Enchanting, and some other stuff (#507)
* Handle some more stairs... * Remove message sent to player * Bolts/Tips making * Tidy up * Free alchs occasionally within training arena * [Mage Training Arena] Enchanting * Remove enchanting room specific items when leaving area
This commit is contained in:
@@ -13,6 +13,7 @@ import com.rs2.game.content.skills.fletching.ArrowMaking;
|
||||
import com.rs2.game.content.skills.fletching.LogCutting;
|
||||
import com.rs2.game.content.skills.fletching.LogCuttingInterface;
|
||||
import com.rs2.game.content.skills.fletching.Stringing;
|
||||
import com.rs2.game.content.skills.fletching.TipMaking;
|
||||
import com.rs2.game.content.skills.herblore.GrindingAction;
|
||||
import com.rs2.game.content.skills.herblore.Herblore;
|
||||
import com.rs2.game.content.skills.prayer.Ectofuntus;
|
||||
@@ -123,6 +124,7 @@ public class UseItem {
|
||||
LogCuttingInterface.handleItemOnItem(player, itemUsed, useWith);
|
||||
ArrowMaking.makeArrow(player, itemUsed, useWith);
|
||||
Stringing.StringBow(player, itemUsed, useWith);
|
||||
TipMaking.makeTips(player, itemUsed, useWith);
|
||||
WeaponPoison.execute(player, itemUsed, useWith);
|
||||
player.getGlassBlowing().ItemOnItem(itemUsed, useWith);
|
||||
//CapeDye.execute(c, itemUsed, useWith);
|
||||
@@ -381,14 +383,8 @@ public class UseItem {
|
||||
}
|
||||
}
|
||||
|
||||
switch (itemUsed) {
|
||||
|
||||
default:
|
||||
if (player.playerRights == 3) {
|
||||
Misc.println("Player used Item id: " + itemUsed
|
||||
+ " with Item id: " + useWith);
|
||||
}
|
||||
break;
|
||||
if (player.playerRights == 3) {
|
||||
Misc.println("Player used Item id: " + itemUsed + " with Item id: " + useWith);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user