Jump to content

firebug/chrome console question


johndoe12345

Recommended Posts

When using the google chrome console/firebug is there a way to save a script so I do not have to keep copying and pasting it every time I need to use it.

  I use this script gp.GameStarter.execGameStart(8,1,1) to multi client my game on this site http://archlord.webzen.com/Default.aspx and get past gameguard that stops me from using multiple clients. (but sometimes it says the client is already running.

I want to be able to save it somewhere so all I have to do is just recall it , instead of opening a note pad copying it then pasting it. (looking for something as quick as copy paste but less annoying.)

 

I have tried using google to search for this  and only came up with 1 solution that I have yet to try

 

running developer tools on a file:// URL, you can do something like:

 

s = document.createElement('script');

s.src = 'file://path/to/script.js';

document.body.appendChild(s)

As a workaround you could also paste in your oft-repeated code snippet into the developer tools

 

also

Maybe there is a way to save a profile of all my different accounts and when I go to the page I can pull up the different profiles and automatically sign in and start the next client.

Link to comment
https://forums.phpfreaks.com/topic/252227-firebugchrome-console-question/
Share on other sites

  • 3 weeks later...
  • 1 month later...

You can create bookmarklets, or save greasemonkey scripts on Firefox.

 

Ya but I do not want to download another plug-in I would rather just use firebug in FF or google chrome , I just want to be able to recall the simple script when ever I need it.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.