Aurora 4 Posted September 7, 2015 Anyone can share some tips on how to do this in the easiest way possible? I'm talking adding them in bulk. TIA! Quote Share this post Link to post Share on other sites
0 Garr 117 Posted September 7, 2015 Bunch edit as in you can now edit few items at once, for example if you'll highlight few items inside item_db and edit weight to 10, all highlighted items will change their weight to 10. SDE also has client description autocomplete depending on item_db1/2. Python script lets you make your own changes depending on your own conditions, but that requires some Python knowledge, check the topic I linked you to, Tokei wrote some example python scripts. 2 Aurora and Nebraskka reacted to this Quote Share this post Link to post Share on other sites
0 Garr 117 Posted September 7, 2015 SDE + bunch edit/Python script? Quote Share this post Link to post Share on other sites
0 Aurora 4 Posted September 7, 2015 SDE + bunch edit/Python script? edit/Python script? Quote Share this post Link to post Share on other sites
0 Aurora 4 Posted September 7, 2015 Bunch edit as in you can now edit few items at once, for example if you'll highlight few items inside item_db and edit weight to 10, all highlighted items will change their weight to 10. SDE also has client description autocomplete depending on item_db1/2. Python script lets you make your own changes depending on your own conditions, but that requires some Python knowledge, check the topic I linked you to, Tokei wrote some example python scripts. Thanks @@Garr. I guess need to explore SDE first =) Quote Share this post Link to post Share on other sites
0 Tokeiburu 229 Posted September 7, 2015 Here, for instance : x = 1;for id in range(20000, 20010): item_db2[id] = item_db[501]; #copies the item 501 to your item_db2 10 times item_db2[id, "aegis_name"] = item_db[501, "aegis_name"] + "_" + str(x); item_db2[id, "name"] = item_db[501, "name"] + " " + str(x); x = x + 1 This python script will add 10 items based on the item 501 in your item_db2. It will also add an id at the end of the AegisName and Name fields. You can obviously remove that last part...! 1 Nebraskka reacted to this Quote Share this post Link to post Share on other sites
Anyone can share some tips on how to do this in the easiest way possible? I'm talking adding them in bulk. TIA!
Share this post
Link to post
Share on other sites