diff options
Diffstat (limited to 'src/map/pc.h')
-rw-r--r-- | src/map/pc.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/map/pc.h b/src/map/pc.h index 6f2275fa7..269bc65dc 100644 --- a/src/map/pc.h +++ b/src/map/pc.h @@ -454,6 +454,12 @@ struct map_session_data { unsigned int npc_idle_tick; #endif + struct { + struct script_code **bonus;/* the script */ + unsigned short *id;/* array of combo ids */ + unsigned char count; + } combos; + /** * Guarantees your friend request is legit (for bugreport:4629) **/ @@ -909,4 +915,7 @@ void pc_overheat(struct map_session_data *sd, int val); int pc_banding(struct map_session_data *sd, short skill_lv); void pc_itemcd_do(struct map_session_data *sd, bool load); + +int pc_load_combo(struct map_session_data *sd); + #endif /* _PC_H_ */ |