Xtremist Posted May 5, 2013 Group: Members Topic Count: 39 Topics Per Day: 0.01 Content Count: 196 Reputation: 20 Joined: 11/20/11 Last Seen: February 22, 2019 Share Posted May 5, 2013 Hello friends, The problem is with gm id/lvl-1,2,3 wateva and not with GM id/lvl 99 Whenever the @commands fail eg. If I enter @asdasdasd - it must come as unknown command for gm but it goes like that ony in public chat by mistake if someone does @broadcat a typo it goes in public chat and doesnt show as unknown/falied command. Only happens for gm other than 99 What is the fix for this? Thank you Quote Link to comment Share on other sites More sharing options...
Jaburak Posted May 5, 2013 Group: Members Topic Count: 48 Topics Per Day: 0.01 Content Count: 1125 Reputation: 236 Joined: 07/30/12 Last Seen: April 13 Share Posted May 5, 2013 It's normal with trunk since before at eAthena. Quote Link to comment Share on other sites More sharing options...
Xtremist Posted May 5, 2013 Group: Members Topic Count: 39 Topics Per Day: 0.01 Content Count: 196 Reputation: 20 Joined: 11/20/11 Last Seen: February 22, 2019 Author Share Posted May 5, 2013 I m not sure about this thing... But this shudn't be the intended working. Quote Link to comment Share on other sites More sharing options...
Jaburak Posted May 5, 2013 Group: Members Topic Count: 48 Topics Per Day: 0.01 Content Count: 1125 Reputation: 236 Joined: 07/30/12 Last Seen: April 13 Share Posted May 5, 2013 Maybe you just tried it before on Stable SVN of eAthena. Quote Link to comment Share on other sites More sharing options...
Xtremist Posted May 7, 2013 Group: Members Topic Count: 39 Topics Per Day: 0.01 Content Count: 196 Reputation: 20 Joined: 11/20/11 Last Seen: February 22, 2019 Author Share Posted May 7, 2013 Any modification for the same? Quote Link to comment Share on other sites More sharing options...
Euro Posted May 7, 2013 Group: Members Topic Count: 8 Topics Per Day: 0.00 Content Count: 26 Reputation: 10 Joined: 01/01/12 Last Seen: October 12, 2023 Share Posted May 7, 2013 at src/map/atcommand.c Find: info = get_atcommandinfo_byname(atcommand_checkalias(command + 1)); if (info == NULL) { if( pc_get_group_level(sd) ) { // TODO: remove or replace with proper permission sprintf(output, msg_txt(sd,153), command); // "%s is Unknown Command." clif_displaymessage(fd, output); atcommand_get_suggestions(sd, command + 1, *message == atcommand_symbol); return true; } else return false; } Replace With: info = get_atcommandinfo_byname(atcommand_checkalias(command + 1)); if (info == NULL) { //if( pc_get_group_level(sd) ) { // TODO: remove or replace with proper permission sprintf(output, msg_txt(sd,153), command); // "%s is Unknown Command." clif_displaymessage(fd, output); atcommand_get_suggestions(sd, command + 1, *message == atcommand_symbol); return true; //} else // return false; } Quote Link to comment Share on other sites More sharing options...
Question
Xtremist
Hello friends,
The problem is with gm id/lvl-1,2,3 wateva and not with GM id/lvl 99
Whenever the @commands fail
eg. If I enter @asdasdasd - it must come as unknown command for gm but it goes like that ony in public chat
by mistake if someone does @broadcat a typo it goes in public chat and doesnt show as unknown/falied command.
Only happens for gm other than 99
What is the fix for this?
Thank you
Link to comment
Share on other sites
5 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.