UBotBuddy 331 Posted August 10, 2014 Report Share Posted August 10, 2014 Kev I am loving your plugin here. But a question, I have a large table loaded but when I try to add a new row it flips an error on me telling me that I have exceeded the range. So how can I increase the size? Thanks! BUddy Quote Link to post Share on other sites
Bot-Factory 602 Posted August 10, 2014 Report Share Posted August 10, 2014 Kev I am loving your plugin here. But a question, I have a large table loaded but when I try to add a new row it flips an error on me telling me that I have exceeded the range. So how can I increase the size? Thanks! BUddy Hi BUddy, you can not change the size of an existing table directly. You could write the additional data to a new table and then use:Combine large tables Or you can use the"Large Table bulk input" command The best way depends a little bit on what you want to do. And if your are using threading or not. Bulk input had some performance impact in the past. I currently create local lists / tables within my threads. Add the data to that local list/table and then use the "add large list to list" or "combine large table" commands at the end of my threads.And don't forget to delete the local list/table at the end of the thread as well. To free up some resources. Dan Quote Link to post Share on other sites
UBotBuddy 331 Posted August 10, 2014 Report Share Posted August 10, 2014 I'll probably use my existing UBot Table code and then use "Ubot Table to Large Table".Thanks for the response.Buddy Quote Link to post Share on other sites
kev123 132 Posted August 10, 2014 Author Report Share Posted August 10, 2014 I'll probably use my existing UBot Table code and then use "Ubot Table to Large Table". Thanks for the response. Buddyyou can also over specify the size of the table when creating and then simply remove the additional not used rows with the Large table Remove empty command. plugin command("Bigtable.dll", "Large table Remove empty", "testtable", 0) Quote Link to post Share on other sites
P0s3id0n 90 Posted August 11, 2014 Report Share Posted August 11, 2014 Is there a way to Remove Item from Large list or Next Large List Item? Similar to the ones already integrated on ubot normal list? Quote Link to post Share on other sites
P0s3id0n 90 Posted August 13, 2014 Report Share Posted August 13, 2014 Also is there a way to save large list to file? UPDATE: Never mind I figured out how to save it using the save to file command and the return large list function Quote Link to post Share on other sites
kev123 132 Posted August 13, 2014 Author Report Share Posted August 13, 2014 Is there a way to Remove Item from Large list or Next Large List Item? Similar to the ones already integrated on ubot normal list?no next list item no plans to add. is it this command remove from list(%mylist, 0)currently not in the plugin but I can add it. Quote Link to post Share on other sites
kev123 132 Posted August 13, 2014 Author Report Share Posted August 13, 2014 Also is there a way to save large list to file?use "large list return" and the normal ubot save to file. Quote Link to post Share on other sites
P0s3id0n 90 Posted August 13, 2014 Report Share Posted August 13, 2014 yeah the remove item from list is what I am looking to do so I can use the data correctly that way I can always use large list item position 0 once I am done using it I just remove it from the list and save the file. Doing that when ubot crashes ( as usual) you end up with a file that you cna use to pick up from where it left off. I hope I am making sense. Quote Link to post Share on other sites
CTSchmidt 1 Posted August 13, 2014 Report Share Posted August 13, 2014 (edited) Hey kev, I love your plugin but I've found a bug. All special chars (like ä,ü,ö) were converted to � is there a way to fix it? Edited August 13, 2014 by CTSchmidt Quote Link to post Share on other sites
giganut 109 Posted August 22, 2014 Report Share Posted August 22, 2014 Hello kev123, how can I use the list commands with the scrape attribute? or is there another way of scraping that I have to use with plug-in? Quote Link to post Share on other sites
stanf 43 Posted August 27, 2014 Report Share Posted August 27, 2014 any movement on the remove item from large list? Quote Link to post Share on other sites
kev123 132 Posted August 27, 2014 Author Report Share Posted August 27, 2014 Hey kev, I love your plugin but I've found a bug. All special chars (like ä,ü,ö) were converted to � is there a way to fix it?is this using a certain command or all commands?any movement on the remove item from large list?going to send a major update out at weekend it will be in it. Quote Link to post Share on other sites
stanf 43 Posted August 27, 2014 Report Share Posted August 27, 2014 @kevu da man Quote Link to post Share on other sites
kev123 132 Posted August 29, 2014 Author Report Share Posted August 29, 2014 Update 1.4 added clear all listNumber of Large tablesNumber of Large listlarge list from textLarge list from regexLarge list from xpathlarge table copy rowremove list item fixFixed a error in combine tables improvementswhole plugin rewritten to improve and maintain reliability of threads at high speed. updated plugin sent via email, 1 Quote Link to post Share on other sites
stanf 43 Posted August 29, 2014 Report Share Posted August 29, 2014 thanx Quote Link to post Share on other sites
arunner26 51 Posted August 29, 2014 Report Share Posted August 29, 2014 Kev, Thanks for the free pluggin and the update. I'll have to give it a try. Andy (Arunner26) Quote Link to post Share on other sites
giganut 109 Posted August 29, 2014 Report Share Posted August 29, 2014 Thanks kev Quote Link to post Share on other sites
UBotBuddy 331 Posted August 30, 2014 Report Share Posted August 30, 2014 Hey Kev, http://screencast.com/t/eSe5iv3PqTs I believe I encountered an error. I have been running my bot for a while now but after I updated this was the first failure. I am gearing back down to version 1.3 Thanks. Buddy Quote Link to post Share on other sites
kev123 132 Posted August 30, 2014 Author Report Share Posted August 30, 2014 Hey Kev, http://screencast.com/t/eSe5iv3PqTs I believe I encountered an error. I have been running my bot for a while now but after I updated this was the first failure. I am gearing back down to version 1.3 Thanks. Buddythanks for reporting already fixed My fault for trying to improve something at the last min and forgetting to test. i'll send the update out shortly. thanksKev Quote Link to post Share on other sites
kev123 132 Posted August 30, 2014 Author Report Share Posted August 30, 2014 Version 1.5 Fixes a issue with the table from csv command. you should have a email with the update shortly. Quote Link to post Share on other sites
Pete_UK 9 Posted September 6, 2014 Report Share Posted September 6, 2014 (edited) What's the best way to update an item in a LARGE LIST? Should I be using a Large Table and use the SET LARGE TABLE CELL instead? Edited September 6, 2014 by Pete_UK Quote Link to post Share on other sites
Bot-Factory 602 Posted September 6, 2014 Report Share Posted September 6, 2014 What's the best way to update an item in a LARGE LIST? Should I be using a Large Table and use the SET LARGE TABLE CELL instead? plugin command("Bigtable.dll", "Large list Remove item", "test", 10)plugin command("Bigtable.dll", "Large list insert", "test", 10, "New Data") But I normally use a Large Table with SET LARGE TABLE CELL Dan Quote Link to post Share on other sites
kev123 132 Posted September 6, 2014 Author Report Share Posted September 6, 2014 plugin command("Bigtable.dll", "Large list Remove item", "test", 10)plugin command("Bigtable.dll", "Large list insert", "test", 10, "New Data") But I normally use a Large Table with SET LARGE TABLE CELL Danwhat Dan said. When you move to the type of use you require I would always recommend moving to tables. Quote Link to post Share on other sites
Pete_UK 9 Posted September 7, 2014 Report Share Posted September 7, 2014 plugin command("Bigtable.dll", "Large list Remove item", "test", 10)plugin command("Bigtable.dll", "Large list insert", "test", 10, "New Data") But I normally use a Large Table with SET LARGE TABLE CELL Dan what Dan said. When you move to the type of use you require I would always recommend moving to tables. Thanks guys. Tables it is from now on. Quote Link to post Share on other sites
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.