doktorgibson
Newbie
- Aug 22, 2014
- 5
- 0
Hey , guys . Just wanna release something small and really useful 
You had been known about grabbing userids from facebook groups , profiles etc. You had to scroll down to the end of the page or just press the end button.
I wrote a code , which u can use for this purpose.
The code is written in c++ , just use a compiler to compile it
Leave a thank if it helped u, maybe im gonna code an automated grabber or something like that.
You had been known about grabbing userids from facebook groups , profiles etc. You had to scroll down to the end of the page or just press the end button.
I wrote a code , which u can use for this purpose.
The code is written in c++ , just use a compiler to compile it
PHP:
#include "iostream" #include "windows.h"
using namespace std;
int main(){
INPUT key;
key.type = INPUT_KEYBOARD, key.ki.time = 0; key.ki.wScan = 0; key.ki.dwExtraInfo = 0; key.ki.wVk = 0x23; key.ki.dwFlags = 0;
while (1){ Sleep(1000); // <- TIME IN MILLIESECONDS cout << "Pressing END-Button" << endl; SendInput(1, &key, sizeof(key)); }
return 0;}
Leave a thank if it helped u, maybe im gonna code an automated grabber or something like that.