Fixed facial expression in Onglewip dialogue

Removed Seth from the game
Fixed lamp text
Added missing cow spawns
This commit is contained in:
szumaster
2023-05-07 03:04:01 +00:00
committed by Ryan
parent ce7f249880
commit d0ae674155
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -249,7 +249,7 @@
},
{
"npc_id": "81",
"loc_data": "{3255,3255,0,1,3}-{3255,3256,0,1,4}-{3038,3310,0,1,5}-{3028,3312,0,1,6}-{3028,3299,0,1,6}-{3042,3300,0,1,6}-{2923,3277,0,1,1}-{2921,3289,0,1,1}-{2923,3280,0,1,6}-{2589,3120,0,1,4}-{2605,3116,0,1,5}-{3259,3261,0,1,1}-{3263,3283,0,1,6}-{3257,3268,0,1,4}"
"loc_data": "{2436,4443,0,0,3}-{2441,4449,0,0,6}-{3255,3255,0,1,3}-{3255,3256,0,1,4}-{3038,3310,0,1,5}-{3028,3312,0,1,6}-{3028,3299,0,1,6}-{3042,3300,0,1,6}-{2923,3277,0,1,1}-{2921,3289,0,1,1}-{2923,3280,0,1,6}-{2589,3120,0,1,4}-{2605,3116,0,1,5}-{3259,3261,0,1,1}-{3263,3283,0,1,6}-{3257,3268,0,1,4}"
},
{
"npc_id": "82",
@@ -2113,7 +2113,7 @@
},
{
"npc_id": "791",
"loc_data": "{2450,3056,0,0,0}"
"loc_data": ""
},
{
"npc_id": "792",
@@ -43,7 +43,7 @@ public final class LampPlugin extends OptionHandler {
public void handleSelectionCallback(int skill, Player player){
Lamps lamp = Lamps.forItem(player.getAttribute("lamp",new Item(2528)));
if(player.getSkills().getStaticLevel(skill) < lamp.getLevelRequirement()){
player.sendMessage("Your need at least" + lamp.getLevelRequirement() + " " + Skills.SKILL_NAME[skill] + " to do this.");
player.sendMessage("You need at least " + lamp.getLevelRequirement() + " " + Skills.SKILL_NAME[skill] + " to do this.");
return;
} else {
if(player.getInventory().remove((Item) player.getAttribute("lamp"))) {
@@ -39,7 +39,7 @@ public final class DrOnglewipDialogue extends DialoguePlugin {
@Override
public boolean open(Object... args) {
npc = (NPC) args[0];
interpreter.sendDialogues(player, FacialExpression.NEUTRAL, "Do you live here too?");
interpreter.sendDialogues(player, FacialExpression.ASKING, "Do you live here too?");
stage = 0;
return true;
}