crystaleye Posted December 19, 2012 Posted December 19, 2012 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 Quote
Mootie Posted December 19, 2012 Posted December 19, 2012 (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 December 19, 2012 by Mootie Quote
Neo-Mind Posted December 19, 2012 Posted December 19, 2012 (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 December 19, 2012 by mindstream Quote
crystaleye Posted December 20, 2012 Author Posted December 20, 2012 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 Quote
Neo-Mind Posted December 20, 2012 Posted December 20, 2012 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. Quote
crystaleye Posted December 20, 2012 Author Posted December 20, 2012 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 Quote
Question
crystaleye
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
5 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.