Jump to content
  • 0

equipment slot changer


crystaleye

Question


  • Group:  Members
  • Topic Count:  41
  • Topics Per Day:  0.01
  • Content Count:  150
  • Reputation:   1
  • Joined:  06/29/12
  • Last Seen:  

hi can someone help me change all of the item_db.txt and item_db2.txt slot from [1] to [4] or any program for that to work it will be much appreciated

Link to comment
Share on other sites

5 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  43
  • Topics Per Day:  0.01
  • Content Count:  815
  • Reputation:   86
  • Joined:  10/26/12
  • Last Seen:  

i guess you have to do it manually if you dont know how to put slots on the script

ID,Name,Name,Type,Price,Sell,Weight,ATK,DEF,Range,Slot,Job,Upper,Gender,Loc,wLV,eLV,Refineable,View,{ Script },{ OnEquip_Script },{ OnUnequip_Script }

Slot before job

examples

5134,Pumpkin_Hat,Pumpkin-Head,5,20,,200,,2,,0,0xFFFFFFFF,7,2,256,,0,1,206,{ bonus2 bSubRace,RC_Demon,5; },{},{}

this

0,0xFFFFFFFF

the 0 before job is slot if you want to 4 input 4

4,0xFFFFFFFF

and i hope someone will provide a fast things for edited them...and i feel this post goes for database request not client request.

Edited by Mootie
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  22
  • Topics Per Day:  0.00
  • Content Count:  806
  • Reputation:   220
  • Joined:  03/13/12
  • Last Seen:  

Challenge Accepted!!

1) Open the item_db files in notepad++

2) Search & Replace :

a ) use regular expression mode

b ) search string => ^(\d\d*,.*),1,0x

c ) replace string => \1,4,0x

d ) replace all in document

3) Save

Assumption: Job alone is specified in hexadecimal format (0x<hex digits>)

Edited by mindstream
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  41
  • Topics Per Day:  0.01
  • Content Count:  150
  • Reputation:   1
  • Joined:  06/29/12
  • Last Seen:  

Challenge Accepted!!

1) Open the item_db files in notepad++

2) Search & Replace :

a ) use regular expression mode

b ) search string => ^(\d\d*,.*),1,0x

c ) replace string => \1,4,0x

d ) replace all in document

3) Save

Assumption: Job alone is specified in hexadecimal format (0x<hex digits>)

there is no option such as replace string there is only normal replace

Challenge Accepted!!

1) Open the item_db files in notepad++

2) Search & Replace :

a ) use regular expression mode

b ) search string => ^(\d\d*,.*),1,0x

c ) replace string => \1,4,0x

d ) replace all in document

3) Save

Assumption: Job alone is specified in hexadecimal format (0x<hex digits>)

can you explain it in details i cant get it to work

Challenge Accepted!!

1) Open the item_db files in notepad++

2) Search & Replace :

a ) use regular expression mode

b ) search string => ^(\d\d*,.*),1,0x

c ) replace string => \1,4,0x

d ) replace all in document

3) Save

Assumption: Job alone is specified in hexadecimal format (0x<hex digits>)

it only edited 1/2 of the whole database not most of the equipment were editred

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  22
  • Topics Per Day:  0.00
  • Content Count:  806
  • Reputation:   220
  • Joined:  03/13/12
  • Last Seen:  

To get the search and replace window press ctrl+h in Notepad++

To replace items with only 1 slot to 4 slots

In item_db.txt

Find What: ^(\d\d*,.*),[1],0x

Replace with: \1,4,0x

In itemslotcounttable.txt

Find what: (.*)#1#

Replace with: \1#4#

For replacing any item with slot to 4 slots

In item_db.txt

Find what: ^(\d\d*,.*),[123],0x

Replace with: \1,4,0x

In itemslotcounttable.txt

Find What: (.*)#[123]#

Replace with: \1#4#

If you find items remaining with slots they are probably commented out.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  41
  • Topics Per Day:  0.01
  • Content Count:  150
  • Reputation:   1
  • Joined:  06/29/12
  • Last Seen:  

To get the search and replace window press ctrl+h in Notepad++

To replace items with only 1 slot to 4 slots

In item_db.txt

Find What: ^(\d\d*,.*),[1],0x

Replace with: \1,4,0x

In itemslotcounttable.txt

Find what: (.*)#1#

Replace with: \1#4#

For replacing any item with slot to 4 slots

In item_db.txt

Find what: ^(\d\d*,.*),[123],0x

Replace with: \1,4,0x

In itemslotcounttable.txt

Find What: (.*)#[123]#

Replace with: \1#4#

If you find items remaining with slots they are probably commented out.

the old items which were there by default dosnt change slots can you tell me why

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