Jump to content
  • 0

How to chage the level limit of new cart


QQfoolsorellina

Question


  • Group:  Members
  • Topic Count:  40
  • Topics Per Day:  0.01
  • Content Count:  587
  • Reputation:   104
  • Joined:  11/19/11
  • Last Seen:  

nWmUP5a.jpg

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


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10015
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

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...

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  40
  • Topics Per Day:  0.01
  • Content Count:  587
  • Reputation:   104
  • Joined:  11/19/11
  • Last Seen:  

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

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  93
  • Topics Per Day:  0.02
  • Content Count:  10015
  • Reputation:   2348
  • Joined:  10/28/11
  • Last Seen:  

did you recompile after you edit ??

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  11
  • Topics Per Day:  0.00
  • Content Count:  196
  • Reputation:   72
  • Joined:  12/12/11
  • Last Seen:  

this problem limit by client

i think you request diff hexing by @Ai4rei

break cart limit level

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  40
  • Topics Per Day:  0.01
  • Content Count:  587
  • Reputation:   104
  • Joined:  11/19/11
  • Last Seen:  

Ai4rei is very busy , I think she doosn't support cutom request , Hope someone can help figuring out the hex code ,ty :D

Edited by QQfoolsorellina
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  12
  • Reputation:   3
  • Joined:  08/11/12
  • Last Seen:  

which client do you use?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  12
  • Reputation:   3
  • Joined:  08/11/12
  • Last Seen:  

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

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  40
  • Topics Per Day:  0.01
  • Content Count:  587
  • Reputation:   104
  • Joined:  11/19/11
  • Last Seen:  

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 ^_^

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  23
  • Topics Per Day:  0.01
  • Content Count:  96
  • Reputation:   1
  • Joined:  03/07/12
  • Last Seen:  

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:6462

I can't not find this?

im use 2012-04-10a

and can u support 2012-06-18 pls.

Edited by Altimage
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  40
  • Topics Per Day:  0.01
  • Content Count:  587
  • Reputation:   104
  • Joined:  11/19/11
  • Last Seen:  

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: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

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  23
  • Topics Per Day:  0.01
  • Content Count:  96
  • Reputation:   1
  • Joined:  03/07/12
  • Last Seen:  

Why i can't find?

37untitled.png

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  23
  • Topics Per Day:  0.01
  • Content Count:  96
  • Reputation:   1
  • Joined:  03/07/12
  • Last Seen:  

Oh, thk so much!!

Can u support code 2012-06-18?

Edited by Altimage
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  23
  • Topics Per Day:  0.01
  • Content Count:  96
  • Reputation:   1
  • Joined:  03/07/12
  • Last Seen:  

bump

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  0
  • Topics Per Day:  0
  • Content Count:  1
  • Reputation:   0
  • Joined:  05/12/12
  • Last Seen:  

bump i want hex code for 2012-06-18 thx

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...