Jump to content

Towncivilian

Retired Staff
  • Posts

    4,704
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Towncivilian

  1. Correct. You cannot play MTA:SA on Windows 8 at this time, sorry.
  2. It depends on the compiler you're using. Visual Studio requires using namespace std; or std:: prefixes as in my code example.
  3. Disregard my comment about accessing the array, I had a brain fart regarding the for loop. Your original for statement was correct. What's the point of the final std::cout << mytable; line? You can't output an array with one line like that - you need to use the for loop you have in order to output the array's contents properly. Don't know why I didn't notice that earlier either... must be this daylight saving stuff here in the US tripping me up.
  4. You're welcome, and congratulations! See my post again, I added another explanation about accessing the array's elements.
  5. You're missing a semicolon after line 3. Also, you should refrain from declaring global variables like you did with int n on line 3. Read here to see why. #include <iostream> void main ( ) { char mytable[4] = { 't', 'e', 's', 't' }; for ( int n = 0; n < 4; n++ ) { std::cout << mytable[n]; } std::cout << mytable; } This isn't exactly the correct subforum - this subforum is supposed to be for MTA-related development discussion. Moved to "General".
  6. Please reinstall both GTA:SA and MTA:SA and see if that fixes the problem.
  7. Install the latest patch of MTA:SA Install the latest DirectX runtimes
  8. Towncivilian

    error :(

    Please paste the content of the following files: MTA\logfile.txt MTA\CEGUI.log MTA\core.log
  9. Please paste the content of the following files: MTA\logfile.txt MTA\CEGUI.log MTA\core.log
  10. All the drivers installed properly. Please paste the content of the following files: MTA\logfile.txt MTA\CEGUI.log MTA\core.log
  11. Please install the following: Audio driver Chipset driver Latest patch of MTA:SA Latest DirectX runtimes Provide another dxdiag log after installing. Also, go to Settings -> Advanced -> change "Single connection" to "On" and see if that helps.
  12. Please try MTA:SA 1.1.1 from here.
  13. I bought 8GB (4x2GB) of Corsair DDR2-800 1.8v RAM for $30 after rebates and the cost of stamps. Now the same kit isn't even being sold on Newegg. 4GB of DDR1 is $62 on Newegg currently. Ridiculous.
  14. They will perform at the lowest common demoninator.
  15. OK, everything installed properly. Does he only crash in the showdowngaming server?
  16. Towncivilian

    Connection Lost

    Please install the following: Graphics driver Audio driver Wireless driver (install this through Device Manager; click Start -> type devmgmt.msc -> expand Network adapters -> right click the Atheros AR9285 Wireless Network Adapter and click Update Driver Software... and point the wizard to the folder containing this extracted driver) Ethernet driver Storage driver Touchpad driver Provide another dxdiag log after installing.
  17. Towncivilian

    Connection Lost

    Yes, put it between tags.
  18. Towncivilian

    Connection Lost

    Install the latest patch of MTA:SA Install the latest DirectX runtimes Could you provide a dxdiag report? Press the Windows key + R, type dxdiag, press Enter, click Save all information... and post the contents of the saved log here within Code tags.
×
×
  • Create New...