Mystery Posted July 26, 2012 Group: Members Topic Count: 94 Topics Per Day: 0.02 Content Count: 2192 Reputation: 253 Joined: 11/11/11 Last Seen: June 24, 2020 Share Posted July 26, 2012 Hey everyone! The current favourite (personal) tab diff that's here is a little bit outdated and all crunched together with the cart and sitting diffs which is no longer needed because rAthena already supports both. Currently no need for this anymore since it's been already implemented into rAthena: http://trac.rathena.org/changeset/16518/rathena. Deleted it from my SVN as you can see why here: https://code.google.com/p/mysterious-project/source/detail?r=131 Quote Link to comment Share on other sites More sharing options...
Lelouch vi Britannia Posted July 26, 2012 Group: Members Topic Count: 45 Topics Per Day: 0.01 Content Count: 715 Reputation: 84 Joined: 01/05/12 Last Seen: April 10, 2023 Share Posted July 26, 2012 (edited) Uhmmm i tryed your patch also im using r16503 but there is a lil bit problem in clif.h clif.h Original (Line 465 and 466) void clif_cart_delitem(struct map_session_data *sd,int n,int amount); void clif_cartlist(struct map_session_data *sd); clif.h Patched (Line 465) void clif_cart_delitem(struct map_session_data *sd,int n,int amount);void clif_cartlist(struct map_session_data *sd); Also Rejected patch hunks in clif.c --- src/map/clif.c +++ src/map/clif.c @@ -2202,9 +2204,12 @@ } WFIFOSET(fd,packet_len(cmd)); +#if PACKETVER >= 20111122 + if ( sd->status.inventory[n].favorite ) + clif_favorite_item(sd, n); +#endif } @@ -2367,7 +2371,16 @@ WBUFW(bufe,2)=4+ne*se; clif_send(bufe, WBUFW(bufe,2), &sd->bl, SELF); Edited July 26, 2012 by Lelouch vi Britannia Quote Link to comment Share on other sites More sharing options...
Mystery Posted July 26, 2012 Group: Members Topic Count: 94 Topics Per Day: 0.02 Content Count: 2192 Reputation: 253 Joined: 11/11/11 Last Seen: June 24, 2020 Author Share Posted July 26, 2012 DId you manually add it or applied it with Tortoise? Since my server has a lot of mods in it, I had to delete some parts are that weren't related to the Favourite Tab diff. So, I guess since I deleted some stuff from within the diff, if you try to automatically add it in, there might be a problem. Also, I manually added it in and I didn't get errors in my compiling. Quote Link to comment Share on other sites More sharing options...
onizame Posted July 27, 2012 Group: Members Topic Count: 15 Topics Per Day: 0.00 Content Count: 139 Reputation: 2 Joined: 07/05/12 Last Seen: April 15, 2013 Share Posted July 27, 2012 [onizame2823@localhost ~]$ patch -Np0 -d rAthena < FavouriteTab.patch (Stripping trailing CRs from patch.) patching file src/char/char.c patching file src/common/mmo.h patch: **** malformed patch at line 122: Index: src/map/clif.c is this ok? SVN ver 16509 Quote Link to comment Share on other sites More sharing options...
Lelouch vi Britannia Posted July 27, 2012 Group: Members Topic Count: 45 Topics Per Day: 0.01 Content Count: 715 Reputation: 84 Joined: 01/05/12 Last Seen: April 10, 2023 Share Posted July 27, 2012 DId you manually add it or applied it with Tortoise? Since my server has a lot of mods in it, I had to delete some parts are that weren't related to the Favourite Tab diff. So, I guess since I deleted some stuff from within the diff, if you try to automatically add it in, there might be a problem. Also, I manually added it in and I didn't get errors in my compiling. I think that i guess should be the problem .yeah i added it automatically in my SVN via tortoise .i havent tryed adding it manually .well i guess i should try it now .Thanks Myst Quote Link to comment Share on other sites More sharing options...
Mystery Posted July 27, 2012 Group: Members Topic Count: 94 Topics Per Day: 0.02 Content Count: 2192 Reputation: 253 Joined: 11/11/11 Last Seen: June 24, 2020 Author Share Posted July 27, 2012 [onizame2823@localhost ~]$ patch -Np0 -d rAthena < FavouriteTab.patch (Stripping trailing CRs from patch.) patching file src/char/char.c patching file src/common/mmo.h patch: **** malformed patch at line 122: Index: src/map/clif.c is this ok? SVN ver 16509 As I mentioned: DId you manually add it or applied it with Tortoise? Since my server has a lot of mods in it, I had to delete some parts are that weren't related to the Favourite Tab diff. So, I guess since I deleted some stuff from within the diff, if you try to automatically add it in, there might be a problem. DId you manually add it or applied it with Tortoise? Since my server has a lot of mods in it, I had to delete some parts are that weren't related to the Favourite Tab diff. So, I guess since I deleted some stuff from within the diff, if you try to automatically add it in, there might be a problem. Also, I manually added it in and I didn't get errors in my compiling. I think that i guess should be the problem .yeah i added it automatically in my SVN via tortoise .i havent tryed adding it manually .well i guess i should try it now .Thanks Myst Thank you. When I have time, I'll add the patch to a cleaner version of rAthena so that a .diff patch can be automatically patched. Quote Link to comment Share on other sites More sharing options...
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.