Jump to content
UBot Underground

AtmoPress

Fellow UBotter
  • Content Count

    38
  • Joined

  • Last visited

  • Days Won

    3

Posts posted by AtmoPress

  1. The problem is that Ubot API does not allow the plugin to use local variable or list.

    I can not do anything.

    Ubot has not developed this part for many years.

     

    Ahh! Thanks for the clarification Pash. No worries. Definitely a bummer that the Ubot API works that way, but I'll figure out a workaround. Thanks for the quick support! :-)

  2. Hey Pash!

     

    Love your plugins! I ran into one problem recently with the Advanced Data Text File plugin. When using the list remove parameter or command, it doesn't appear to work with local lists.

     

    I had it filtering a list to remove entries containing the string "gif" and when I used it against a local list, it wouldn't work. As soon as I make the list Global, it works perfectly. Both the list and the List Remove parameter were contained within the same define, so this wasn't a scoping issue.

     

    I appreciate any help you can offer. :-)

     

    Example Code:

    define local list example {
        add list to list(%localList,$list from text("1a,1b,1c,2a,2b,2c,3a,3b,3c",","),"Delete","Local")
        alert($list total(%localList))
        plugin command("Advanced Data Text File.dll", "list remove", %localList, "a", "Contains")
        alert($list total(%localList))
    }
    define global list example {
        add list to list(%globalList,$list from text("1a,1b,1c,2a,2b,2c,3a,3b,3c",","),"Delete","Global")
        alert($list total(%globalList))
        plugin command("Advanced Data Text File.dll", "list remove", %globalList, "a", "Contains")
        alert($list total(%globalList))
    }
    local list example()
    global list example()
    
    
  3. LOL, happy botting then. This reminds me of my own entry. Good start ;-)

     

    Your suggestions were immensely helpful. So, thank you! It was pretty cool to search the forum see how nearly unanimously everyone suggested the ExBrowser and HTTP Post plugins. I also enjoyed when I watched the demo video of ExBrowser and realized that one of the bots I was going to purchase a few months back was most likely made with Ubot + ExBrowser!

     

    I've also joined up on the Skype group, so that should be cool to see what kind of problems/solutions people come up with.

    • Like 1
  4. Hi SEO and welcome.

     

    Google was founded with Python, Artificial Intelligence is big with Python as well.

     

    Learning UBot is a good training and at the same time can produce really useful results. With UBot you can automate a lot of different decision making processes and tasks in general.

     

    Would definetly recommend to start with UBot coding first, cause it allows you a much more rapid development and deployment (and ease of use).

     

    There are also many useful (paid) plugins: http://network.ubotstudio.com/forum/index.php/forum/63-plugins/

     

    Also you can find a few useful free ones out there in the forum, for example from TJ (also called LoWrIdErTJ or simply BotGuru).

     

    P.S.: As you are a web developer, you can play on your strengths with UBot quite a bit. Just try some UI HTML Panel (using it as the user interface) and see how it can work in real time with the UBot Logic "as a back end" - for me, that is a really cool capability. And/or you may want UBot to communicate with (or remote control) your web applications.

     

    Thanks Pro! I've been browsing the plugins area. Any that you might suggest as being "must have?" My concern with the plugins is that the companies behind them continue to be around. I love the open nature of allowing anyone to code plugins for your platform, but that's the primary drawback. It's one of the issues that WordPress often has. Have you had any issues with plugins made for Ubot?

  5. Thank you all for the greetings!

     

     

    Welcome!!

    Python is a lovely language!!

    Enjoy your stay...

     

    I've liked it so far. I haven't gotten too deep into it as I've been so busy, but I definitely think it'll be an important language for me to know for what I want to do.

     

    Welcome to the community

     

    Thanks TJ! I see you've built quite the business from bots. Is it what you do full-time? What was the first bot you made? I'm also curious how you manage the licensing and auto-updates for your bots.

  6. Hi There,

     

    I recently purchased Ubot Developer and look forward to making bots. I'm currently on the 8th video in the training. I've dabbled in coding for the last 15-17 years. I started out with HTML and PHP when I was really young and I've slowly added to my skill set. Other skills I've learned include CSS, Javascript, MySQL, RegEx (just enough to be help me through tedious tasks) and I'm starting to learn Python. I've also used Team Treehouse in the past to help learn coding (I highly recommend it for those who want to learn to code).

     

    I've used another bot maker in the past, but just as a thing to mess around with. Quite honestly, it was a very cumbersome setup that was just slightly better than coding everything by hand. So, while it was fun to play with, it just didn't seem like a viable thing to build a business off of.

     

    I'm really happy that you guys ran the recent discount, as it was the thing that caught my attention and made me want to learn more. Then, while learning more, I discovered that you offer support for including Python code. This is perfect as I've been trying to learn Python and I figured that in addition to creating bots for my own uses or as products, it would also allow me to rapidly prototype Python applications with a GUI without having to learn Python like a pro before I could make a product.

     

    Anyways, that's my botting story in a nutshell. I look forward to learning from everyone here, and I hope to become proficient enough that I can offer some of my own insights. Have a great morning/day/evening/night wherever and whenever you are :-).

     

    Thanks.

×
×
  • Create New...