-
Notifications
You must be signed in to change notification settings - Fork 1
224 - Test of Sagittarius #3
Copy link
Copy link
Open
Description
OLD(c1)
if ((talker.occupation == @rogue || talker.occupation == @elven_scout || talker.occupation == @assassin) && talker.level >= 39)
{
FHTML_SetFileName(fhtml0, "union_president_bernard_q0224_03.htm");
FHTML_SetInt(fhtml0, "quest_id", @test_of_sagittarius);
ShowFHTML(talker, fhtml0);
} else if (talker.occupation == @rogue || talker.occupation == @elven_scout || talker.occupation == @assassin) {
ShowPage(talker, "union_president_bernard_q0224_01.htm");
} else {
ShowPage(talker, "union_president_bernard_q0224_02.htm");
}NEW(MimisK)
if ( MACRO<is_occupation3>(@rogue, @elven_scout, @assassin) && talker.level >= 39 )
{
FHTML_SetFileName(fhtml0, "union_president_bernard_q0224_03.htm");
FHTML_SetInt(fhtml0, "quest_id", @test_of_sagittarius);
ShowFHTML(talker, fhtml0);
} else if MACRO<is_occupation3>(@rogue, @elven_scout, @assassin) {
ShowPage(talker, "union_president_bernard_q0224_01.htm");
} else {
ShowPage(talker, "union_president_bernard_q0224_02.htm");
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels