Disabling 'Cash Shop' button in upper right corner

deviruzy

New member
Messages
67
Points
0
 Good day.

 Is there a way to disable the cash shop button in upper right corner?

 Would you teach me please if you know?

 Thank you.

 
Last edited by a moderator:
{ /* All zone is a dynamic (very special) zone that is forcebly inherited by ALL maps automatically */ name: "All" /* changing this name requires MAP_ZONE_ALL_NAME to also be changed in src/map/map.h file */ disabled_skills: { //both examples below disable napalm beat (id 11) to players //MG_NAPALMBEAT: "PLAYER" //ID11: "PLAYER" } disabled_items: { //Both examples below disable apple (id 501) //Apple: true //ID501: true } mapflags: ( "nocashshop", ) /* "command:min-group-lv-to-override" e.g. "heal: 70" */ disabled_commands: { //Example Below makes @heal be used in maps within this zone only by those group lv 70 and above //heal: 70 } skill_damage_cap: { //Exemple Below caps firebolt damage in maps within this zone to a maximum 50 damage, // (depends on HMAP_ZONE_DAMAGE_CAP_TYPE in src/config/core.h) // when cast vs players and monsters. //MG_COLDBOLT: (50,"PLAYER | MONSTER") }},
    mapflags: (

"nocashshop",

)

@ pre-re/map_zone_db.conf

db/re/map_zone_db.conf

 
Last edited by a moderator:
You need to hex your client..

Find this:

4E 43 5F 43 61 73 68 53 68 6F 70and replace with
Code:
00 00 00 00 00 00 00 00 00 00 00
This would disable cashshop.
* back up your client first just in case something goes wrong.

 
This could be a nice diff to get added in NEMO (/me rolls eyes)

 
 Thanks to 'kyeme' I was able to stop opening the cash shop by clicking it but removing the cash shop button however left as a failure. I opened my client by using HxD but I could not find :

4E 43 5F 43 61 73 68 53 68 6F 70 
 Is there any other way? different code maybe?

 Thank you.

 
What's your client date?

Code:
 Is there any other way? different code maybe?
String Search: NC_CashShop but I doubt you can search that 'cause you cant search for that hex code I gave you.
 
I did it! I made the 'Cash Shop' Button disappear!

I searched for "NC_CashShop" instead of just searching for "cash" and found the code you told me in the first place:

4E 43 5F 43 61 73 68 53 68 6F 70
Then like you said I changed them all to:

00 00 00 00 00 00 00 00 00 00 00
Wen I started my RO client after saving HxD job The Cash Shop button wasn't there anymore.

Thank you so much quesoph.

Thank you all.

p.s. I didn't forget to backup my client before changing the code like you said, haha
default_biggrin.png
.

 
Last edited by a moderator:
Back
Top