lightnow Posted March 16, 2023 Posted March 16, 2023 i'm want to disable all over Do not use this /guildinvite. Quote
0 joecalis Posted May 1, 2023 Posted May 1, 2023 Idk if this is what you want but this disables /guildinvite and even the right-click guildinvite. in clif.cpp Find: // Helper function for guild invite functions int clif_sub_guild_invite(int fd, struct map_session_data *sd, struct map_session_data *t_sd) { if (t_sd == NULL) // not online or does not exist return 1; Change to: // Helper function for guild invite functions int clif_sub_guild_invite(int fd, struct map_session_data *sd, struct map_session_data *t_sd) { return 1; if (t_sd == NULL) // not online or does not exist return 1; If you want to disable the /guildinvite only then you need to hex the client. Find: 2F 67 75 69 6C 64 69 6E 76 69 74 65 Replace: 00 00 00 00 00 00 00 00 00 00 00 00 Quote
Question
lightnow
i'm want to disable all over Do not use this /guildinvite.
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.