好久沒把這塊遊戲再度拿出來玩~~~ 會把NBA Live 07拿出來玩的主因~~ 就是由於我的電腦中毒了 所以的遊戲都不見了~ 重新去安裝軟體的時候~ 翻了翻手邊遊戲之中 忽然又看到這塊讓我又愛又恨的遊戲~
由於07電腦換人與自幹的問題(改過PATCH 與 ROSTER之後仍然嚴重)~~ 我之前就先在網路上找NBA Live 06的最新球員更新檔~~
但是苦於找不到的情況下~ 先找到了這個更新檔~~ 不過在安裝Jimmy GameFix 系列之前~ 還是要先安裝 Live 2007 中文版更新檔 。之後再去這裡下載Jimmy GameFix 9.7 (雖然圖片是9.4~ 但是最新版本已經到達了9.7)
In 9.7 improvements from the previous version:
1. AI improvement
2. Re-new Team strategy for Defense
3. Re-new Team strategy for Offense
4. Different of Alleyoops
5. Dunking for Star Highflyers[credit to A_nuke]
6. Dynamic plays
7. More distribution of ball
8. Every players have chances to be more offensive
9. Some others improvement
10. Special edited AIACT
11. ONLY 100% work with IRPT roster 4.4 and 9x% work with IRPT roster 4.x
>
>
安裝方法~~ 裡面有兩個安裝檔~~ 就把他裝起來~~
安裝part1.exe
安裝part2.EXE
Copy For Dynasty Season or PlayoffSettings,dat 換掉原來安裝的 (這是調整Slider)
Copy TEAMPLAYFIX FOR NOinjury ROSTER(compatible with all types of saves) 到你的王朝紀錄檔下~ 執行該BAT 可以幫你降低一些素質.
此外~~要 NBA Live 06 的最新球員更新檔??到這裡去找吧~~~
Windows SideShow is a new technology in Windows Vista that supports a secondary screen on your mobile PC. With this additional display you can view important information whether your laptop is on, off, or in sleep mode. Windows SideShow is available in Windows Vista Home Premium, Windows Vista Business, Windows Vista Enterprise, and Windows Vista Ultimate. For more detail, please refer http://www.microsoft.com/windows/products/windowsvista/features/details/sideshow.mspx
For Engineer to development a simple SideShow program:
Make sure you using Vista RTM
Download SideShow emulator: http://www.microsoft.com/downloads/details.aspx?FamilyID=bba99eb2-aa6d-4133-b433-933a2c4d41dc&displaylang=en
Install VS2005.
Install Windows Vista SDK and .NET (http://www.microsoft.com/downloads/details.aspx?FamilyId=C2B1E300-F358-4523-B479-F53D234CDCCF&displaylang=en)
Open solution: C:Program FilesMicrosoft SDKsWindowsv6.0SampleswinuisideshowHelloWorldHelloWorld.sln
Build it
Run registery “HelloWorld.reg”
Run bin file in C:Program FilesMicrosoft SDKsWindowsv6.0SampleswinuisideshowHelloWorldDebugWindowsSideShowHelloWorld.exe
Start Emulator, you should show “Hello World” here.~~~
(Diagram: 淺談CIM與WMI-名詞介紹) WMI (Windows Management Instrumentation) provide a kind of easy way to let you query data from your system (Ex: OS version, share folder name … etc). It is easy to understand, using WMI to query information is the same with query data from database. You can just using “SELECT * from Win32_Process” to find out all exist process in your computer. There are some examples which describe how to create it using C# or C++ code. Example: Creating a WMI Application(C++) WMI Sample (using C#) There are serveral extension reading.. Brightness Control in WDDM ACPI / Power Management - Architecture and Driver Support Here is sample code of C# using System.Management; //This is equivalent to "SELECT * FROM Win32_Service" SelectQuery sysSQL = new SelectQuery("Win32_bios"); > > MnagementObjectSearcher sysRet = new ManagementObjectSearcher(sysSQL); > > // Display each entry for Win32_bios foreach (ManagementObject sysInfo in sysRet.Get()) { this.textBox1.Text...