Jump to content
UBot Underground

Doubling the letters / numbers


Recommended Posts

Hi, just creating emails but I have a small issue

 

example

 

I would like to create an email johnpicock@gmail.com but is busy ...

 

How am I supposed to do to bot doubled letters?

 

example

 

johnpicock@gmail.com --->

 

  jjohnpicock

  johnpiccock

  johnpiicock

  johnpicockk

  joohnppicock

 

the best way is doubled random letter

 

:)

Edited by dahid84
Link to post
Share on other sites

its working :) but how to  double random letter/number

 

 

  add list to list(%login$list from file("{$special folder("Application")}/loginy meskie.txt"), "Delete""Global")
    set(#login$random list item(%login), "Global")
    type text(<name="login">$substring(#login$find index(#login#login), $text length(1)), "Standard")
    type text(<name="login">#login"Standard")
    wait(1)

Link to post
Share on other sites

Hi,

 

This sample code should do it:

set(#emailstart, "johnpicock@gmail.com", "Global")
set(#emailstartlength, $text length(#emailstart), "Global")
set(#emailstartatloc, $find index(#emailstart, "@"), "Global")
set(#emailstartrandumloc, $rand(1, #emailstartatloc), "Global")
set(#emailstartdupchar, $substring(#emailstart, $subtract(#emailstartrandumloc, 1), 1), "Global")
set(#emailupdate, "{$substring(#emailstart, 0, #emailstartrandumloc)}{#emailstartdupchar}{$substring(#emailstart, #emailstartrandumloc, $subtract(#emailstartlength, #emailstartrandumloc))}", "Global")

sample-email-dup-char-002.ubot

 

Kevin

Link to post
Share on other sites
Thank you very much beer for you :)

 

and if you can do the same thing tlyko for a single word? I wanted to change but did not go;/

 

example

 

johnpicock --->

 

   jjohnpicock

   johnpiccock

   johnpiicock

   johnpicockk

   joohnppicock

 

without @

Link to post
Share on other sites

Hi,

 

This sample code should work with on character string without @:

set(#emailstart, "johnpicock", "Global")
set(#emailstartlength, $text length(#emailstart), "Global")
set(#emailstartrandumloc, $rand(1, #emailstartlength), "Global")
set(#emailstartdupchar, $substring(#emailstart, $subtract(#emailstartrandumloc, 1), 1), "Global")
set(#emailupdate, "{$substring(#emailstart, 0, #emailstartrandumloc)}{#emailstartdupchar}{$substring(#emailstart, #emailstartrandumloc, $subtract(#emailstartlength, #emailstartrandumloc))}", "Global")

sample-email-dup-char-003.ubot

 

Kevin

  • Like 1
Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...