[Tool] Get UID

04/23/2013 00:18 NoCheatImPGM#1
Hi sorry i will be fast ...

It's only a small tool which you can get the uid of any user of darkorbit
You just need to put the profile page url and press the button :)

It's really easy to use ...

Screenshot :
[Only registered and activated users can see links. Click Here To Register...]
Download : [Only registered and activated users can see links. Click Here To Register...]
VirusTotal : [Only registered and activated users can see links. Click Here To Register...]
04/23/2013 00:22 Dumbaas85#2
nice
04/23/2013 00:25 Mr.VoLT#3
Just nothing... This guy smells that getting trusted ;)
04/23/2013 00:32 Professional*#4
Who need the Link from the picture click [Only registered and activated users can see links. Click Here To Register...] ID OF THE USER:96348180

Why we need this tool?
04/23/2013 01:43 hello..#5
Code: Trusted
But why do I need it?

Btw: you can directly put the condition in the if-Statement you don't need to make a new bool variable :)
04/23/2013 01:52 Đaѓkšidé†#6
Quote:
Originally Posted by Professional* View Post
Who need the Link from the picture click [Only registered and activated users can see links. Click Here To Register...] ID OF THE USER:96348180

Why we need this tool?
:O General & joined 2013, what a bot
04/23/2013 04:02 Gherlil#7
Thanks bro<3
04/23/2013 04:19 EPVPro#8
why we need it ?
EDIT: lol your program says 128689816 for my account but my ID is 608**92*
04/23/2013 09:20 kamieniarz#9
Matrix ban checker still shows UID of user :)
04/23/2013 11:33 NoCheatImPGM#10
Only for this topic
[Only registered and activated users can see links. Click Here To Register...]
04/23/2013 14:18 tiger619#11
Their is some mistake in the program it doesn't bring the [Only registered and activated users can see links. Click Here To Register...]

The mistake Is :

[Only registered and activated users can see links. Click Here To Register...]

I hope that i helped
04/23/2013 14:38 NoCheatImPGM#12
#Done
thank you
The tool is now updated
04/23/2013 14:39 tiger619#13
Quote:
Originally Posted by NoCheatImPGM View Post
#Done
thank you
The tool is now updated
No problem Bro And keep it up with ur next tool not gunna say name just to make it a surprise ;)
04/23/2013 14:42 kalai870#14
works good :)
#tested
04/23/2013 14:58 »Barney«#15
Quote:
Originally Posted by hello.. View Post
Btw: you can directly put the condition in the if-Statement you don't need to make a new bool variable :)
Decompilers don't see the exact same code, for example:


Code:
//normal code
List<User> Players = new List<User>();
Players.First(p => p.UserID == 14000);

// decompiler code:
List<User> Players = new List<User>();
IEnumerable<User> user = Players.First<User>((User p) => 
{ 
bool userid = p.UserID == 14000;
 return userid; 
});