Devil May Cry 3 SE Crack Reloaded

Posted Friday, May 27, 2011 by ADIL
Devil May Cry 3 SE Crack Reloaded
No Place For Extreme Sinners At Hell So I Am Back


           Screens From Play In Progress









Getting Something Out Of Facebook

Posted Thursday, May 5, 2011 by ADIL

In these following hacks we’ll be using basic Javascript to toy around with Facebook. Note that we’re not going to hack into Facebook accounts, or anything of the like. Most of these ‘hacks’ are temporary and will disappear once you refresh the page. They also won’t be visible to users on other computers. So why are we doing it? – Because it’s fun!
how to hack facebook accounts
These Javascript snippets, which we’ll supply below, simply need to be pasted into the address bar. Hit enter, et voila!

Changing Profile Colour

This will change the colour of your Facebook bar to a color of choice.
facebook greasemonkey scripts
Just paste the following code in your address bar and hit enter. You can replace ‘red’ with any color you want – black, white, green or even orrange. If you want to reverse the effect, press Ctrl+F5 for a hard reload of the page.

javascript:void(document.getElementById('fb_menubar').style.background='red');

View Chat History with Offline Friends

Unfortunately, you can’t normally view the chat history of online friends. If you’re trying to remember something that was said, waiting for them to come back online is one hell of a bother. Instead, you can just use this – pretty useful – Javascript hack.
First of all, we need to get your friend’s Facebook ID. When you visit his page indirectly (through your friends list or by using the search engine), you’ll be able to see it as a number in the address bar.
how to hack facebook
Another way to retrieve someone’s ID is by going to the Friends widget on their page, and right-clicking See All. Then you’ll have to copy the link location and paste it in your address bar.
how to hack facebook greasemonkey
Once you’ve got someone’s ID, simply paste the following code in your address bar, replacing 1122334455 with the relevant number.
javascript:buddyList.itemOnClick(1122334455);
fb

Other Javascript hacks

The preceding two hacks are without doubt the most impressive or useful ones. Below are some of the other tricks you can pull off by using Javascript. We’re not going to deep on this because they’re all things you can do manually as well.
Change chat status to invisible:
javascript:statusControl.sendVisibility(false);
Change chat status to visible:
javascript:statusControl.sendVisibility(true);
Close all chat windows with person 1122334455:
javascript:chatDisplay.tabs[1122334455].tabXOnClick();
Open application tab:
javascript:applicationDock.toggleTab();
Bring up notifications:
javascript:presence.toggleTab('chat_status_control','chat_status_control_tab');
Bring up friends list:
javascript:buddyList.toggleTab();

Facebook Greasemonkey Hacks

hack facebook account tips
Greasemonkey is one of the best firefox add-ons in existence. By using ‘userscripts’, you can customize nearly every website. Read more about Greasemonkey in .
Facebook Auto-login – One of the simplest, but perhaps also one of the most useful userscripts you’ll find. This one will automatically log into Facebook, as long as Firefox remembers your password, saving you a lot of hassle.
Auto-Colorizer for Facebook – This script will recolor your Facebook page by applying the color scheme of the most dominant picture currently showing on the page. As you can imagine, this can create some exciting, and also ambient effects.
FacebookDeletes – If you want to get rid of a lot of people at once, this is your man. This script can bulk delete friends, making the masacre all the easier.
Remove All Facebook Ads – Adblock still tends to miss a lot of Facebook ads. This script, frequently updated, will remove all thinkable Facebook ads, creating a completely click-safe Facebook environment.
External Apps Blocker – One of the most irritating things on Facebook are the abundance of quizzes, quote generators, and the like. Filtering all external app ‘stories’ from your homepage will be a lot easier if you use this script.
If you know any other cool Javascript tweaks, or Greasemonkey hacks, feel free to mention them in the comments section below!

Command Prompt Command That Will Blow Off Your Mind

Posted Sunday, May 1, 2011 by ADIL
                                                                          
Save A List of Files to a Text File by Extension

dir *.ext /s /b > files.txt


This command line will create a file called files.txt. When you open this file, there will be a complete list of all the files in that directory and all subdirectories with the .ext extension. You can then open up this text file in any text editor and work this the information.By changing the ext part, you can select different files. For example, if you wanted to list all of the PDF documents, you would type:
dir *.pdf /s /b > files.txt

Get Your IP Address Information
ipconfig /all

This will retrieve a pile of information about your network connection and IP information. From this command, you can get:
■Host Name

■Primary DNS Suffix

■Node Type

■IP Routing Enabled

■WINS Proxy Enabled

■DNS Suffix Search List

■Connection-specific DNS Suffix

■Network Adapter Description

■Physical (MAC) Address

■DHCP Enabled

■IP Address

■Subnet Mask

■Default Gateway

■DNS Servers

Get Installed Driver Information
driverquery

It can be very useful when troubleshooting to know what drivers are installed on a system. This command will give you a complete listing of the drivers and when they were installed.


Copy Files Via Infrared Port
irftp filename.ext

This will fire up the Wireless Link dialog so that you can copy the specified file via an infrared port.

Find Files Opened By Network Users
openfiles /query

If you are running a system and you want to know who has files open on your computer, this command will provide you a list of those users and the files that they have open.

Note: If you get an error saying The system global flag ‘maintain objects list’ needs to be enabled to see local opened files, you can fix this issue by typing openfiles /local on. You will have to reboot the system but it will resolve the issue.

Monitor Port Activity
netstat -a 30

This will show you all of the TCP/IP ports that are being used on your system and what they are connecting to (or being connected from). It will continue to monitor these ports and refresh the information every 30 seconds. You can change the refresh rate by changing the number at the end of the command.


Recover Information From A Corrupt File
recover filename.ext

If you have a disk with damaged sectors, you can attempt to recover as much information as possible from the damaged file. Data that is not damaged can be retrieved but data in damaged sectors will be lost.



Defragment Remote Computer
exec remotePC defrag C: /F

This command used the rexec command to force a defragment of the C: drive on the computer named remotePC. You can use whatever you want to for the command (I just used defrag C: /F as an example). This is very useful for remote maintenance.



Retrieve Detailed System Information
systeminfo

With this command, you can retrieve the following information:

■Host Name

■OS Name

■OS Version

■OS Manufacturer

■OS Configuration

■OS Build Type

■Registered Owner

■Registered Organization

■Product ID

■Original Install Date

■System Up Time

■System Manufacturer

■System Model

■System type

■Processor(s)

■BIOS Version

■Windows Directory

■System Directory

■Boot Device

■System Locale

■Input Locale

■Time Zone

■Total Physical Memory

■Available Physical Memory

■Virtual Memory Max Size

■Virtual Memory Available

■Virtual Memory In Use

■Page File Location(s)

■Domain

■Logon Server

■Hotfix(s)

■NetWork Card(s)

Automatically Defragment C: Daily

schtasks /create /tn "Defrag C" /tr "defrag c: /f" /sc daily /st 23:00:00 /ru "System"

This will set your computer to automatically perform a complete defrag of the C: drive each day at 11:00:00 PM (23:00:00). It does this by creating a scheduled task called Defrag C. It will run this command under the computer’s system account.



Map A Drive Letter to a Folder
subst W: C:\windows

Sometimes, your directory structure can get pretty deep and complicated. You can simplify this a bit by mapping a drive letter to commonly used folders. In the example that I have given, this will create a drive letter W: and map it to the C:\windows directory. Then, whenever you go into My Computer, you will see a W: drive and when you browse to it, it will automatically take you to the contents of the C:\windows folder.
You can do this with any unused drive letter and any folder that exists on your system.



List All Tasks Running On The Computer
tasklist

It’s always good to know what is running on your system. This is the command line version of the processes tab in Taks Manager.

Kill A Program
taskkill /im programname.exe /f

If, when using the tasklist command, you discover that there is something running you just want killed. This is the way to do it! Just note the program name and use it in place of programname.exe.



Reboot a Remote Computer
shutdown -r -f -m \\remotePC -c "System will be rebooted in 20 seconds"

Sometimes, you just need to reboot a system. This will do it remotely and give the user a 20 second warning.



Tip : To open Command Prompt, click Start, click Run, type cmd, and then click OK.

Tekken 5 Cheats

Posted by ADIL
                     Hack The Namco Games And Enjoy The Fun
                                                                       
Unlock Eddie Gordo Buy all the extra costumes for Cristy Montero custom mode.- Submitted By:Cheats Admin Unlock Jinpachi's Movie To unlock Jinpachi's movie in Theater mode, you have to lose to him and get a game over using any character in Story Battle mode.- Submitted By: Cheats Admin Unlock Star Blade You have to unlock Star Blade from Devil Within. Go to the first room in Stage 4- 2, there is a breakable wall underneath the higher ledge. Transform to Devil Jin and press L1 + SQUARE to blast at the wall.


There will be some tiles appear after the wall is destroyed. Jump over the tiles
and move on to the next room. There will be a spaceship from Star Blade in the
middle of the room. Collect it and continue to beat Stage 4 to unlock Star Blade.
(Unverified)- Submitted By: Cheats Admin

Unlock Theater Mode Beat Story Mode with any character. To play movies in Theater Mode You have to beat Story Mode with the character you want to unlock the movie for (that's self- explanatory). Beating Story mode requires you to play story mode with Christie, Eddy, Panda, and Kuma.- Submitted By: Cheats Admin

Unlockable: Characters • Anna Williams: Beat Story Mode two times • Baek: Beat Story Mode three times • Bruce Irvin: Beat Story Mode 4 times • Devil Jin: Complete Devil Within mini-game, or fight 200 matches. • Ganryu: Beat Story, Battle or Time Attack mode 6 times • Heihachi: Beat Story, Battle or Time Attack mode 8 times • Kuma: Beat Story, Battle or Time Attack mode 5 times • Ling (School Girl): Win 50 Versus matches, and press right-punch to select Ling. • Mokujin: Beat Story, Battle or Time Attack mode 7 times • Roger Jr.: Beat Story Mode with Kazuya • Wang Jinrei: Beat story mode/time attack 5 times with different characters. - Submitted By: Cheats Admin

Unlockable: Devil Jin To play as Devil Jin, you must complete Tekken: Devil Within mini-game.
Alternate method: complete story mode with everyone else and devil jin will be
selectable.

Alternate method: You can also beat the game with every character and play
more than about 200 games in Story Mode. Submitted by -xshiva x- Submitted By: Cheats Admin Unlockable: Final Stage 2 You have to play 200 arcade mode matches.- Submitted By: Cheats Admin Unlockable: Start the Devil Within mini-game in Devil mode Make sure you clear Devil Within at Medium difficulty with all the Evil Symbols Collected. Go start a new Devil Within or Stage Select. Hold down L2, Select and R3 while selecting.