Advertisement
Guest User

OsrsWikiHotkey

a guest
Jan 16th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #SingleInstance, force
  2. ^+W::
  3. InputBox, searchTerm, Wiki Query, Please type the name of the wiki page you'd like to visit`n(E.g  Dragon Slayer 2)
  4. if (searchTerm != ""){
  5.     spacedURL = http://osrs.wiki/%searchTerm%
  6.     finalURL := StrReplace(spacedURL, A_Space, "_") ;removes spaces from the user input
  7.     try
  8.     {
  9.         ; first tries to open in chrome
  10.         run, chrome.exe %finalURL%
  11.     }
  12.     catch {        
  13.         try
  14.             {
  15.                 ; tries firefox if chrome faisl
  16.                 run, firefox.exe %finalURL%
  17.             } catch
  18.             {
  19.                 ; kills the script if neither are installed
  20.                 return
  21.             }
  22.     }
  23. }
  24. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement