How do I remove Unique item drop?

09/12/2017 13:18 Dream592#1
Hello, how do I remove the item below from a unique drop?
2198 ITEM_ETC_SCROLL_RETURN_02 / Special Return Scroll

I checked these tables, but I could not find the item.
RefDropItemAssign
RefDropItemGroup
RefMonsterAssi...
RefMonsterAssin.
09/12/2017 22:45 sigel123456789#2
if u want to delete drop from a unique
if u want from whole game
06/10/2023 20:03 smiletsh#3
help.... plz

.
06/12/2023 00:37 TautĄ#4
Quote:
Originally Posted by smiletsh View Post
help.... plz

.
it's not database, it will be gameserver (hardcoded)!

By default all uniques drop special return scroll with CodeName :

let's just jump that useless drop from GameServer.

1- open your debugger (I use x32dbg)
2- ctrl + g & search for 00725869
3- change "jne 0x00725862" to "jmp 0072588D".

Code:
00725869 | EB 22                    | jne sr_gameserver.725862
to

Code:
00725869 | EB 22                    | jmp sr_gameserver.72588D
and it's done no more special return scrolls from uniques drops.
07/02/2023 15:10 tiras1102#5
Quote:
Originally Posted by TautĄ View Post
it's not database, it will be gameserver (hardcoded)!

By default all uniques drop special return scroll with CodeName :

let's just jump that useless drop from GameServer.

1- open your debugger (I use x32dbg)
2- ctrl + g & search for 00725869
3- change "jne 0x00725862" to "jmp 0072588D".

Code:
00725869 | EB 22                    | jne sr_gameserver.725862
to

Code:
00725869 | EB 22                    | jmp sr_gameserver.72588D
and it's done no more special return scrolls from uniques drops.
Which file are you opened with x32dbg and how you know the value for this?
07/04/2023 06:26 TautĄ#6
Quote:
Originally Posted by tiras1102 View Post
Which file are you opened with x32dbg and how you know the value for this?
i guess, i said it is gamesever (hardcoded) and using x32dbg, and about how i can know that, you should be have experience in "asm/reverse eng"