Jump to content
  • 0

equipment slot changer


Question

5 answers to this question

Recommended Posts

Posted (edited)

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
Posted (edited)

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
Posted

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

Posted

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.

Posted

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

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.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...