diff options
Diffstat (limited to 'npc/soren/main.txt')
-rw-r--r-- | npc/soren/main.txt | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/npc/soren/main.txt b/npc/soren/main.txt index 2824a4046..9a0232a3b 100644 --- a/npc/soren/main.txt +++ b/npc/soren/main.txt @@ -42,12 +42,12 @@ OnTouch: end; } else { mesn l("Soren's House Tutorial"); - mes col(l("There's a strong magic barrier. We need to disarm it in order to enter there."), 9); - mes col(l("There are three singularities on this island. If I disarm more than one, I'll have a penalty."), 9); - mes col(l("I should have full mana before attempting to disarm one."), 9); - mes col(l("Also, if I move away from the singularity during disarm process, it'll be lost."), 9); - mes col(l("The singularities keep arming themselves up again, so I have roughly five minutes between first disarm and entering here."), 9); - mes col(l("We should split our team, and have someone to protect our backs. Otherwise, we might not do it."), 9); + mesc l("There's a strong magic barrier. We need to disarm it in order to enter there."); + mesc l("There are three singularities on this island. If I disarm more than one, I'll have a penalty."); + mesc l("I should have full mana before attempting to disarm one."); + mesc l("Also, if I move away from the singularity during disarm process, it'll be lost."); + mesc l("The singularities keep arming themselves up again, so I have roughly five minutes between first disarm and entering here."); + mesc l("We should split our team, and have someone to protect our backs. Otherwise, we might not do it."); // Protip: stock Elixir Of Life if you need to do this quest with less than 3 team members close; } @@ -70,7 +70,7 @@ soren,105,92,0 script Soren's Fountain NPC_NO_SPRITE,{ } // Main menu - mes col(l("Attempt to disarm the singularity?"), 9); + mesc l("Attempt to disarm the singularity?"); if (askyesno() == ASK_YES) { if (.casterId == getcharid(3)) @soren_penalty=@soren_penalty+rand(8, 12); @@ -218,7 +218,7 @@ soren,104,143,0 script Soren's Lake NPC_NO_SPRITE,{ } // Main menu - mes col(l("Attempt to disarm the singularity?"), 9); + mesc l("Attempt to disarm the singularity?"); if (askyesno() == ASK_YES) { if (.casterId == getcharid(3)) @soren_penalty=@soren_penalty+rand(8, 12); @@ -363,7 +363,7 @@ soren,107,37,0 script Soren's Gizmo NPC_NO_SPRITE,{ } // Main menu - mes col(l("Attempt to disarm the singularity?"), 9); + mesc l("Attempt to disarm the singularity?"); if (askyesno() == ASK_YES) { if (.casterId == getcharid(3)) @soren_penalty=@soren_penalty+rand(8, 12); |