Skip to main content

Smackdown Here Comes The Pain Pcsx2 Settings

SmackDown Here Comes The Pain

Configuration:

GRAPHICS-GSDX 1600(MSVC 15.00 SSSE3)0.1.15

CONTROLLERS-LILLY PAD 0.10.0

CDVDROM-EPP POLLING CDVD DRIVER 0.4.0

USB-USB NULL DRIVER 0.6.0

SOUND-SPU2-X1.1.0

SECOND CONTROLLER-LILLY PAD 0.10.0

DEV9-DEV9NULL DRIVER-0.4.0

FIREWIRE-FWNULL DRIVER 0.5.0

BIOS-EUROPE V01.60(04/10/2001)CONSOLE

SYSTEM REQUIREMENTS FOR PCSX2

MINIMUM

* Windows/Linux OS
* CPU: Any that supports SSE2 (Pentium 4 and up, Athlon64 and up)
* GPU: Any that supports Pixel Shader model 2.0, except Nvidia FX series (broken SM2.0, too slow anyway)
* 512mb RAM (note Vista needs at least 2gb to run reliably)

RECOMMENDED

* Windows Vista 32bit/64bit with the latest DirectX
* CPU: Intel Core 2 Duo @ 3.2ghz or better
* GPU: 8600gt or better (for Direct3D10 support)
* RAM: 1gb on Linux/Windows XP, 2gb or more on Vista

MY SYSTEM REQUIREMENTS

WINDOWS XP SP3
PENTIUM DUAL CORE 2.6GHZ (E5300)
2GB RAM
ZOTAC 8400GS 512MB
DIRECT-X 9.0

This game is running smoothly on my PC and I got 60 FPS(Frame per second) which is perfect to play this game.

CONCLUSION

To play this game you should have at least a dual-core processor and a good graphic card which supports shader model 3.0 or above.

If you are using Windows XP, 1GB ram is sufficient. But if you are using windows seven, windows 8 or windows 10 you need to upgrade your ram.

Don’t forget to check my other gaming-related articles

If you find any difficulty or you have any questions then you can leave your comments or drop an email to my inbox.

Don’t forget to Like, Subscribe and share the post.

Enjoy

Comments

Popular posts from this blog

Automation - Update Naukri Profile Using Selenium

Recently one of my friend came to me with a problem. He is looking out for new job but he feels quite boring to update  his profile on daily basis. As some people says updating profile in the morning gives you more calls as it keeps the newly updated profile on top (Although i don’t know whether naukri works this way or not 😀 ). As i was more interested to solve his problem.  After listening his problem i came to solution that instead of updating it manually lets make this job automatic. And it is quite interesting how we can automate our daily boring task with automation. Another day i came with the solution . And the solution was to make it automatic using selenium (Those who are not aware about selenium do check this link) In short, Selenium is a Testing automation Framework. And it is for automating web applications for testing purposes, but is certainly not limited to just that. Boring web-based administration tasks can (and should) also be automated as well....

Shut Down the Computer using notepad

Open notepad >> Write @echo off msg * I am tired. shutdown -c “So, Bye Bye dear” -s >> Save the File as AnyName.bat When you will open this file, your Computer will Shut down on its own after showing the message in it. NOTE: FOR EDUCATIONAL PURPOSE ONLY.I AM NOT RESPONSIBLE FOR IF ANYTHING GOES WRONG…. 

Android - Show A Dialog From Service

In this article, I will be discussing how you can create a dialog from service. As we all know that service in android does not have any UI and it is intended for long-running background tasks. But sometimes it is required to show some information to the user when your app is running in the background. Today I will show you how you can implement this type of functionality in your application. Before starting the tutorial let me tell you about the special permission that we are going to use. Permission AndroidManifest.xml<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> This permission allows the app to use the system level window. AndroidManifest.xml <?xml version="1.0" encoding="utf-8"?><manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.app.dialogfromservice"> <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> <appl...