QQfoolsorellina Posted September 26, 2012 Group: Members Topic Count: 40 Topics Per Day: 0.01 Content Count: 587 Reputation: 105 Joined: 11/19/11 Last Seen: July 7, 2019 Share Posted September 26, 2012 I want all the cart to show in the cart-change menu when player's lv reached 99 I have tried modifying src but not working for me , and believe that's client hexing stuff. need help thx... Quote Link to comment Share on other sites More sharing options...
Emistry Posted September 26, 2012 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10017 Reputation: 2369 Joined: 10/28/11 Last Seen: 4 hours ago Share Posted September 26, 2012 trunk/src/map/clif.c #ifdef NEW_CARTS if( (type == 9 && sd->status.base_level > 131) || (type == 8 && sd->status.base_level > 121) || (type == 7 && sd->status.base_level > 111) || (type == 6 && sd->status.base_level > 101) || (type == 5 && sd->status.base_level > 90) || (type == 4 && sd->status.base_level > 80) || (type == 3 && sd->status.base_level > 65) || (type == 2 && sd->status.base_level > 40) || (type == 1)) #else change the value behind it... Quote Link to comment Share on other sites More sharing options...
QQfoolsorellina Posted September 26, 2012 Group: Members Topic Count: 40 Topics Per Day: 0.01 Content Count: 587 Reputation: 105 Joined: 11/19/11 Last Seen: July 7, 2019 Author Share Posted September 26, 2012 My modification: #ifdef NEW_CARTS if( (type == 9 && sd->status.base_level > 98) || (type == 8 && sd->status.base_level > 98) || (type == 7 && sd->status.base_level > 98) || (type == 6 && sd->status.base_level > 98) || (type == 5 && sd->status.base_level > 90) || (type == 4 && sd->status.base_level > 80) || (type == 3 && sd->status.base_level > 65) || (type == 2 && sd->status.base_level > 40) || (type == 1)) #else It dosnt work After tried , As I mention there is a lv cap in the client Quote Link to comment Share on other sites More sharing options...
Emistry Posted September 27, 2012 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10017 Reputation: 2369 Joined: 10/28/11 Last Seen: 4 hours ago Share Posted September 27, 2012 did you recompile after you edit ?? Quote Link to comment Share on other sites More sharing options...
Napster Posted September 27, 2012 Group: Members Topic Count: 11 Topics Per Day: 0.00 Content Count: 196 Reputation: 72 Joined: 12/12/11 Last Seen: November 6, 2016 Share Posted September 27, 2012 this problem limit by client i think you request diff hexing by @Ai4rei break cart limit level Quote Link to comment Share on other sites More sharing options...
Altimage Posted September 27, 2012 Group: Members Topic Count: 23 Topics Per Day: 0.00 Content Count: 96 Reputation: 1 Joined: 03/07/12 Last Seen: January 19, 2023 Share Posted September 27, 2012 Not work Quote Link to comment Share on other sites More sharing options...
QQfoolsorellina Posted September 29, 2012 Group: Members Topic Count: 40 Topics Per Day: 0.01 Content Count: 587 Reputation: 105 Joined: 11/19/11 Last Seen: July 7, 2019 Author Share Posted September 29, 2012 (edited) Ai4rei is very busy , I think she doosn't support cutom request , Hope someone can help figuring out the hex code ,ty Edited September 29, 2012 by QQfoolsorellina Quote Link to comment Share on other sites More sharing options...
pnew Posted September 30, 2012 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 12 Reputation: 3 Joined: 08/11/12 Last Seen: May 7, 2013 Share Posted September 30, 2012 which client do you use? Quote Link to comment Share on other sites More sharing options...
QQfoolsorellina Posted September 30, 2012 Group: Members Topic Count: 40 Topics Per Day: 0.01 Content Count: 587 Reputation: 105 Joined: 11/19/11 Last Seen: July 7, 2019 Author Share Posted September 30, 2012 which client do you use? 2012-04-10 Quote Link to comment Share on other sites More sharing options...
pnew Posted September 30, 2012 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 12 Reputation: 3 Joined: 08/11/12 Last Seen: May 7, 2013 Share Posted September 30, 2012 My modification: #ifdef NEW_CARTS if( (type == 9 && sd->status.base_level > 98) || (type == 8 && sd->status.base_level > 98) || (type == 7 && sd->status.base_level > 98) || (type == 6 && sd->status.base_level > 98) || (type == 5 && sd->status.base_level > 90) || (type == 4 && sd->status.base_level > 80) || (type == 3 && sd->status.base_level > 65) || (type == 2 && sd->status.base_level > 40) || (type == 1)) #else It dosnt work After tried , As I mention there is a lv cap in the client In addition to the above,use hex editor. please search & replace it. (2012-04-10a) Address before after 000C3AED : 64 62 000C3B28 : 6E 62 000C3B63 : 78 62 000C3B9C : 81 83 000C3B9E : 82 62 000C3B9F : 00 90 000C3BA0 : 00 90 000C3BA1 : 00 90 0015C565 : 64 62 Quote Link to comment Share on other sites More sharing options...
QQfoolsorellina Posted September 30, 2012 Group: Members Topic Count: 40 Topics Per Day: 0.01 Content Count: 587 Reputation: 105 Joined: 11/19/11 Last Seen: July 7, 2019 Author Share Posted September 30, 2012 My modification: #ifdef NEW_CARTS if( (type == 9 && sd->status.base_level > 98) || (type == 8 && sd->status.base_level > 98) || (type == 7 && sd->status.base_level > 98) || (type == 6 && sd->status.base_level > 98) || (type == 5 && sd->status.base_level > 90) || (type == 4 && sd->status.base_level > 80) || (type == 3 && sd->status.base_level > 65) || (type == 2 && sd->status.base_level > 40) || (type == 1)) #else It dosnt work After tried , As I mention there is a lv cap in the client In addition to the above,use hex editor. please search & replace it. (2012-04-10a) Address before after 000C3AED : 64 62 000C3B28 : 6E 62 000C3B63 : 78 62 000C3B9C : 81 83 000C3B9E : 82 62 000C3B9F : 00 90 000C3BA0 : 00 90 000C3BA1 : 00 90 0015C565 : 64 62 Cool.....It work like a charm !! I quite appreciate your help Quote Link to comment Share on other sites More sharing options...
Altimage Posted November 1, 2012 Group: Members Topic Count: 23 Topics Per Day: 0.00 Content Count: 96 Reputation: 1 Joined: 03/07/12 Last Seen: January 19, 2023 Share Posted November 1, 2012 (edited) Address before after000C3AED : 64 62 000C3B28 : 6E 62 000C3B63 : 78 62 000C3B9C : 81 83 000C3B9E : 82 62 000C3B9F : 00 90 000C3BA0 : 00 90 000C3BA1 : 00 90 0015C565:6462 I can't not find this? im use 2012-04-10a and can u support 2012-06-18 pls. Edited November 1, 2012 by Altimage Quote Link to comment Share on other sites More sharing options...
QQfoolsorellina Posted November 2, 2012 Group: Members Topic Count: 40 Topics Per Day: 0.01 Content Count: 587 Reputation: 105 Joined: 11/19/11 Last Seen: July 7, 2019 Author Share Posted November 2, 2012 Address before after000C3AED : 64 62 000C3B28 : 6E 62 000C3B63 : 78 62 000C3B9C : 81 83 000C3B9E : 82 62 000C3B9F : 00 90 000C3BA0 : 00 90 000C3BA1 : 00 90 0015C565:6462 I can't not find this? im use 2012-04-10a and can u support 2012-06-18 pls. for 2012-04-10a go to memory address and replace hex value Quote Link to comment Share on other sites More sharing options...
Altimage Posted November 2, 2012 Group: Members Topic Count: 23 Topics Per Day: 0.00 Content Count: 96 Reputation: 1 Joined: 03/07/12 Last Seen: January 19, 2023 Share Posted November 2, 2012 Why i can't find? Quote Link to comment Share on other sites More sharing options...
QQfoolsorellina Posted November 2, 2012 Group: Members Topic Count: 40 Topics Per Day: 0.01 Content Count: 587 Reputation: 105 Joined: 11/19/11 Last Seen: July 7, 2019 Author Share Posted November 2, 2012 Why i can't find? Quote Link to comment Share on other sites More sharing options...
Altimage Posted November 2, 2012 Group: Members Topic Count: 23 Topics Per Day: 0.00 Content Count: 96 Reputation: 1 Joined: 03/07/12 Last Seen: January 19, 2023 Share Posted November 2, 2012 (edited) Oh, thk so much!! Can u support code 2012-06-18? Edited November 2, 2012 by Altimage Quote Link to comment Share on other sites More sharing options...
Altimage Posted November 8, 2012 Group: Members Topic Count: 23 Topics Per Day: 0.00 Content Count: 96 Reputation: 1 Joined: 03/07/12 Last Seen: January 19, 2023 Share Posted November 8, 2012 bump Quote Link to comment Share on other sites More sharing options...
tammaster Posted November 8, 2012 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 1 Reputation: 0 Joined: 05/12/12 Last Seen: September 22, 2013 Share Posted November 8, 2012 bump i want hex code for 2012-06-18 thx Quote Link to comment Share on other sites More sharing options...
Question
QQfoolsorellina
I want all the cart to show in the cart-change menu when player's lv reached 99
I have tried modifying src but not working for me , and believe that's client hexing stuff.
need help thx...
Link to comment
Share on other sites
17 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.