Changeset 5 for src/map/atcommand.c
- Timestamp:
- 06/30/08 21:19:58 (17 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
src/map/atcommand.c
r1 r5 1269 1269 { "gunner", 24 }, 1270 1270 { "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 1271 1277 { "high novice", 4001 }, 1272 1278 { "swordsman high", 4002 }, … … 7816 7822 return 0; 7817 7823 } 7818 7824 //Begin Custom Jobs (black magic) 7825 //@showsummon [Brainstorm] 7826 int 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 7819 7839 /*========================================== 7820 7840 * Barricade Build … … 8623 8643 { "barricade", 60, atcommand_barricade }, 8624 8644 { "killbarricade", 60, atcommand_barricade_destroy }, 8645 //Bwgin Custom Jobs (blackmagic) 8646 //Vanaheim Commands 8647 { "showsummon", 0, atcommand_showsummon}, //Brainstorm 8648 //End Custom Jobs 8625 8649 { "god", 60, atcommand_god }, 8626 8650 { "demon", 60, atcommand_demon },