View Single Post
  #1  
Old 03-08-2015, 10:13 PM
spyyder
Fire Beetle
 
Join Date: Jul 2009
Location: orego
Posts: 5
Default Easy access to in game browser

I'm sure many have figured this out, or even a better way, but it took a little messing around to make it easy for my own use. The code to do it I found here on the forums (sorry, I forget who posted it).

Using the Underfoot client, I can now access the in-game browser with "/say internet"

In:
EQEmulator->quests->global->global_player.pl

I added:
sub EVENT_SAY {
if($text=~/internet/i) {
$client->SendWebLink("https://www.google.com");
}
}

You can change the address to whatever of course. But now I can look stuff up no matter where my characters are without having to window out. Handy, and thanks for tips that lead me to this!
Reply With Quote