Remove practice command, add skills command, remove guild special room assignment

This commit is contained in:
kinther 2025-08-17 09:12:48 -07:00
parent 31e46e739d
commit 5a19b015e3
11 changed files with 27 additions and 139 deletions

View file

@ -930,13 +930,6 @@ void find_replacement(void *go, struct script_data *sc, trig_data *trig,
}
snprintf(str, slen, "%s", position_types[GET_POS(c)]);
}
else if (!str_cmp(field, "prac")) {
if (subfield && *subfield) {
int addition = atoi(subfield);
GET_PRACTICES(c) = MAX(0, GET_PRACTICES(c) + addition);
}
snprintf(str, slen, "%d", GET_PRACTICES(c));
}
else if (!str_cmp(field, "pref")) {
if (subfield && *subfield) {
int pref = get_flag_by_name(preference_bits, subfield);