Jump to content
UBot Underground

emp

Moderators
  • Content Count

    137
  • Joined

  • Last visited

Posts posted by emp

  1. This is a question of how this is implemented in uBot.

     

    Normally, this type of activity is not limited by processor speed (as LilyT suggests), but rather by space issues - memory.

     

    A spin basically takes up more and more space with levels / spins.

     

    The levels you are talking about are making up an insane amount of versions.

    If this is kept in RAM (as I assume), then this puts a limit on the spinning.

     

    Let your task manager run alongside and look what happens to the RAM usage.

     

    Example

     

    1,2

     

    Can make up the non-repeating combinations of

     

    1,2

    2,1

     

    1,2,3 will lead to 6 combinations

     

    1,2,3

    1,3,2

    2,1,3

    2,3,1

    3,1,2

    3,2,1

     

     

    1,2,3,4 will lead to 24 combinations

     

    1,2,3,4

    1,2,4,3

    1,3,2,4

    1,3,4,2

    1,4,3,2

    1,4,2,3

    2,1,3,4

    2,1,4,3

    2,3,1,4

    2,3,4,1

    2,4,3,1

    2,4,1,3

    3,1,2,4

    3,1,4,2

    3,2,1,4

    3,2,4,1

    3,4,1,2

    3,4,2,1

    4,1,2,3

    4,1,3,2

    4,2,3,1

    4,2,1,3

    4,3,1,2

    4,3,2,1

     

    and so on. The number of permutations rises exponentially.

     

    ::emp::

    • Like 1
  2. ahh man...u know what...i just found out i cant go to a site that i need as well and i need that to be able to change my ip address (one of the main reasons i bought this program)...im really getting addicted to this cool lil program so please tell me there will be a fix coming soon for this...i need to access my modem and router

     

    Well, changing an IP adress is best done by using a proxy service.

     

    uBot does provide that functionality, and it will also switch the IP in the middle of a script if asked.

     

    ::emp::

  3. Regexes are very powerful, but also a pain to understand and write.

     

    Basically, regexes are a pattern language, that enables you to define patterns to search for.

     

    Simple example: a . in a regex can stand for ANY sign.

     

    a.c

     

    Would then find abc, a c, azc, aac, ahc, etc...

     

    a * stands for (any number of) so a.*c would find abc, but also azzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzc

     

    etc...

     

    To learn and master regular expressions is an art in and of itself.

    I normally avoid them if I can.

     

    ::emp::

  4. Posting your questions in the forum will be much more worth your time.

     

    1. Asynchronous communication - Get your questions answered while you sleep

    2. Adding value to the community - by making the question and answers visible to all (also the development team)

     

    Other than that, you can TRY reaching me via empKAZ on AIM, keep in mind that I am in Europe, so good luck with that.

     

    ::emp::

  5. I will jump in for these

     

    1) Can uBot created macros run in the background?

    It depends...

    Compiled uBot .exe files can run in the background, as can the uBot studio (lika any other program can)

    If you are talking about automatic / scheduled tasks, this is currently not possible, but is in the pipeline for development.

     

    2) Can I sell ubot created software?

    Yes, you can. Some people are already making money from compiled uBot scripts.

     

    3) Can the link in "Ubot Bot Creation Software" be removed? I saw it in the demo download.

    This is not possible as of now. It MIGHT be a future enhancement, but do not count on it.

     

    ::emp::

×
×
  • Create New...