Changeset 5 for src/map/atcommand.c

Show
Ignore:
Timestamp:
06/30/08 21:19:58 (17 years ago)
Author:
jinshiro
Message:
 
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/map/atcommand.c

    r1 r5  
    12691269                        { "gunner",     24 }, 
    12701270                        { "ninja",      25 }, 
     1271                        //Begin custom Job (blackmagic) 
     1272                        { "adept",      30 },//New job classes [Brainstorm] 
     1273                        { "necromancer",        31 }, 
     1274                        { "necro",      31 }, 
     1275                        { "warlock",    32 }, 
     1276                        //End Custom Job 
    12711277                        { "high novice",        4001 }, 
    12721278                        { "swordsman high",     4002 }, 
     
    78167822        return 0; 
    78177823} 
    7818  
     7824//Begin Custom Jobs (black magic) 
     7825//@showsummon [Brainstorm] 
     7826int atcommand_showsummon(const int fd, struct map_session_data* sd, const char* command, const char* message) 
     7827{ 
     7828        if (sd->state.showsummon) { 
     7829        sd->state.showsummon = 0; 
     7830        clif_displaymessage(fd, "Summon Stats will not be shown."); 
     7831        return 0; 
     7832        } 
     7833 
     7834        sd->state.showsummon = 1; 
     7835        clif_displaymessage(fd, "Summon Stats is now shown."); 
     7836        return 0; 
     7837} 
     7838//End Custom Jobs 
    78197839/*========================================== 
    78207840 * Barricade Build 
     
    86238643        { "barricade",         60,     atcommand_barricade }, 
    86248644        { "killbarricade",     60,     atcommand_barricade_destroy }, 
     8645        //Bwgin Custom Jobs (blackmagic) 
     8646        //Vanaheim Commands 
     8647        { "showsummon",  0, atcommand_showsummon}, //Brainstorm 
     8648        //End Custom Jobs 
    86258649        { "god",                                60,             atcommand_god }, 
    86268650        { "demon",                              60,             atcommand_demon },