Advertisement
Guest User

Untitled

a guest
Jun 4th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 0.53 KB | None | 0 0
  1. #Include <Pastebin.au3>
  2. #include <Array.au3>
  3.  
  4.  
  5. _PB_Open()
  6.  
  7.    ;~ Create A New Paste And Return URL To Console
  8.    $vPaste = _CreatePaste("This is a test paste", "Title of Test Paste")
  9.      ConsoleWrite("Created Paste: " & $vPaste & @CRLF)
  10.  
  11.    ;~ Get Trending Pastes And Show in _ArrayDisplay
  12.    $vTrends = _ListTrendingPastes()
  13.       _ArrayDisplay($vTrends)
  14.      
  15.    ;~ Print Paste To Console
  16.    $RawPaste = _GetRawPaste("http://pastebin.com/8sTHzAD7")
  17.       ConsoleWrite("Raw Paste: " & $RawPaste)
  18.      
  19. _PB_Close()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement