Reid Posted January 6, 2014 Posted January 6, 2014 Is this possible? if so how would i implement this it would be a cool feature to have! any suggestions?
Pseudo Posted January 6, 2014 Posted January 6, 2014 I believe this.bot.getUsername(); will show the username of the person running the script. As for displaying it on your website, that'd be dependant on how you want to handle it.
Reid Posted January 6, 2014 Author Posted January 6, 2014 I believe this.bot.getUsername();will show the username of the person running the script. As for displaying it on your website, that'd be dependant on how you want to handle it. what would be some ways to handle it?
Zero Posted January 6, 2014 Posted January 6, 2014 Wouldn't be hard at all. If you would like any help, PM me your Skype.
Parameter Posted January 7, 2014 Posted January 7, 2014 I'd say whenever someone runs your script you submit their username to some server and whenever they stop your script you submit the name again.
Swizzbeat Posted January 7, 2014 Posted January 7, 2014 You can use the code that @Pseudo provided and that will get the username. Just sent it out to your website server and update your web page with the name.
Stark Posted January 7, 2014 Posted January 7, 2014 If you want 100% reliability about who is running your script at any given time, just maintain a persistent ping/pong connection using sockets between the client and server. If you want a rough idea, do what @Parameter said.