-
Notifications
You must be signed in to change notification settings - Fork 1
221 - Testimony of Prosperity #2
Copy link
Copy link
Open
Description
OLD(c0)
if(talker.race != @race_dwarf)
{
ShowPage(talker, "parman_q0221_01.htm");
} else if (talker.level < 37) {
ShowPage(talker, "parman_q0221_02.htm");
} else {
FHTML_SetFileName(fhtml0, "parman_q0221_03.htm");
FHTML_SetInt(fhtml0, "quest_id", @testimony_of_prosperity);
ShowFHTML(talker, fhtml0);
}NEW(c1)
if (talker.race == @race_dwarf && talker.level >= 37 && IsInCategory(@dwarf_2nd_group, talker.occupation))
{
FHTML_SetFileName(fhtml0, "parman_q0221_03.htm");
FHTML_SetInt(fhtml0, "quest_id", @testimony_of_prosperity);
ShowFHTML(talker, fhtml0);
}
else if (talker.race == @race_dwarf && talker.level >= 37)
{
ShowPage(talker, "parman_q0221_01a.htm");
}
else if (talker.race == @race_dwarf)
{
ShowPage(talker, "parman_q0221_02.htm");
}
else
{
ShowPage(talker, "parman_q0221_01.htm");
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels