Недавний контент Jack77

  1. Jack77

    How to create your own recognition module (API)

    No problem Vlad. I will solve that with the new plugin update. Thank you brother!
  2. Jack77

    Discussion - new version 5.20.0.0

    Just one thing guys, please, create a category for organize plugins. I mean labels. Without category, we will have a big disorganized list of plugins :(
  3. Jack77

    Discussion - new version 5.20.0.0

    I have many C# function blocks I've made and that feature will really organize all the mess. Now, with icons, will be easier to read and organize complex projects. Besides that I realized that in project maker, plugin won't open like project inside project to follow each step. That is really a...
  4. Jack77

    How to create your own recognition module (API)

    Hi there guys. I have created my own captcha dll for some simple math captchas. But, there's no place to put my own DLL. I've tried to put in zennoposter folder like recommended in an old thread: https://zennolab.com/discussion/threads/how-to-create-your-own-recognition-module-api.2208/ But...
  5. Jack77

    Discussion - new version 5.20.0.0

    I was waiting years for this. Great shortcut feature! That will save a lot of my time.
  6. Jack77

    Delete global variable in C#

    That's interesting. Thank you Adigen.
  7. Jack77

    Delete global variable in C#

    I like the little project idea :) Do you mean different scripts share the same globals variables if they are in the same namespace?
  8. Jack77

    Delete global variable in C#

    That is a nice solution Adigen. I didn't do that because I was debugging and interrupting the poster at random moments. I was afraid about, in any of these interrupts, not allow the zennoposter to decrease the value. I'm not sure if, when you interrupt the script, the poster let the script...
  9. Jack77

    Whats wrong with this code (thread stuff)?

    Hi there VlaZ. How many bases have you used VladZ?
  10. Jack77

    Delete global variable in C#

    Thanks for your answer bud. Really appreciate But unfortunately, I'm quite sure set it to null is not the same from remove a variable. Unless the code below is wrong, change a variable to null just changes its value null. Don't remove the variable. To remove, you will have to manually remove...
  11. Jack77

    Delete global variable in C#

    Answering my own question, I think I can't do that. Had to find another way
  12. Jack77

    Whats wrong with this code (thread stuff)?

    So Vladz, I have set 10 threads. The software has initiated6 of them and later the other 4. But I do have set 10 at the beginning. The problem is that the global variable loses its value in the middle of execution. Its 0 (it is incremented) at the beginning and them from nowhere its go back to...
  13. Jack77

    Delete global variable in C#

    Hello guys. var gbVar = project.GlobalVariables["stupidglobals", "globVar1"]; Are there anyway to delete that a global variable? I'm using that for threads and unfortunately zennoposter gets that in memory after the process being executed :( Thank you.
  14. Jack77

    How to set c# code to reset globvar to 0?

    Thanks for this info LexxWork. I've got a bug and your info helped me.
  15. Jack77

    Whats wrong with this code (thread stuff)?

    Hello guys. I'm trying to lock a thread in order to each one has its own ID. To tell the truth, now I just need to know who is executed first, because the first one will do the initial stuff (copy lists and other things). So, don't know why but anyway the code get lost and I get repeated IDs...