chojuro 0 Posted November 3, 2022 this line make me having error from this //To identify disguised characters. static inline bool disguised(struct block_list* bl) { struct map_session_data* sd = BL_CAST(BL_PC, bl); if (sd == NULL || sd->disguise == -1) return false; return true; } to this //To identify disguised characters. bool clif_isdisguised(struct block_list* bl) { struct map_session_data* sd = BL_CAST(BL_PC, bl); if (sd == NULL || sd->disguise == -1) return false; return true; } Quote Share this post Link to post Share on other sites
0 4144 364 Posted November 3, 2022 no sure what is your issue. why you changed clif_isdisguised to disguised ? 1 chojuro reacted to this Quote Share this post Link to post Share on other sites
0 chojuro 0 Posted November 3, 2022 it works thanks Quote Share this post Link to post Share on other sites
this line make me having error
from this
//To identify disguised characters. static inline bool disguised(struct block_list* bl) { struct map_session_data* sd = BL_CAST(BL_PC, bl); if (sd == NULL || sd->disguise == -1) return false; return true; }
to this
//To identify disguised characters. bool clif_isdisguised(struct block_list* bl) { struct map_session_data* sd = BL_CAST(BL_PC, bl); if (sd == NULL || sd->disguise == -1) return false; return true; }
Share this post
Link to post
Share on other sites