[guide] how to add new ancient items on your server. - ragezone forums.pdf

Upload: qwertyu

Post on 02-Mar-2016

1.502 views

Category:

Documents


68 download

DESCRIPTION

game mu online

TRANSCRIPT

  • Welcome to the RaGEZONE - MMORPG development

    forums.

    l Login:

    l

    l

    l Remember Me?

    l

    l Register

    m Today's Posts

    m FAQ

    m Community

    m Forum Actions

    m Quick Links

    [Guide] How to add NEW ancient items on your server. - RaGEZONE forums

    l Advanced Search

    http://forum.ragezone.com/f196/add-new-ancient-items-server-462646/ (1 of 12)18/08/2013 14:06:56

    l Forum

    l News

    l General War

    l Raffles

    l What's New?

    l

    Forum MMO Zone MMO and MMORPG Developments MU Online MU Tutorials [Guide] How to add NEW ancient items on your server.

    1.

    How to add NEW ancient items on your server.This is a discussion on How to add NEW ancient items on your server. within the MU Tutorials forums, part of the MU Online category; To do this, you need to correct such files: Client ItemSetOption.bmd ItemSetType.bmd Server ItemSetOption.txt ItemSetType.txt To begin, select a items. ...

    Page 1 of 41234 LastResults 1 to 15 of 54

    LinkBack

    Thread Tools

    1. 03-09-08 #1

    Member

    sanjaa

    RankMember

    Join DateFeb 2008

  • [Guide] How to add NEW ancient items on your server. - RaGEZONE forums

    http://forum.ragezone.com/f196/add-new-ancient-items-server-462646/ (2 of 12)18/08/2013 14:06:56

    How to add NEW ancient items on your server.

    Locationin the yard

    Posts52

    Liked1

    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.

    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.

    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 0end

    ##### code explain :

    1 : link number (set number)

    "" : set name

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

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

    --- ---

  • [Guide] How to add NEW ancient items on your server. - RaGEZONE forums

    http://forum.ragezone.com/f196/add-new-ancient-items-server-462646/ (3 of 12)18/08/2013 14:06:56

    After this go to itemsettype.txt (server) Add the items to correct groups (7 helms,8 armors,9 pants,.....)

    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.

    Then goes values of set. Values are different too. If you need 15 : critical damage rate5 : value : critical damage rate + 5%

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

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

    --- ---

    ##### option explain :

    0 - increase strengh1 - increase dexterity2 - increase energe3 - increase physics5 - increase minimum attack damage6 - increase maximum attack damage7 - increase magic damage8 - increase damage (maybe(by me))9 - increase attack successfull rate10 - increase defence11 - increase maximum life12 - increase maximum mana13 - increase maximum AG14 - increase AG15 - critical damage rate16 - increase critical damage17 - excellent damage rate18 - increase excellent damage19 - increase skill damage20 - double damage rate21 - ignore enermy's defense22 - increase shield's defence23 - increase damage two handed weapon

  • [Guide] How to add NEW ancient items on your server. - RaGEZONE forums

    http://forum.ragezone.com/f196/add-new-ancient-items-server-462646/ (4 of 12)18/08/2013 14:06:56

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

    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)

    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.

    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 WebZen for ItemSetOption.bmd

  • [Guide] How to add NEW ancient items on your server. - RaGEZONE forums

    http://forum.ragezone.com/f196/add-new-ancient-items-server-462646/ (5 of 12)18/08/2013 14:06:56

    2.

    3.

    4.

    03-09-08 #2

    03-09-08 #3

    Reply With Quote

    Member

    Reply With Quote

    Member

    Last edited by sanjaa; 30-01-10 at 09:52 PM.

    Re: [Guide]How to add NEW ancient items on your server.

    kate beckinsale

    RankMember

    Join DateAug 2006

    Posts36

    Liked0

    sanjaa

    RankMember

    Join Date

    WebZen likes this.

    what tool did you use to edit ItemSetOption.bmd and ItemSetType.bmd? ]Btw thank very good guide :)

    http://rs548.rapidshare.com/files/16...oolProject.rar

    Kate beckinsale is mine

    Originally Posted by Jesus

    STFU you could never make something so beautiful she is mine

    Originally Posted by Devil

  • [Guide] How to add NEW ancient items on your server. - RaGEZONE forums

    http://forum.ragezone.com/f196/add-new-ancient-items-server-462646/ (6 of 12)18/08/2013 14:06:56

    5.

    6.

    04-09-08 #4

    04-09-08 #5

    Reply With Quote

    |\|i[e |-|0rSe

    Reply With Quote

    ^-~

    Re: [Guide]How to add NEW ancient items on your server.

    Re: [Guide]How to add NEW ancient items on your server.

    Re: [Guide]How to add NEW ancient items on your server.

    Feb 2008

    Locationin the yard

    Posts52

    Liked1

    RedMG

    Rank

    Join DateFeb 2006

    LocationVit Nam

    Posts760

    Liked19

    iBimbo

    Rank

    Join DateOct 2007

    LocationSection 192

    Posts2,725

    Liked51

    MG91v. for itemsetoption anditemsettype extremuedit 0.7 thx sorry for bad english

    Member +

    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.

    Alpha Member

    If you use the item code to set it into the char/vault, i think it'll be detected as dupe.

    MMOGs DEV

  • [Guide] How to add NEW ancient items on your server. - RaGEZONE forums

    http://forum.ragezone.com/f196/add-new-ancient-items-server-462646/ (7 of 12)18/08/2013 14:06:56

    7.

    8.

    04-09-08 #6

    04-09-08 #7

    Reply With Quote

    Member

    Reply With Quote

    Proud Bulgarian !

    Re: [Guide]How to add NEW ancient items on your server.

    Please... Use the more often, it helps all mod on rz.

    sanjaa

    RankMember

    Join DateFeb 2008

    Locationin the yard

    Posts52

    Liked1

    NezuL

    Rank

    Join DateJan 2008

    LocationBulgaria

    Posts470

    Liked

    no,if change serial in mumaker you can do this 62533F00 change to 62533F01 or 62533F02 or.....

    Member +

    Wow they let habboons drive now?

    Originally Posted by Canon

    stay away from weed is all i can say.

    Marijuana all the way. Alcohol just damages you.

    Originally Posted by DefMagee

    Originally Posted by DefMagee

  • [Guide] How to add NEW ancient items on your server. - RaGEZONE forums

    http://forum.ragezone.com/f196/add-new-ancient-items-server-462646/ (8 of 12)18/08/2013 14:06:56

    9.

    10.

    04-09-08 #8

    07-09-08 #9

    Reply With Quote

    Member

    Reply With Quote

    Member

    Re: [Guide]How to add NEW ancient items on your server.

    Re: [Guide]How to add NEW ancient items on your server.

    17

    sanjaa

    RankMember

    Join DateFeb 2008

    Locationin the yard

    Posts52

    Liked1

    021llf4

    RankMember

    Join DateAug 2006

    Locationmon

    Posts70

    Liked0

    Wow nice guide I will try it !

    All questions write here,I answer (sorry for bad english-learn on RZ ^^)

  • [Guide] How to add NEW ancient items on your server. - RaGEZONE forums

    http://forum.ragezone.com/f196/add-new-ancient-items-server-462646/ (9 of 12)18/08/2013 14:06:56

    11.

    12.

    07-09-08 #10

    07-09-08 #11

    Reply With Quote

    ^-~

    Reply With Quote

    Member

    Re: [Guide]How to add NEW ancient items on your server.

    Re: [Guide]How to add NEW ancient items on your server.

    iBimbo

    Rank

    Join DateOct 2007

    LocationSection 192

    Posts2,725

    Liked51

    Please... Use the more often, it helps all mod on rz.

    021llf4

    RankMember

    Join DateAug 2006

    Locationmon

    Posts70

    Liked

    Nice guide...

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

    Alpha Member

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

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

    Originally Posted by 021llf4

    Wow they let habboons drive now?

    Originally Posted by Canon

    stay away from weed is all i can say.

    Marijuana all the way. Alcohol just damages you.

    Originally Posted by DefMagee

    Originally Posted by DefMagee

  • [Guide] How to add NEW ancient items on your server. - RaGEZONE forums

    http://forum.ragezone.com/f196/add-new-ancient-items-server-462646/ (10 of 12)18/08/2013 14:06:56

    13.

    14.

    11-09-08 #12

    12-09-08 #13

    Reply With Quote

    I'll take you all on.

    Reply With Quote

    Member

    Re: [Guide]How to add NEW ancient items on your server.

    Re: [Guide]How to add NEW ancient items on your server.

    0

    Liselotte

    Rank

    Join DateMay 2004

    LocationSector 7

    Posts6,034

    Liked8

    "My father was the wheel! The first wheel! And do you know what he transformed into? Nothing! But he did so with honor! Dignity!" - Jetfire

    -groove-

    RankMember

    Join DateApr 2007

    Posts76

    Liked

    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.

    Omega

    thanks got this great guide

    Why does Will Smith always play a black man?

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

    Originally Posted by Someone from IMDB

    Originally Posted by iBimbo

  • [Guide] How to add NEW ancient items on your server. - RaGEZONE forums

    http://forum.ragezone.com/f196/add-new-ancient-items-server-462646/ (11 of 12)18/08/2013 14:06:56

    15.

    16.

    12-09-08 #14

    12-09-08 #15

    Reply With Quote

    Account Upgraded | Title Enabled!

    Reply With Quote

    Member

    Reply With Quote

    Re: [Guide]How to add NEW ancient items on your server.

    Re: [Guide]How to add NEW ancient items on your server.

    0

    Malice2010

    Rank

    Join DateJun 2007

    Posts192

    Liked6

    sanjaa

    RankMember

    Join DateFeb 2008

    Locationin the yard

    Posts52

    Liked1

    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 =(

    Member +

    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

    Maybe they are from different sets?

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

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

    Originally Posted by 021llf4

    Originally Posted by -groove-

  • [Guide] How to add NEW ancient items on your server. - RaGEZONE forums

    Page 1 of 41234 Last

    Previous Thread | Next Thread

    l Contact Us

    l RaGEZONE

    l Archive

    l Privacy Statement

    l Top

    RaGEZONE is sponsored by HostKey.

    Powered by vBulletin Copyright , Jelsoft Enterprises

    Ltd.

    All times are GMT +1. The time now is 01:04 PM.

    RaGEZONE - MMORPG development forums

    http://forum.ragezone.com/f196/add-new-ancient-items-server-462646/ (12 of 12)18/08/2013 14:06:56

    ragezone.com[Guide] How to add NEW ancient items on your server. - RaGEZONE forums

    ELEHPHBMMHJFDCGOAJAINJFMDAAHHLFGLL: form1: x: f1: User Namef2: Passwordf3: f5: b57225fdd91edc36f6d9313e8574a53ef6: guestf7: loginf8: f9:

    f4:

    form3: x: f1: dismissnoticef2: s=b57225fdd91edc36f6d9313e8574a53e&f3: guestf4: f5:

    form4: x: f1: 462646f2: b57225fdd91edc36f6d9313e8574a53e

    form7: f1: Click here to view the original image of 704x209px and 6KB.f2: Click here to view the original image of 704x209px and 3KB.f3: Click here to view the original image of 704x209px and 3KB.

    form5: x: f1: 462646f2: b57225fdd91edc36f6d9313e8574a53e

    form6: x: f1: 115

    form2: x: f1: guestf2: processf3:

    f4: