version 1.131 | | version 1.132 |
---|
| | |
/* plugins.c */ | | /* plugins.c */ |
CommArray_s *find_plugin_command(char *cmd, object *op); | | CommArray_s *find_plugin_command(char *cmd, object *op); |
void displayPluginsList(object *op); | | void displayPluginsList(object *op); |
int findPlugin(char *id); | | int findPlugin(const char *id); |
int initPlugins(void); | | int initPlugins(void); |
int initOnePlugin(char *pluginfile); | | int initOnePlugin(char *pluginfile); |
int removeOnePlugin(char *id); | | int removeOnePlugin(char *id); |
| | |
int calc_skill_exp(object *who, object *op, object *skill); | | int calc_skill_exp(object *who, object *op, object *skill); |
int learn_skill(object *pl, object *scroll); | | int learn_skill(object *pl, object *scroll); |
void show_skills(object *op); | | void show_skills(object *op); |
int use_skill(object *op, char *string); | | int use_skill(object *op, const char *string); |
int skill_attack(object *tmp, object *pl, int dir, const char *string, object *skill); | | int skill_attack(object *tmp, object *pl, int dir, const char *string, object *skill); |
int attack_hth(object *pl, int dir, const char *string, object *skill); | | int attack_hth(object *pl, int dir, const char *string, object *skill); |
int attack_melee_weapon(object *op, int dir, const char *string, object *skill); | | int attack_melee_weapon(object *op, int dir, const char *string, object *skill); |