Just wondering... is there ANY way to make up a new type of skill?
i was just thinking about knuckle fighting skills
if i want to do this, how im supposed to create a new skill type and then create some item (knuckles perhaps?) to work properly with them?
i was just thinking about knuckle fighting skills
if i want to do this, how im supposed to create a new skill type and then create some item (knuckles perhaps?) to work properly with them?
LUA:
SKILL_FIRST = 0
SKILL_FIST = SKILL_FIRST
SKILL_CLUB = 1
SKILL_SWORD = 2
SKILL_AXE = 3
SKILL_DISTANCE = 4
SKILL_SHIELD = 5
SKILL_FISHING = 6
SKILL__MAGLEVEL = 7
SKILL__LEVEL = 8
SKILL_LAST = SKILL_FISHING
SKILL__LAST = SKILL__LEVEL
SKILL_NAMES = {
[SKILL_FIST] = "fist fighting",
[SKILL_CLUB] = "club fighting",
[SKILL_SWORD] = "sword fighting",
[SKILL_AXE] = "axe fighting",
[SKILL_DISTANCE] = "distance fighting",
[SKILL_SHIELD] = "shielding",
[SKILL_FISHING] = "fishing",
[SKILL__LEVEL] = "level",
[SKILL__MAGLEVEL] = "magic level"
}
SKILL_IDS = {
["fist"] = SKILL_FIST,
["club"] = SKILL_CLUB,
["sword"] = SKILL_SWORD,
["axe"] = SKILL_AXE,
["distance"] = SKILL_DISTANCE,
["dist"] = SKILL_DISTANCE,
["shielding"] = SKILL_SHIELD,
["shield"] = SKILL_SHIELD,
["fishing"] = SKILL_FISHING,
["fish"] = SKILL_FISHING,
["level"] = SKILL__LEVEL,
["magic"] = SKILL__MAGLEVEL
}