Remove taekwon rankings

Vuluts

New member
Messages
63
Points
0
Greetings Hercules Community,

I just want to ask how to disable or remove the taekwon rankings when you type /taekwon

also how to remove the /taekwon in command list alt + y window under exe tab

remove_taekwon.png


Hoping that someone could help me regards my concern.

Thank you in advance.

Edit: I already manage to remove the /taekwon text in the alt + y window but whenever I hover my mouse to its location and click the taekwon rankings still showing.

 
Last edited by a moderator:
I guess you need change to older client which not have taekwon ranking
Thanks for the reply Felipe, I already download older client, a 2005 client to be exact but 2005 client already had /taekwon in the command list window, I just wondering where I can download 2004 client and does is it exist nowadays?

 
Last edited by a moderator:
I

I guess you need change to older client which not have taekwon ranking
Thanks for the reply Felipe, I already download older client, a 2005 client to be exact but 2005 client already had /taekwon in the command list window, I just wondering where I can download 2004 client and does is it exist nowadays?
In that topic have a guy whose says about aeRO2 hexed from 2004, if you speak portuguese you can send a PM to him for search and post here if you get a amazing 2004 Hexed working

 
To remove response from /taekwon
clif.c:
Search

Code:
/// /taekwon list (ZC_TAEKWON_RANK).
/// 0226 { <name>.24B }*10 { <point>.L }*10
void clif_taekwon(struct map_session_data* sd) {
    int fd;

    nullpo_retv(sd);
    fd = sd->fd;
    WFIFOHEAD(fd,packet_len(0x226));
    WFIFOW(fd,0) = 0x226;
    clif_ranklist_sub(WFIFOP(fd,2), RANKTYPE_TAEKWON);
    WFIFOSET(fd, packet_len(0x226));
}
Replace with
Code:
/// /taekwon list (ZC_TAEKWON_RANK).
/// 0226 { <name>.24B }*10 { <point>.L }*10
void clif_taekwon(struct map_session_data* sd) {
    return;
}
 
To remove response from /taekwon

clif.c:

Search

/// /taekwon list (ZC_TAEKWON_RANK).
/// 0226 { <name>.24B }*10 { <point>.L }*10
void clif_taekwon(struct map_session_data* sd) {
    int fd;

    nullpo_retv(sd);
    fd = sd->fd;
    WFIFOHEAD(fd,packet_len(0x226));
    WFIFOW(fd,0) = 0x226;
    clif_ranklist_sub(WFIFOP(fd,2), RANKTYPE_TAEKWON);
    WFIFOSET(fd, packet_len(0x226));
}
Replace with

/// /taekwon list (ZC_TAEKWON_RANK).
/// 0226 { <name>.24B }*10 { <point>.L }*10
void clif_taekwon(struct map_session_data* sd) {
    return;
}
Thank you sir @Dastgir, I will try it and give feedback.

I

I guess you need change to older client which not have taekwon ranking
Thanks for the reply Felipe, I already download older client, a 2005 client to be exact but 2005 client already had /taekwon in the command list window, I just wondering where I can download 2004 client and does is it exist nowadays?
In that topic have a guy whose says about aeRO2 hexed from 2004, if you speak portuguese you can send a PM to him for search and post here if you get a amazing 2004 Hexed working
What his name?

 
Update:

/taekwon command is now disabled special thanks to sir @Dastgir for the help.

My concern now is how to remove /taekwon button in alt+y window.

I already tried to hex and successfully remove the /taekwon button, but the problem is the space are still there, what I want to do is remove /taekwon then /blacksmith will be go up and replace, anyone could help me how to hex to completely remove that.

Thank you in advance.

 
Last edited by a moderator:
Back
Top