guildcenter.c - example for course 13

[previous example] [course 13] [Table of contents] [next example]
/* Filename      : guildcenter.c
 * Description   : The main room of the guild
 *
 * written       : 30-05-1998 - Gunner
 * last modified : 31-05-1998 - Gunner
 * HTML-Version  : 13-02-2000 - Ghorwin
 */

#include "/doc/crashcourse/course13/include/guild.h"
inherit I_GUILD;

// Remember that this is just an example. It's missing _a lot_ to
// pass QC.

create()
{
    ::create();
    set_light(1);
    set_short("The guild room");
    set_long("What a dreary old room. If it wasn't for the few "
        "candles on the table, you wouldn't see much at all. "
        "But, what'd you expect. You're standing at the center "
        "of the Dark Mages' guild.\n");
    add_reset_object("bulletin board","../board/guildboard");
    add_property(({"no_teleport","indoors","anarchy"}));

    // Just an standard exit back to M'Loria square

    add_exit(R_SQUARE,"square");

    // This is where you put your standard titles...
    // You should come up with some cooler titles, of course. ;-)

    male_title_str     = allocate(50);
    male_title_str[0]  = "the Mage Of Darkness";
    male_title_str[1]  = "the Mage Of Darkness";
    male_title_str[2]  = "the Mage Of Darkness";
    male_title_str[3]  = "the Mage Of Darkness";
    male_title_str[4]  = "the Mage Of Darkness";
    male_title_str[5]  = "the Mage Of Darkness";
    male_title_str[6]  = "the Mage Of Darkness";
    male_title_str[7]  = "the Mage Of Darkness";
    male_title_str[8]  = "the Mage Of Darkness";
    male_title_str[9]  = "the Mage Of Darkness";
    male_title_str[10] = "the Mage Of Darkness";
    male_title_str[11] = "the Mage Of Darkness";
    male_title_str[12] = "the Mage Of Darkness";
    male_title_str[13] = "the Mage Of Darkness";
    male_title_str[14] = "the Mage Of Darkness";
    male_title_str[15] = "the Mage Of Darkness";
    male_title_str[16] = "the Mage Of Darkness";
    male_title_str[17] = "the Mage Of Darkness";
    male_title_str[18] = "the Mage Of Darkness";
    male_title_str[19] = "the Mage Of Darkness";
    male_title_str[20] = "the Mage Of Darkness";
    male_title_str[21] = "the Mage Of Darkness";
    male_title_str[22] = "the Mage Of Darkness";
    male_title_str[23] = "the Mage Of Darkness";
    male_title_str[24] = "the Mage Of Darkness";
    male_title_str[25] = "the Mage Of Darkness";
    male_title_str[26] = "the Mage Of Darkness";
    male_title_str[27] = "the Mage Of Darkness";
    male_title_str[28] = "the Mage Of Darkness";
    male_title_str[29] = "the Mage Of Darkness";
    male_title_str[30] = "the Mage Of Darkness";
    male_title_str[31] = "the Mage Of Darkness";
    male_title_str[32] = "the Mage Of Darkness";
    male_title_str[33] = "the Mage Of Darkness";
    male_title_str[34] = "the Mage Of Darkness";
    male_title_str[35] = "the Mage Of Darkness";
    male_title_str[36] = "the Mage Of Darkness";
    male_title_str[37] = "the Mage Of Darkness";
    male_title_str[38] = "the Mage Of Darkness";
    male_title_str[39] = "the Mage Of Darkness";
    male_title_str[40] = "the Mage Of Darkness";
    male_title_str[41] = "the Mage Of Darkness";
    male_title_str[42] = "the Mage Of Darkness";
    male_title_str[43] = "the Mage Of Darkness";
    male_title_str[44] = "the Mage Of Darkness";
    male_title_str[45] = "the Mage Of Darkness";
    male_title_str[46] = "the Mage Of Darkness";
    male_title_str[47] = "the Mage Of Darkness";
    male_title_str[48] = "the Mage Of Darkness";
    male_title_str[49] = "the Mage Of Darkness";

    fem_title_str      = allocate(50);
    fem_title_str[0]   = "the Mage Of Darkness";
    fem_title_str[1]   = "the Mage Of Darkness";
    fem_title_str[2]   = "the Mage Of Darkness";
    fem_title_str[3]   = "the Mage Of Darkness";
    fem_title_str[4]   = "the Mage Of Darkness";
    fem_title_str[5]   = "the Mage Of Darkness";
    fem_title_str[6]   = "the Mage Of Darkness";
    fem_title_str[7]   = "the Mage Of Darkness";
    fem_title_str[8]   = "the Mage Of Darkness";
    fem_title_str[9]   = "the Mage Of Darkness";
    fem_title_str[10]  = "the Mage Of Darkness";
    fem_title_str[11]  = "the Mage Of Darkness";
    fem_title_str[12]  = "the Mage Of Darkness";
    fem_title_str[13]  = "the Mage Of Darkness";
    fem_title_str[14]  = "the Mage Of Darkness";
    fem_title_str[15]  = "the Mage Of Darkness";
    fem_title_str[16]  = "the Mage Of Darkness";
    fem_title_str[17]  = "the Mage Of Darkness";
    fem_title_str[18]  = "the Mage Of Darkness";
    fem_title_str[19]  = "the Mage Of Darkness";
    fem_title_str[20]  = "the Mage Of Darkness";
    fem_title_str[21]  = "the Mage Of Darkness";
    fem_title_str[22]  = "the Mage Of Darkness";
    fem_title_str[23]  = "the Mage Of Darkness";
    fem_title_str[24]  = "the Mage Of Darkness";
    fem_title_str[25]  = "the Mage Of Darkness";
    fem_title_str[26]  = "the Mage Of Darkness";
    fem_title_str[27]  = "the Mage Of Darkness";
    fem_title_str[28]  = "the Mage Of Darkness";
    fem_title_str[29]  = "the Mage Of Darkness";
    fem_title_str[30]  = "the Mage Of Darkness";
    fem_title_str[31]  = "the Mage Of Darkness";
    fem_title_str[32]  = "the Mage Of Darkness";
    fem_title_str[33]  = "the Mage Of Darkness";
    fem_title_str[34]  = "the Mage Of Darkness";
    fem_title_str[35]  = "the Mage Of Darkness";
    fem_title_str[36]  = "the Mage Of Darkness";
    fem_title_str[37]  = "the Mage Of Darkness";
    fem_title_str[38]  = "the Mage Of Darkness";
    fem_title_str[39]  = "the Mage Of Darkness";
    fem_title_str[40]  = "the Mage Of Darkness";
    fem_title_str[41]  = "the Mage Of Darkness";
    fem_title_str[42]  = "the Mage Of Darkness";
    fem_title_str[43]  = "the Mage Of Darkness";
    fem_title_str[44]  = "the Mage Of Darkness";
    fem_title_str[45]  = "the Mage Of Darkness";
    fem_title_str[46]  = "the Mage Of Darkness";
    fem_title_str[47]  = "the Mage Of Darkness";
    fem_title_str[48]  = "the Mage Of Darkness";
    fem_title_str[49]  = "the Mage Of Darkness";

    neut_title_str     = allocate(50);
    neut_title_str[0]  = "the Mage Of Darkness";
    neut_title_str[1]  = "the Mage Of Darkness";
    neut_title_str[2]  = "the Mage Of Darkness";
    neut_title_str[3]  = "the Mage Of Darkness";
    neut_title_str[4]  = "the Mage Of Darkness";
    neut_title_str[5]  = "the Mage Of Darkness";
    neut_title_str[6]  = "the Mage Of Darkness";
    neut_title_str[7]  = "the Mage Of Darkness";
    neut_title_str[8]  = "the Mage Of Darkness";
    neut_title_str[9]  = "the Mage Of Darkness";
    neut_title_str[10] = "the Mage Of Darkness";
    neut_title_str[11] = "the Mage Of Darkness";
    neut_title_str[12] = "the Mage Of Darkness";
    neut_title_str[13] = "the Mage Of Darkness";
    neut_title_str[14] = "the Mage Of Darkness";
    neut_title_str[15] = "the Mage Of Darkness";
    neut_title_str[16] = "the Mage Of Darkness";
    neut_title_str[17] = "the Mage Of Darkness";
    neut_title_str[18] = "the Mage Of Darkness";
    neut_title_str[19] = "the Mage Of Darkness";
    neut_title_str[20] = "the Mage Of Darkness";
    neut_title_str[21] = "the Mage Of Darkness";
    neut_title_str[22] = "the Mage Of Darkness";
    neut_title_str[23] = "the Mage Of Darkness";
    neut_title_str[24] = "the Mage Of Darkness";
    neut_title_str[25] = "the Mage Of Darkness";
    neut_title_str[26] = "the Mage Of Darkness";
    neut_title_str[27] = "the Mage Of Darkness";
    neut_title_str[28] = "the Mage Of Darkness";
    neut_title_str[29] = "the Mage Of Darkness";
    neut_title_str[30] = "the Mage Of Darkness";
    neut_title_str[31] = "the Mage Of Darkness";
    neut_title_str[32] = "the Mage Of Darkness";
    neut_title_str[33] = "the Mage Of Darkness";
    neut_title_str[34] = "the Mage Of Darkness";
    neut_title_str[35] = "the Mage Of Darkness";
    neut_title_str[36] = "the Mage Of Darkness";
    neut_title_str[37] = "the Mage Of Darkness";
    neut_title_str[38] = "the Mage Of Darkness";
    neut_title_str[39] = "the Mage Of Darkness";
    neut_title_str[40] = "the Mage Of Darkness";
    neut_title_str[41] = "the Mage Of Darkness";
    neut_title_str[42] = "the Mage Of Darkness";
    neut_title_str[43] = "the Mage Of Darkness";
    neut_title_str[44] = "the Mage Of Darkness";
    neut_title_str[45] = "the Mage Of Darkness";
    neut_title_str[46] = "the Mage Of Darkness";
    neut_title_str[47] = "the Mage Of Darkness";
    neut_title_str[48] = "the Mage Of Darkness";
    neut_title_str[49] = "the Mage Of Darkness";

    replace_program(I_GUILD);
}