Jump to content
UBot Underground

Aymen

Fellow UBotter
  • Content Count

    1346
  • Joined

  • Last visited

  • Days Won

    57

Everything posted by Aymen

  1. 1-didn't make extensive tests yet , i'll let you know if i find anything ! 2-it should work fine now , if it still giving errors let me know 3-It should 4-Cookie Container Advanced Mode is by default so you don't have to pick it , if you are setting cookies manually using http cookies string you change the mode to basic
  2. Http Post Plugin Update 2.5.1 Log : -Fixed bugs in cookie string sometimes not working : (how to use : http://screencast.com/t/yxc38jafGTv ) You can use this to share cookies between the browser and the http request -Fixed bug when http get/post retuning errors when url contains dots I'll look into it Marton
  3. I'm not saying there is no problems what so ever , i'm saying you got to be a little bit cool about it , if any errors exists i will gradually get everything fixed , with that usual extra cherry on top of the pie i always add! I'm just saying you got to be patience , send complete bug reports like everyone else does , just saying "don't work" won't fix anything and won't help anybody! A good bug report would be : -Description of the bug -Steps to reproduce or code snippet And the most important step is to be patient , in the end i only have 2 hands ! Regards,
  4. OK for the gazillion time ! the plugin works great in multi threaded mode! saving data is another story , that is not related to the plugin! I'm working on a workaround for you all to use with third party Ubot plugins , as local variables are no use when used with third party plugins functions to save data (i'm still not sure why that happens) I'll post an update here soon! PS: this problem is clearly not related to my plugins so I'd appreciate some understanding , and the reason why i'm making workarounds for you guys is merely to help out ! Regards,
  5. as far as i know the problem may be between the thread command and the local dictionary plugin! I'll try to run the code you sent and narrow things down! If local variables worked in the first place , none of this ennoying bugs would of happened in the first place
  6. I remember that i tested the code you sent me and it did work fine for me and it compiles just fine too! The problem is not from the http post plugin
  7. Update 1.3.5 Log : -fixed Pop emails to table Bug returning blank rows -fixed imap test connection sometimes returning false -fixed bug of sometimes failing to send email using gmail smtp server! -Couple of more minor bug fixes and improvements!
  8. Ok i'll try to update the source code , and release version 1.3.5 today! regards,
  9. Hey Dan i think i explained the reason in here http://www.ubotstudio.com/forum/index.php?/topic/15459-sell-ubot-email-plugin-supercharge-your-ubot-bots/page-6&do=findComment&comment=97186 Did you test the accounts individually one by one without threading ? did you get the same results ?
  10. this is a small multi threaded POP tester i quickly put together today to show you a small workaround to bypass local variables issue! make sure to download the latest file management plugin https://dl.dropboxusercontent.com/u/53719172/files/File%20Management.zip POP3 tester.ubot
  11. Thanks Marton , if you can open a new thread with this source i'm sure a lot of people will see it and will appreciate it ! Thank you for the work Regards,
  12. I just want to state that the http post plugin is built for the v4 not for the v5 , i've never tested it with the v5 nor used it with the v5 , my initial tests with the v5 showed that the threading system in both v4 and v5 are built differently as some of the http post functions (http last response , http cookies response etc...) requires the thread ID to keep data unique to each thread , looks like the plugin is not capturing the thread id with the V5! about cookies , cookies are unique per session , if you open multiple sessions in different threads , you will see different cookies And yes
  13. you can use $spin function for spinning second question i don't really understand :/
  14. I'm working on an update for this plugin and will be released in few days! If that's what you mean ... Regards,
  15. last time i checked it was working , make sure your proxy is working!
  16. try this link : https://dl.dropboxusercontent.com/u/53719172/files/File%20Management.zip
  17. the local dictionary plugin is mainly built to work with the http post plugin so i'm not sure about the other plugins , use the local dictionary as a first choice and keep this workaround as a substitute i'm not sure what version you use! Just go to the file management thread and download the plugin from there , it is the latest version !
  18. This is a small source code i coded today for few people who needed it! Basically this is another workaround for local variables leakage , this will allow you to save data and retrieve it just like local variables but (hopefully) won't get messed up! PS: this uses the file management plugin so make sure to install it first! Enjoy! Thread Safe Variables.ubot
  19. Can you poste a code snippet ? or steps to reproduce the error ?
  20. an easy way to do it is to use thread id function from my file management plugin to identify stats you change based on thread id!
  21. There is 2 commands that convert html to pdf , one works and one broken ! the broken one will be removed in the future! We will check that out!
  22. You will have the name spaces (that starts with using) in the very beginning of your C# file Any name space that is not in the System.dll (added by default to your project) need to be added using add .net assembly then add the assembly file (usually the namespace + .dll) and the namespace required to run the class!
  23. try this code plugin command("CsharpCompiler.dll", "csharp container") { plugin command("CsharpCompiler.dll", "csharp add namespace", "System.Globalization") plugin command("CsharpCompiler.dll", "csharp add namespace", "System.Collections.Generic") plugin command("CsharpCompiler.dll", "csharp add namespace", "System.Text") plugin command("CsharpCompiler.dll", "csharp Framework version", "v4.0") plugin command("CsharpCompiler.dll", "csharp platform", "anycpu") plugin command("CsharpCompiler.dll", "csharp add function", "private List<DateTime> GetDateRange(DateTime
  24. First the http post plugin will be changed slowly to not reply on the http container , and it was designed to work with the local dictionary so that won't be a problem to you usually errors are related to "bad object casting" I just postponed by projects to resume next week so i'll spend this time to make all the plugins updates required ! Regards
  25. Yes , the local variables are built to be used with the core functions only , that is why many face a lot of problems when they try to use ti with other things except the browser commands/functions! But i created workarounds so people don't blame me for other peoples mistakes : For example one can save threads data to files , based on the thread id as name so then you can save the data to files and retrieve those data based on the thread id! Local dictionary won't work with some plugins that uses containers because for some reason a non container command (set local ditionary for instance)
×
×
  • Create New...