blob: 269c56a01dff97768e5fa52304129a4eb7894381 (
plain) (
tree)
|
|
// TMW2 scripts.
// Author:
// Jesusalva
// Notes:
// TW: Tulimshar, West
// TE: Tulimshar, East
003-1,56,84,0 script #Sewer-TW NPC_NO_SPRITE,{
if (getq(TulimsharQuest_Sewers) == 0) end;
if (BaseLevel < 25) end;
mes col("Descend into Tulimshar sewers?", 9);
if (askyesno() == ASK_YES) {
closedialog;
warp "003-1-1", 57, 100;
dispbottom l("Blame Saulc.");
end;
}
close;
}
003-1,115,111,0 script #Sewer-TE NPC_NO_SPRITE,{
if (getq(TulimsharQuest_Sewers) == 0) end;
if (BaseLevel < 25) end;
mes col("Descend into Tulimshar sewers?", 9);
if (askyesno() == ASK_YES) {
closedialog;
warp "003-1-1", 143, 128;
dispbottom l("Blame Saulc.");
end;
}
close;
}
|