Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

How to add NEW ancient items on your server.

Newbie Spellweaver
Joined
Feb 19, 2008
Messages
29
Reaction score
2
To do this, you need to correct such files:
Client
ItemSetOption.bmd
ItemSetType.bmd
Server
ItemSetOption.txt
ItemSetType.txt
To begin, select a items. In my case it is Phoenix Helm,Armor,Pants.
Open item.bmd and search it.
sanjaa - How to add NEW ancient items on your server. - RaGEZONE Forums

Helm's number is 3601
Armor's number is 4113
Pants's number is 4625
Then Translate these values into HEX
Helm is E11
Armor is 1011
Pants are 1211
Then Share values on 2 Groups
Helm is E-11
Armor is 10-11
Pants are 12-11
Then Translate second groups into DEC
Helm is 11-=>17 ;
Armor is 11-=>17 ;
Pants are 11-=>17 ;
Then open itemsetoption.txt(server) and create new line.
sanjaa - How to add NEW ancient items on your server. - RaGEZONE Forums

For this you need goehdtjdrnr's explain:
Code:
##### code :

// link number name option2-1 value option2-2 value option3-1 value option3-2 value option4-1 value option4-2 value option5-1 value option5-2 value option6-1 value option6-2 value option7-1 value option7-2 value option8 value option9 value full1 value full2 value full3 value full4 value full5 value 흑마법사 흑기사 요정 마검사 다크로드
// 흑기사
1 "무도가" 0 10 -1 -1 19 10 -1 -1 13 20 -1 -1 14 5 -1 -1 10 20 -1 -1 1 10 -1 -1 -1 -1 -1 -1 15 5 17 5 0 25 -1 -1 -1 -1 0 0 0 0 0
end

##### code explain :

1 : link number (set number)

"무도가" : set name

0 : option2-1 : first option for wearing 2 set items
---> 0 : increase strength
10 : value : increase strength + 10

-1 : option2-2 : second option for wearing 2 set items
---> -1 : meaning no option
-1 : meaning no value

--- 중간 생략 ---

15 : full1 : option 1 for wearing full set items
---> 15 : critical damage rate
5 : value : critical damage rate + 5%

17 : full2 : option 2 for wearing full set items
---> 17 : excellent damage rate
5 : value : excellent damage rate + 5%

0 : full3 : option 3 for wearing full set items
---> 0 : increase strength
25 : value : increase strength +25

--- 중간 생략 ---

##### option explain :

0 - increase strengh
1 - increase dexterity
2 - increase energe
3 - increase physics
5 - increase minimum attack damage
6 - increase maximum attack damage
7 - increase magic damage
8 - increase damage (maybe(by me))
9 - increase attack successfull rate
10 - increase defence
11 - increase maximum life
12 - increase maximum mana
13 - increase maximum AG
14 - increase AG
15 - critical damage rate
16 - increase critical damage
17 - excellent damage rate
18 - increase excellent damage
19 - increase skill damage
20 - double damage rate
21 - ignore enermy's defense
22 - increase shield's defence
23 - increase damage two handed weapon
After this go to itemsettype.txt (server)
Add the items to correct groups (7 helms,8 armors,9 pants,.....)
sanjaa - How to add NEW ancient items on your server. - RaGEZONE Forums

In ItemSetOption.txt Must be the same items as in ItemSetType.txt.
Now go to client.
Open ItemSetOption.bmd
Add new line on number 2 (in my case)
Now enter the same value as on the server.
!!!!ItemsSetOption.bmd is different!!!!!
First goes options of set.
sanjaa - How to add NEW ancient items on your server. - RaGEZONE Forums

Then goes values of set.
Values are different too.
If you need <125 value thet write how it is.
If you wont 250 value (for strengh (for example))
then write -6 (I dont understand this :scratch:)

Edit:Explain:
250 = 256 - 6
200 = 256 - 56, need write "-56"
175 = 256 - 81, need write "-81"

If you need % then write real value (35(for example))
sanjaa - How to add NEW ancient items on your server. - RaGEZONE Forums

In FULLoptions Similarly.
Then go to ItemSetType.bmd
Find your item (in my case 3601-phoenix helm) and add it to group (in my case 2)
sanjaa - How to add NEW ancient items on your server. - RaGEZONE Forums

That is all!
If you have massege "file corrupted" then open your main in ollydbg.
RB ->search -> Search for -> All referenced text strings.
RB ->Search for text -> "file corrupted"
//select "Entire scope"
when find press enter
over a string find "JE SHORT ......."
JE change->JMP
RB -> select all
RB ->copy to executable
RB ->Save file (but rename main.exe!!!!)
That is all.
How to get new ancient items?
Go to TMT MUMAKER 1.5
Select item (in my case Phoenix helm) and get hex code.
sanjaa - How to add NEW ancient items on your server. - RaGEZONE Forums

Then change
11005062533F00000070000000000000
to
0x11005062533F00000570000000000000
Then go to Query Analiser
PUT This in SQL QUERY :

UPDATE warehouse SET Items =item_code WHERE AccountID = 'account'

And press F5

Remember to change active base from master to MuOnline.

Change the account for name of your account in game then
copy this hex code in place of item_code.

Credits:
[BoR]S@nek for guide "file corrupted"
[BoR]SharedNoob foru guide "Item numbers","Hex codes of items"
goehdtjdrnr for guide "itemsetoptions.txt"
I must write credits to editors?
If something is not right then tell!

Editor from <c>WebZen for ItemSetOption.bmd
 
Last edited:
Newbie Spellweaver
Joined
Aug 30, 2006
Messages
10
Reaction score
0
Re: [Guide]How to add NEW ancient items on your server.

what tool did you use to edit ItemSetOption.bmd and
ItemSetType.bmd?
]Btw thank very good guide :)
 
Newbie Spellweaver
Joined
Feb 19, 2008
Messages
29
Reaction score
2
Re: [Guide]How to add NEW ancient items on your server.

MG91v. for itemsetoption anditemsettype extremuedit 0.7
thx
sorry for bad english
 
Elite Diviner
Joined
Feb 14, 2006
Messages
407
Reaction score
7
Re: [Guide]How to add NEW ancient items on your server.

Very good guide. I'd tried to make new acient sets before and i was successful. My english is poor for me to write a guide. 10/10.
 
Mythic Archon
Loyal Member
Joined
Oct 31, 2007
Messages
762
Reaction score
14
Re: [Guide]How to add NEW ancient items on your server.

If you use the item code to set it into the char/vault, i think it'll be detected as dupe.
 
Newbie Spellweaver
Joined
Feb 19, 2008
Messages
29
Reaction score
2
Re: [Guide]How to add NEW ancient items on your server.

no,if change serial
in mumaker you can do this
62533F00 change to
62533F01 or
62533F02 or.....
 
Experienced Elementalist
Joined
Jan 1, 2008
Messages
293
Reaction score
12
Re: [Guide]How to add NEW ancient items on your server.

Wow nice guide I will try it !
 
Newbie Spellweaver
Joined
Feb 19, 2008
Messages
29
Reaction score
2
Re: [Guide]How to add NEW ancient items on your server.

All questions write here,I answer
(sorry for bad english-learn on RZ ^^)
 
Newbie Spellweaver
Joined
Aug 1, 2006
Messages
50
Reaction score
0
Re: [Guide]How to add NEW ancient items on your server.

Nice guide...

Anyone know who i can actually make swords that are 2 hands into 1 hand?
 
Newbie Spellweaver
Joined
Aug 1, 2006
Messages
50
Reaction score
0
Re: [Guide]How to add NEW ancient items on your server.

Not sure, but should be In item.bmd and item.txt

I thought of that buy, i don't want to mess around with the files, to be crashing everytime, i hope someone knows how to do it.
 
I'll take you all on.
Loyal Member
Joined
May 11, 2004
Messages
3,253
Reaction score
6
Re: [Guide]How to add NEW ancient items on your server.

thanks got this great guide
 
Newbie Spellweaver
Joined
Apr 10, 2007
Messages
57
Reaction score
0
Re: [Guide]How to add NEW ancient items on your server.

Help, please.
When i wear two or more ancient items i don't see any ancient options =(
 
Junior Spellweaver
Joined
Jun 6, 2007
Messages
118
Reaction score
4
Re: [Guide]How to add NEW ancient items on your server.

Nice guide...

Anyone know who i can actually make swords that are 2 hands into 1 hand?

In item.bmd the 2 handed items are coded 1 - change the 1 to 0 in that column to make 1 handed. It is column #7 in the table - if you use ExtremeMUEdit then its labelled HAND.

Excellent ancient guide - great work.

Malice
 
Newbie Spellweaver
Joined
Feb 19, 2008
Messages
29
Reaction score
2
Re: [Guide]How to add NEW ancient items on your server.

Help, please.
When i wear two or more ancient items i don't see any ancient options =(

Maybe they are from different sets?
 
Newbie Spellweaver
Joined
Aug 22, 2007
Messages
34
Reaction score
0
Re: [Guide] How to add NEW ancient items on your server.

it is very cool ...
 
Experienced Elementalist
Joined
Aug 25, 2005
Messages
253
Reaction score
20
Re: [Guide] How to add NEW ancient items on your server.

Can someone explain to me how do I make the difference between two same items that belong to different sets. For example, I added S3Ep2 sets: Vicious, Isis, Aruane, Muren, Agnis and Browii. The thing is I can't make Isis Legendary Helm because it will create Anubis Legendary Helm.

Any help is appreciated.

Nvm, it worked with CzF Editor. :|
But now I have this issue. The set is complete. I have the animation(those purple curves around me) but in inventory it doesn't highlight all the options:
sanjaa - How to add NEW ancient items on your server. - RaGEZONE Forums

sanjaa - How to add NEW ancient items on your server. - RaGEZONE Forums
 
Elite Diviner
Joined
Feb 14, 2006
Messages
407
Reaction score
7
Re: [Guide]How to add NEW ancient items on your server.

Nice guide...

Anyone know who i can actually make swords that are 2 hands into 1 hand?
It had a guide about this problem. You can find in GUIDE Center,
 
Back
Top