Jump to content
UBot Underground

pablo322

Members
  • Content Count

    47
  • Joined

  • Last visited

Posts posted by pablo322

  1.  

    Here you go:

    add list to list(%meaningfulWords,$find regular expression("a ubot studio email 15
    u ubot studio email sender 78
    1a ubot studio eval 5
    5f ubot studio examples
    d ubot studio extract data
    r ubot studio facebook
    s ubot studio fixed u","[a-zA-Z]\{6,99\}"),"Delete","Global")

    Thanks  :wub:

  2. Hello I need to know how I can delete simple letters without meaning or select only words that contain more than 2 letters

     

    Example here:

    a ubot studio email 15

    u ubot studio email sender 78

    1a ubot studio eval 5

    5f ubot studio examples

    d ubot studio extract data

    r ubot studio facebook

    s ubot studio fixed u

     

    Example I need this result:

    All words with 6 letters or more

     

    studio

    sender

    studio

    examples

    extract

    facebook

    studio

     

    I hope someone can help me, thanks  :)

     

     

     

  3. the window is not fixed, I want to make a fixed panel
     
    I give you an example
     This is my code:
     
    ui html panel("<!DOCTYPE html >
    <head>
        
        
        
        
    <link rel=\"stylesheet\" type=\"text/css\" href=\"css/estilo.css\"/>

    <style type=\"text/css\">


    .fondo \{
        widht: 300px;
        height: 200px;
        background-color: grey;
        overflow: scroll;
        overflow: hidden;
    \}
        
     
        body,html \{
            overflow: hidden;
            width: 500px;
            height:600px;
        \}   
        
        
        
        
        
        
        .boton1 \{
            height: 50px;
            width: 100px;
            position: relative;
            left: 200px;
            top: 50px;
            background-color: darkgreen;
            font-size:20px;
            border: 1px;
            color: aliceblue;
            margin: 10px;
            
        \}

    </style>


       
          
    </head>



    <body>
           
    <div class=\"fondo\">
        <button class=\"boton1\"onclick=\"ubot.runScript(\'Login\');\">login</button>
    </div>
        
        
        
       
        
        
        
        
        
        
        
        
        
        
        
        
        

    </body>

    <html/>",600)
    ui button("Login") {
        Login()
    }
    define Login {
        plugin command("ExBrowser.dll", "ExBrowser Launcher", "Chrome", "", "")
        plugin command("ExBrowser.dll", "ExBrowser Navigate", "google.com")
    }
     
     
     
    --------------------------------------------------------------------------------------------------------------------------------------------------
     
     
    this is what I do not want:
     
     
     
     
     
     
    I hope you understand and I can help , thank you very much
     
     
     
    I would like to make it so: 
     
     
     
  4. set(#text,"\"|35 CHESTNUT PARK RD |CITY OF TORONTO|5300000|2014\\/11|43.679108|-79.386780|190410123000100|3977000|PLAN 233E LOT 3|\",
    \"|39 CHESTNUT PARK RD |CITY OF TORONTO|2000000|2004\\/04|43.679179|-79.386542|190410123000200|4106000|PLAN 233E LOT 4|\",
    \"|43 CHESTNUT PARK RD |CITY OF TORONTO|1847625|1997\\/11|43.679223|-79.386343|190410123000300|4279000|PLAN 233E LOT 5|\"
    \"|35 CHESTNUT PARK RD |CITY OF TORONTO|5300000|2014\\/11|43.679108|-79.386780|190410123000100|3977000|PLAN R32263E LOT 3C|\",
    \"|39 CHESTNUT PARK RD |CITY OF TORONTO|2000000|2004\\/04|43.679179|-79.386542|190410123000200|4106000|LOT 23RE AREA 4A|\",
    \"|43 CHESTNUT PARK RD |CITY OF TORONTO|1847625|1997\\/11|43.679223|-79.386343|190410123000300|4279000|42R624 26y33E LOTS 55T|\"","Global")
    set(#text,$replace regular expression(#text,"(\\|\",|\\|\")",""),"Global")
    set(#text,$replace regular expression(#text,".*\\|",""),"Global")
    alert(#text)
    

    hello PM please

  5.  

    Is this what you are trying to do? I think you want them to be in the same table and not separate tables.

    clear table(&accounts)
    set(#row,0,"Global")
    loop(5) {
        reset account("Any")
        set(#account pass,$account data("Password"),"Global")
        set(#account mail,"{$account data("Username")}@hotmail.com","Global")
        set table cell(&accounts,#row,0,#account mail)
        set table cell(&accounts,#row,1,#account pass)
        increment(#row)
    }
    save to file("{$special folder("Desktop")}\\test donload.csv",&accounts)
    

     

     

    I'll try and let you know , thank you very much !
  6. Hello , I know there are people who know a lot and I ask you please help me solve this problem

     

     

    as I can do to save data in order? I have tried in many ways and I can not do
     
     
    Example:
     
       A                                               B                              C                                      D
    1  MAIL                                 PASSWORD           RECOVERY MAIL              PHONE NUMBER
    2 UYH@HOTMAIL.COM      RFVHJIBRVFUI    UYH@MAILNESIA.COM      1141651919581  
    3 EDYH@HOTMAIL.COM    EIVU89FHNRFU  EDYH@MAILNESIA.COM     1654981496158
     
     
    I have done this but does not work at all:
     
     
    set(#account pass,$account data("Password"),"Global")
    set(#account mail,"{$account data("Username")}@hotmail.com","Global")
    set table cell(&mail,2,0,#account mail)
    set table cell(&pass,0,1,#account pass)
    save to file("C:\\Users\\Phenom II\\Desktop\\test donload.csv",&mail)
    save to file("C:\\Users\\Phenom II\\Desktop\\test donload.csv","{&mail}{&pass}"
     
     
     
     
  7.  know someone who can help me , I do not think it's so hard to help ....  :mellow:


    as is done to select the column and row to save the data ?

     


       A                                               B                              C                                      D

    1  MAIL                                 PASSWORD           RECOVERY MAIL              PHONE NUMBER

    2 UYH@HOTMAIL.COM      RFVHJIBRVFUI    UYH@MAILNESIA.COM      1141651919581  

    3 EDYH@HOTMAIL.COM    EIVU89FHNRFU  EDYH@MAILNESIA.COM     1654981496158


×
×
  • Create New...