
earthlingj
Fellow UBotter-
Content Count
247 -
Joined
-
Last visited
-
Days Won
2
Everything posted by earthlingj
-
yup its 100% local dictionary. i removed it and now its not crashing. when i run it in ubot studio sometimes itll give me the error that dictionary doesnt exist... when it should and then right after crashes.
-
I am using http post plugin. right now im in the process of coding it so it uses no plugins to see if maybe one of the plugins is causing the issue. I think it may be local dictionary. **update** actually im 90% sure it is local dictionary.
-
so no one elses bot's just close out of nowhere on them? really im the only one with this problem?
-
im using ubot 4
-
Yes I am
-
I have a multi threaded bot i just made that is pretty straight forward... problem is... its crashing... as in... the bot will run... for a bit and then simply close itself? does the same in ubotstudio.. ill leave it running and i come back to it not even being open anymore. previously i solved this by not using load html. my bots all use http post plugin. Well this bot.... im not using load html or anything at all... why is it crashing like that? ubot sucks. sucks sucks sucks. doesnt matter if i use 3 threads or 20 threads. it just closes itself. at least give us a damn error log or
-
I keep getting this alert when usin the auto free memory command: http://prntscr.com/6bvqce
- 1033 replies
-
does local dictionary work with this? does the thread counting work perfectly? even when using 20+ threads?
-
[SELL] Facebook API Plugin (Extreme API Options)
earthlingj replied to LoWrIdErTJ - BotGuru's topic in Plugins
i wish you'd fix the access token this is driving me crazy doing it manually for each account. facebook doesnt change the code that often. also i was wondering if anyone knows how to tag someone in a post/comment? i tried doing what the api doc says but its not working and idk if its the plugin or if its me. -
I am trying to do an expression like the above examples of dan's "$..book[?(@.isbn)]" and getting nothing. that expression is extremely useful and would be great if this could be fixed/added ASAP! Thanks
-
[Sell] Automate Android And Ios Apps Using Ubot! +Source Codes
earthlingj replied to Ptrick125's topic in Bots and Scripts
I bought this and it is great for people who want to automate any mobile app. Mobile app 'botting' can be very profitable and with patrick's guide you can be on your way to GLORY!~ -
[FREE PLUGIN] Threads Counter - UBot v4 Threading Fixed
earthlingj replied to UBotDev's topic in Plugins
im using the exact same code in the demo here. the problem is the DECREMENTING thread count. it really doesnt seem to be thread safe. I dont want to share my full source for obvious reasons, but what i can say is.. im 100% using the exact demo in this thread and im not new to ubot ive been doing this a long time. unless defines sometimes randomly get skipped, there is no reason for the thread count to be off other than it not being thread safe and decrementing ' at the same time' which is throwing off the count. -
[FREE PLUGIN] Threads Counter - UBot v4 Threading Fixed
earthlingj replied to UBotDev's topic in Plugins
http://i.imgur.com/yZJckir.png its not thread safe. -
[FREE PLUGIN] Threads Counter - UBot v4 Threading Fixed
earthlingj replied to UBotDev's topic in Plugins
i removed threadcounter reset in the beginning of my loop and now it works much better, but still goes off sometimes. i have another bot i run 50 threads on and that one is always off. -
[FREE PLUGIN] Threads Counter - UBot v4 Threading Fixed
earthlingj replied to UBotDev's topic in Plugins
Okay i changed it to use the thread counter read instead of by variable and its still miscounting. I changed my thread code to be exactly like your example as well with the only difference being my define command. the thread counts are all outside of my define so nothing within the define code should be messing up the thread counter.... -
[FREE PLUGIN] Threads Counter - UBot v4 Threading Fixed
earthlingj replied to UBotDev's topic in Plugins
Its strange because i changed it to use defines and now after just 100 posts im at -2 threads and it stopped instead of continuing 1000s -
[FREE PLUGIN] Threads Counter - UBot v4 Threading Fixed
earthlingj replied to UBotDev's topic in Plugins
I changed it to use define like you said and it makes no difference. After hours of running, the thread counter ends up being off still. and the reason i said local dictionary is because you are sayuing define so that the value passed doesnt change, but local dictionary value shouldnt change either within the thread. -
[FREE PLUGIN] Threads Counter - UBot v4 Threading Fixed
earthlingj replied to UBotDev's topic in Plugins
it works fine at the beginning but if you leave it running for a while ( after a few hours ) thats when the thread counter goes off in one of my other bots, the thread counter sometimes even goes in the negative after a while. also, as for passing the list item in a define? why that instead of local dictionary? I thought local dictionary is thread safe? -
[FREE PLUGIN] Threads Counter - UBot v4 Threading Fixed
earthlingj replied to UBotDev's topic in Plugins
Loops is the number of scraped posts ( usually between 20-30 ) -
[FREE PLUGIN] Threads Counter - UBot v4 Threading Fixed
earthlingj replied to UBotDev's topic in Plugins
adding a stop wont work for me, because what i am doing is scraping 25 pages. then threading the process of posting on them. then when thread is back to 0. scrape next 25 pages. then thread to post on them. etc etc. plus, shouldnt thread count still be correct regardless? -
[FREE PLUGIN] Threads Counter - UBot v4 Threading Fixed
earthlingj replied to UBotDev's topic in Plugins
plugin command("HTTP post.dll", "http clear objects") plugin command("LocalDictionary.dll", "clear global dictionary") loop(99999999) { Scrape Process() set(#ThreadCount, $plugin function("Threads Counter.dll", "threads counter", "reset"), "Global") set(#Loops, $list total(%UniqueUsers), "Global") set(#ListItem, 0, "Global") loop(#Loops) { loop while($comparison(#ThreadCount, ">=", 10)) { wait(1) } set(#ThreadCount, $plugin function("Threads Counter.dll", "threads counter", "increment"), "Global") thread { -
[FREE PLUGIN] Threads Counter - UBot v4 Threading Fixed
earthlingj replied to UBotDev's topic in Plugins
This doesn't seem to be working perfectly for me. Over time, the thread count goes off. for example i have 0 threads open now in which my bot should restart its function, but thread counter is on 1 so its stuck doing nothing. -
[SELL] Facebook API Plugin (Extreme API Options)
earthlingj replied to LoWrIdErTJ - BotGuru's topic in Plugins
anyone? is the above possible? -
[SELL] Facebook API Plugin (Extreme API Options)
earthlingj replied to LoWrIdErTJ - BotGuru's topic in Plugins
How can i do similar searches to graph search? like in browser graph search i can do " men who like mcdonalds who live in texas " -
I tried threading my browser based bots and http bots but it just didnt seem to be working properly with values and such. so im wondering if there are any basic examples because the 2 videos on the sales page dont show anything about threading with browser or http bots. and why the proxy control if we can just set it directly within each thread? do we have to use the 'thread' function? etc. just a basic browser sample and http sample would be nice to see ** i haven't downloaded the update yet but still, samples of browser and http bots would be great. even simple navigate or http get reque