noob island gear

This commit is contained in:
2024-07-06 20:06:18 -05:00
parent 2fb97a676f
commit c0cb856961
5 changed files with 45 additions and 33 deletions
+8
View File
@@ -214,6 +214,7 @@ public class Contract extends AbstractGameObject {
}
}
}
if(this.getObjectUUID() == 1202){ //rune merchant
for(MobEquipment me : this.sellInventory){
switch(me.getItemBase().getUUID()){
@@ -272,6 +273,7 @@ public class Contract extends AbstractGameObject {
}
}
}
if(this.getObjectUUID() == 1201){ //disc merchant
for(MobEquipment me : this.sellInventory){
if(me.getItemBase().getName().equals("Prospector")){
@@ -281,6 +283,12 @@ public class Contract extends AbstractGameObject {
}
}
}
if(this.getObjectUUID() == 1502041) {//noob helper{
for(MobEquipment me : this.sellInventory){
me.magicValue = 1;
}
}
return this.sellInventory;
}