Jump to content
UBot Underground

Making a email checker, problem with one thing.


Recommended Posts

Hi

 

I'm making an email checker,

the problem is when i need to put email and password.

I want to put email and password in only 1 .txt

like this:

Email:Password

Email1:Password1

 

All this in .txt

The : is the divider of email and password, how i can do this?

Thanks!!

 

 

Link to post
Share on other sites

Many ways to do this but here is mine.

 

clear list(%emails)
add list to list(%emails$list from text("email@yourdomain.com:f5s6d4g5gf
another_email@yourdomain.com:d5f654fafdd"$new line), "Delete""Global")
loop($list total(%emails)) {
    set(#email next list item$next list item(%emails), "Global")
    set(#email$replace regular expression(#email next list item":.*"$nothing), "Global")
    set(#password$replace regular expression(#email next list item".*:"$nothing), "Global")
}

 

 

Hope that Helps,

TC

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...