Skip to content

224 - Test of Sagittarius #3

@MimisK13

Description

@MimisK13

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");
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions