From 774a7fa779f1d1628559351b5ac1d8ec8b9ead52 Mon Sep 17 00:00:00 2001 From: Alex King <89047260+Kinglykrab@users.noreply.github.com> Date: Sun, 26 Feb 2023 21:35:49 -0500 Subject: [PATCH] [Cleanup] Delete unused zone/skills.h (#3007) # Notes - This is unused. --- zone/CMakeLists.txt | 1 - zone/skills.h | 101 -------------------------------------------- 2 files changed, 102 deletions(-) delete mode 100644 zone/skills.h diff --git a/zone/CMakeLists.txt b/zone/CMakeLists.txt index 3c1bd1b85..6e1780f25 100644 --- a/zone/CMakeLists.txt +++ b/zone/CMakeLists.txt @@ -255,7 +255,6 @@ SET(zone_headers quest_parser_collection.h raids.h raycast_mesh.h - skills.h shared_task_zone_messaging.h spawn2.cpp spawn2.h diff --git a/zone/skills.h b/zone/skills.h deleted file mode 100644 index 8c994a378..000000000 --- a/zone/skills.h +++ /dev/null @@ -1,101 +0,0 @@ -/* EQEMu: Everquest Server Emulator - Copyright (C) 2001-2002 EQEMu Development Team (http://eqemu.org) - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; version 2 of the License. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY except by those people which sell it, which - are required to give you total support for your newly bought product; - without even the implied warranty of MERCHANTABILITY or FITNESS FOR - A PARTICULAR PURPOSE. See the GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -*/ -#ifndef SKILLS_H -#define SKILLS_H - -#define HIGHEST_SKILL_UNUSED 74 - - -// Correct Skill Numbers as of 4-14-2002 -#define _1H_BLUNT_UNUSED 0 -#define _1H_SLASHING_UNUSED 1 -#define _2H_BLUNT_UNUSED 2 -#define _2H_SLASHING_UNUSED 3 -#define ABJURE_UNUSED 4 -#define ALTERATION_UNUSED 5 -#define APPLY_POISON_UNUSED 6 -#define ARCHERY_UNUSED 7 -#define BACKSTAB_UNUSED 8 -#define BIND_WOUND_UNUSED 9 -#define BASH_UNUSED 10 -#define BLOCKSKILL_UNUSED 11 -#define BRASS_INSTRUMENTS_UNUSED 12 -#define CHANNELING_UNUSED 13 -#define CONJURATION_UNUSED 14 -#define DEFENSE_UNUSED 15 -#define DISARM_UNUSED 16 -#define DISARM_TRAPS_UNUSED 17 -#define DIVINATION_UNUSED 18 -#define DODGE_UNUSED 19 -#define DOUBLE_ATTACK_UNUSED 20 -#define DRAGON_PUNCH_UNUSED 21 -#define DUAL_WIELD_UNUSED 22 -#define EAGLE_STRIKE_UNUSED 23 -#define EVOCATION_UNUSED 24 -#define FEIGN_DEATH_UNUSED 25 -#define FLYING_KICK_UNUSED 26 -#define FORAGE_UNUSED 27 -#define HAND_TO_HAND_UNUSED 28 -#define HIDE_UNUSED 29 -#define KICK_UNUSED 30 -#define MEDITATE_UNUSED 31 -#define MEND_UNUSED 32 -#define OFFENSE_UNUSED 33 -#define PARRY_UNUSED 34 -#define PICK_LOCK_UNUSED 35 -#define PIERCING_UNUSED 36 -#define RIPOSTE_UNUSED 37 -#define ROUND_KICK_UNUSED 38 -#define SAFE_FALL_UNUSED 39 -#define SENSE_HEADING_UNUSED 40 -#define SINGING_UNUSED 41 -#define SNEAK_UNUSED 42 -#define SPECIALIZE_ABJURE_UNUSED 43 -#define SPECIALIZE_ALTERATION_UNUSED 44 -#define SPECIALIZE_CONJURATION_UNUSED 45 -#define SPECIALIZE_DIVINATION_UNUSED 46 -#define SPECIALIZE_EVOCATION_UNUSED 47 -#define PICK_POCKETS_UNUSED 48 -#define STRINGED_INSTRUMENTS_UNUSED 49 -#define SWIMMING_UNUSED 50 -#define THROWING_UNUSED 51 -#define TIGER_CLAW_UNUSED 52 -#define TRACKING_UNUSED 53 -#define WIND_INSTRUMENTS_UNUSED 54 -#define FISHING_UNUSED 55 -#define MAKE_POISON_UNUSED 56 -#define TINKERING_UNUSED 57 -#define RESEARCH_UNUSED 58 -#define ALCHEMY_UNUSED 59 -#define BAKING_UNUSED 60 -#define TAILORING_UNUSED 61 -#define SENSE_TRAPS_UNUSED 62 -#define BLACKSMITHING_UNUSED 63 -#define FLETCHING_UNUSED 64 -#define BREWING_UNUSED 65 -#define ALCOHOL_TOLERANCE_UNUSED 66 -#define BEGGING_UNUSED 67 -#define JEWELRY_MAKING_UNUSED 68 -#define POTTERY_UNUSED 69 -#define PERCUSSION_INSTRUMENTS_UNUSED 70 -#define INTIMIDATION_UNUSED 71 -#define BERSERKING_UNUSED 72 -#define TAUNT_UNUSED 73 -#define FRENZY_UNUSED 74 - -#endif