Jump to content
UBot Underground

How To Make Add Line Text?


Recommended Posts

Hi,

how to make add line Text ?

 

Thank you.

 

ui save file("Save to File", #save)
define a {
   thread {
    in new browser {
	    navigate("google.com", "Wait")
	    wait(5)
	    save to file("{#save}.txt", $url)
	    wait(5)
	    close page
    }
   }
}
define b {
   thread {
    in new browser {
	    navigate("yandex.com", "Wait")
	    wait(5)
	    save to file("{#save}.txt", $url)
	    wait(5)
	    close page
    }
   }
}
define d {
   thread {
    in new browser {
	    navigate("bing.com", "Wait")
	    wait(5)
	    save to file("{#save}.txt", $url)
	    wait(5)
	    close page
    }
   }
}
a()
b()
d()

Link to post
Share on other sites

Just add the #newline after what you append. I believe if you save file instead of append it will erase what was in it =)

 

append to file("uids.txt", "{$find regular expression($scrape attribute(<id="content-single">, "innerhtml"), "(?<=uid=).*(?=&pid=)")}:{#namebegin}{#actnum}{#nameend}{$new line}", "End")

 

http://i50.tinypic.com/vq5bpd.png

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