Jump to content

cameron354

Members
  • Posts

    17
  • Joined

  • Last visited

cameron354's Achievements

Square

Square (6/54)

0

Reputation

  1. Hi, I'm using Mabako's MTA Paradise to experiment with scripting. The problem is though is that although register is enabled in settings.xml, there still is no register button. Before posting this I used the search button and most of the topics didn't have a proper solution. Here is my settings.xml file which has registration set to 1: <settings></settings> <settings> <!-- MySQL Configuration --> <setting name="@sql.user" value="username"/> <setting name="@sql.password" value="password"/> <setting name="@sql.database" value="database"/> <setting name="@sql.hostname" value="localhost"/> <setting name="@sql.port" value="3306"/> <!-- Only use this on Linux if the normal connection does fail even though using the correct username & password. --> <setting name="@sql.socket" value="/var/run/mysqld/mysqld.sock"/> <!-- Registration --> <setting name="@players.allow_registration" value="1"/><!-- Change to 0 to disable registration and show an error message --> <setting name="@players.registration_error_message" value="Edit this to show the user a message when registration is disabled"/> </settings> Also here is the registration.lua: local allowRegistration = get('allow_registration') and true or false local registrationErrorMessage = get( 'registration_error_message' ) if registrationErrorMessage then -- fix for newlines in message registrationErrorMessage = registrationErrorMessage:gsub( "\\n", "\n" ) end addEventHandler( "onResourceStart", resourceRoot, function( ) setElementData( source, "allowRegistration", allowRegistration ) setElementData( source, "registrationErrorMessage", registrationErrorMessage ) end ) local function trim( str ) return str:gsub("^%s*(.-)%s*$", "%1") end addEvent( getResourceName( resource ) .. ":register", true ) addEventHandler( getResourceName( resource ) .. ":register", root, function( username, password ) if source == client then if allowRegistration then if username and password then username = trim( username ) password = trim( password ) -- client length checks are the same if #username >= 3 and #password >= 8 then -- see if that username is free at all local info = exports.sql:query_assoc_single( "SELECT COUNT(userID) AS usercount FROM wcf1_user WHERE username = '%s'", username ) if not info then triggerClientEvent( source, getResourceName( resource ) .. ":registrationResult", source, 1 ) elseif info.usercount == 0 then -- generate a salt (SHA1) local salt = '' local chars = { 'a', 'b', 'c', 'd', 'e', 'f', 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 } for i = 1, 40 do salt = salt .. chars[ math.random( 1, #chars ) ] end -- create the user if exports.sql:query_free( "INSERT INTO wcf1_user (username,salt,password) VALUES ('%s', '%s', SHA1(CONCAT('%s', SHA1(CONCAT('%s', '" .. sha1( password ) .. "')))))", username, salt, salt, salt ) then triggerClientEvent( source, getResourceName( resource ) .. ":registrationResult", source, 0 ) -- will automatically login when this is sent else triggerClientEvent( source, getResourceName( resource ) .. ":registrationResult", source, 4 ) end else triggerClientEvent( source, getResourceName( resource ) .. ":registrationResult", source, 3 ) end else -- shouldn't happen triggerClientEvent( source, getResourceName( resource ) .. ":registrationResult", source, 1 ) end else -- can't do much without a username and password triggerClientEvent( source, getResourceName( resource ) .. ":registrationResult", source, 1 ) end else triggerClientEvent( source, getResourceName( resource ) .. ":registrationResult", source, 2, registrationErrorMessage ) end end end )
  2. As I've said before i can't set the cache memory to minimum, since that setting isnt availalbe in MTA version 1.3 it was only available in 1.2. What version will the bug be fixed in though?
  3. Here it is, I've done this so many times. I think the problem is in MTA 1.2 it didn't crash because I could set usable video memory to minimum. But In MTA 1.3 you can't. CEGUI.log 23/02/2012 16:26:04 (InfL1) Substitute font set to: cgui/unifont-5.1.20080907.ttf 23/02/2012 16:26:04 (InfL1) Attempting to create Font 'default-normal' using the font file 'C:\windows\fonts\TAHOMA.TTF' and a size of 9. 23/02/2012 16:26:04 (InfL1) Attempting to create Imageset 'default-normal_auto_glyph_images1' with texture only. 23/02/2012 16:26:05 (InfL1) Attempting to create Imageset 'default-normal_auto_glyph_images2' with texture only. 23/02/2012 16:26:05 (InfL1) Attempting to create Imageset 'default-normal_auto_glyph_images1' with texture only. 23/02/2012 16:26:05 (InfL1) Attempting to create Font 'default-small' using the font file 'C:\windows\fonts\TAHOMA.TTF' and a size of 7. 23/02/2012 16:26:05 (InfL1) Attempting to create Imageset 'default-small_auto_glyph_images1' with texture only. 23/02/2012 16:26:05 (InfL1) Attempting to create Imageset 'default-small_auto_glyph_images2' with texture only. 23/02/2012 16:26:05 (InfL1) Attempting to create Imageset 'default-small_auto_glyph_images1' with texture only. 23/02/2012 16:26:05 (InfL1) Attempting to create Font 'default-bold-small' using the font file 'C:\windows\fonts\tahomabd.TTF' and a size of 8. 23/02/2012 16:26:05 (InfL1) Attempting to create Imageset 'default-bold-small_auto_glyph_images1' with texture only. 23/02/2012 16:26:06 (InfL1) Attempting to create Imageset 'default-bold-small_auto_glyph_images2' with texture only. 23/02/2012 16:26:06 (InfL1) Attempting to create Imageset 'default-bold-small_auto_glyph_images1' with texture only. 23/02/2012 16:26:06 (InfL1) Attempting to create Font 'clear-normal' using the font file 'C:\windows\fonts\verdana.TTF' and a size of 9. 23/02/2012 16:26:06 (InfL1) Attempting to create Imageset 'clear-normal_auto_glyph_images1' with texture only. 23/02/2012 16:26:06 (InfL1) Attempting to create Imageset 'clear-normal_auto_glyph_images2' with texture only. 23/02/2012 16:26:06 (InfL1) Attempting to create Imageset 'clear-normal_auto_glyph_images1' with texture only. 23/02/2012 16:26:06 (InfL1) Attempting to create Font 'sa-header' using the font file 'cgui/saheader.ttf' and a size of 26. 23/02/2012 16:26:06 (InfL1) Attempting to create Imageset 'sa-header_auto_glyph_images1' with texture only. 23/02/2012 16:26:07 (InfL1) Attempting to create Imageset 'sa-header_auto_glyph_images2' with texture only. 23/02/2012 16:26:07 (InfL1) Attempting to create Imageset 'sa-header_auto_glyph_images1' with texture only. 23/02/2012 16:26:07 (InfL1) Attempting to create Imageset 'sa-header_auto_glyph_images2' with texture only. 23/02/2012 16:26:07 (InfL1) Attempting to create Font 'sa-gothic' using the font file 'cgui/sagothic.ttf' and a size of 47. 23/02/2012 16:26:07 (InfL1) Attempting to create Imageset 'sa-gothic_auto_glyph_images1' with texture only. 23/02/2012 16:26:07 (InfL1) Attempting to create Imageset 'sa-gothic_auto_glyph_images2' with texture only. 23/02/2012 16:26:07 (InfL1) Attempting to create Imageset 'sa-gothic_auto_glyph_images1' with texture only. 23/02/2012 16:26:07 (InfL1) Attempting to create Imageset 'sa-gothic_auto_glyph_images2' with texture only. 23/02/2012 16:26:07 (InfL1) Attempting to create Font 'sans' using the font file 'cgui/sans.ttf' and a size of 9. 23/02/2012 16:26:07 (InfL1) Attempting to create Imageset 'sans_auto_glyph_images1' with texture only. 23/02/2012 16:26:07 (InfL1) Attempting to create Imageset 'sans_auto_glyph_images2' with texture only. 23/02/2012 16:26:07 (InfL1) Attempting to create Imageset 'sans_auto_glyph_images1' with texture only. 23/02/2012 16:26:09 (InfL1) Set skin directory to: 23/02/2012 16:26:09 (InfL1) C:\Program Files\MTA San Andreas 1.3\MTA\..\skins\Default 23/02/2012 16:26:09 (InfL1) Attempting to load Scheme from file 'CGUI.xml'. 23/02/2012 16:26:09 (InfL1) Attempting to create an Imageset from the information specified in file 'CGUI.is.xml'. 23/02/2012 16:26:10 (InfL1) ===== Falagard 'root' element: look and feel parsing begins ===== 23/02/2012 16:26:10 (InfL1) ===== Look and feel parsing completed ===== 23/02/2012 16:26:10 (InfL1) No window factories specified for module 'CEGUIFalagardBase' - adding all available factories... 23/02/2012 16:26:10 (InfL1) WindowFactory for 'Falagard/Button' windows added. 23/02/2012 16:26:10 (InfL1) WindowFactory for 'Falagard/Checkbox' windows added. 23/02/2012 16:26:10 (InfL1) WindowFactory for 'Falagard/ComboDropList' windows added. 23/02/2012 16:26:10 (InfL1) WindowFactory for 'Falagard/Combobox' windows added. 23/02/2012 16:26:10 (InfL1) WindowFactory for 'Falagard/Editbox' windows added. 23/02/2012 16:26:10 (InfL1) WindowFactory for 'Falagard/FrameWindow' windows added. 23/02/2012 16:26:10 (InfL1) WindowFactory for 'Falagard/ListHeader' windows added. 23/02/2012 16:26:10 (InfL1) WindowFactory for 'Falagard/ListHeaderSegment' windows added. 23/02/2012 16:26:10 (InfL1) WindowFactory for 'Falagard/Listbox' windows added. 23/02/2012 16:26:10 (InfL1) WindowFactory for 'Falagard/Menubar' windows added. 23/02/2012 16:26:10 (InfL1) WindowFactory for 'Falagard/MenuItem' windows added. 23/02/2012 16:26:10 (InfL1) WindowFactory for 'Falagard/MultiColumnList' windows added. 23/02/2012 16:26:10 (InfL1) WindowFactory for 'Falagard/MultiLineEditbox' windows added. 23/02/2012 16:26:10 (InfL1) WindowFactory for 'Falagard/PopupMenu' windows added. 23/02/2012 16:26:10 (InfL1) WindowFactory for 'Falagard/ProgressBar' windows added. 23/02/2012 16:26:10 (InfL1) WindowFactory for 'Falagard/RadioButton' windows added. 23/02/2012 16:26:10 (InfL1) WindowFactory for 'Falagard/ScrollablePane' windows added. 23/02/2012 16:26:10 (InfL1) WindowFactory for 'Falagard/Scrollbar' windows added. 23/02/2012 16:26:10 (InfL1) WindowFactory for 'Falagard/Slider' windows added. 23/02/2012 16:26:10 (InfL1) WindowFactory for 'Falagard/Spinner' windows added. 23/02/2012 16:26:10 (InfL1) WindowFactory for 'Falagard/StaticImage' windows added. 23/02/2012 16:26:10 (InfL1) WindowFactory for 'Falagard/StaticText' windows added. 23/02/2012 16:26:10 (InfL1) WindowFactory for 'Falagard/SystemButton' windows added. 23/02/2012 16:26:10 (InfL1) WindowFactory for 'Falagard/TabButton' windows added. 23/02/2012 16:26:10 (InfL1) WindowFactory for 'Falagard/TabControl' windows added. 23/02/2012 16:26:10 (InfL1) WindowFactory for 'Falagard/TabPane' windows added. 23/02/2012 16:26:10 (InfL1) WindowFactory for 'Falagard/Thumb' windows added. 23/02/2012 16:26:10 (InfL1) WindowFactory for 'Falagard/Titlebar' windows added. 23/02/2012 16:26:10 (InfL1) WindowFactory for 'Falagard/Tooltip' windows added. 23/02/2012 16:26:10 (InfL1) Creating falagard mapping for type 'CGUI/Titlebar' using base type 'Falagard/Titlebar' and LookN'Feel 'CGUI/Titlebar'. 23/02/2012 16:26:10 (InfL1) Creating falagard mapping for type 'CGUI/Button' using base type 'Falagard/Button' and LookN'Feel 'CGUI/Button'. 23/02/2012 16:26:10 (InfL1) Creating falagard mapping for type 'CGUI/FrameWindow' using base type 'Falagard/FrameWindow' and LookN'Feel 'CGUI/FrameWindow'. 23/02/2012 16:26:10 (InfL1) Creating falagard mapping for type 'CGUI/Editbox' using base type 'Falagard/Editbox' and LookN'Feel 'CGUI/Editbox'. 23/02/2012 16:26:10 (InfL1) Creating falagard mapping for type 'CGUI/VerticalScrollbarThumb' using base type 'Falagard/Thumb' and LookN'Feel 'CGUI/VerticalScrollbarThumb'. 23/02/2012 16:26:10 (InfL1) Creating falagard mapping for type 'CGUI/VerticalScrollbar' using base type 'Falagard/Scrollbar' and LookN'Feel 'CGUI/VerticalScrollbar'. 23/02/2012 16:26:10 (InfL1) Creating falagard mapping for type 'CGUI/HorizontalScrollbarThumb' using base type 'Falagard/Thumb' and LookN'Feel 'CGUI/HorizontalScrollbarThumb'. 23/02/2012 16:26:10 (InfL1) Creating falagard mapping for type 'CGUI/HorizontalScrollbar' using base type 'Falagard/Scrollbar' and LookN'Feel 'CGUI/HorizontalScrollbar'. 23/02/2012 16:26:10 (InfL1) Creating falagard mapping for type 'CGUI/StaticImage' using base type 'Falagard/StaticImage' and LookN'Feel 'CGUI/StaticImage'. 23/02/2012 16:26:10 (InfL1) Creating falagard mapping for type 'CGUI/StaticText' using base type 'Falagard/StaticText' and LookN'Feel 'CGUI/StaticText'. 23/02/2012 16:26:10 (InfL1) Creating falagard mapping for type 'CGUI/MultiLineEditbox' using base type 'Falagard/MultiLineEditbox' and LookN'Feel 'CGUI/MultiLineEditbox'. 23/02/2012 16:26:10 (InfL1) Creating falagard mapping for type 'CGUI/MultiColumnList' using base type 'Falagard/MultiColumnList' and LookN'Feel 'CGUI/MultiColumnList'. 23/02/2012 16:26:10 (InfL1) Creating falagard mapping for type 'CGUI/ListHeader' using base type 'Falagard/ListHeader' and LookN'Feel 'CGUI/ListHeader'. 23/02/2012 16:26:10 (InfL1) Creating falagard mapping for type 'CGUI/ListHeaderSegment' using base type 'Falagard/ListHeaderSegment' and LookN'Feel 'CGUI/ListHeaderSegment'. 23/02/2012 16:26:10 (InfL1) Creating falagard mapping for type 'CGUI/TabButton' using base type 'Falagard/TabButton' and LookN'Feel 'CGUI/TabButton'. 23/02/2012 16:26:10 (InfL1) Creating falagard mapping for type 'CGUI/TabControl' using base type 'Falagard/TabControl' and LookN'Feel 'CGUI/TabControl'. 23/02/2012 16:26:10 (InfL1) Creating falagard mapping for type 'CGUI/TabPane' using base type 'Falagard/TabPane' and LookN'Feel 'CGUI/TabPane'. 23/02/2012 16:26:10 (InfL1) Creating falagard mapping for type 'CGUI/ProgressBar' using base type 'Falagard/ProgressBar' and LookN'Feel 'CGUI/ProgressBar'. 23/02/2012 16:26:10 (InfL1) Creating falagard mapping for type 'CGUI/Checkbox' using base type 'Falagard/Checkbox' and LookN'Feel 'CGUI/Checkbox'. 23/02/2012 16:26:10 (InfL1) Creating falagard mapping for type 'CGUI/RadioButton' using base type 'Falagard/RadioButton' and LookN'Feel 'CGUI/RadioButton'. 23/02/2012 16:26:10 (InfL1) Creating falagard mapping for type 'CGUI/ScrollablePane' using base type 'Falagard/ScrollablePane' and LookN'Feel 'CGUI/ScrollablePane'. 23/02/2012 16:26:10 (InfL1) Creating falagard mapping for type 'CGUI/ComboDropList' using base type 'Falagard/ComboDropList' and LookN'Feel 'CGUI/ComboDropList'. 23/02/2012 16:26:10 (InfL1) Creating falagard mapping for type 'CGUI/ComboEditbox' using base type 'Falagard/Editbox' and LookN'Feel 'CGUI/ComboEditbox'. 23/02/2012 16:26:10 (InfL1) Creating falagard mapping for type 'CGUI/Combobox' using base type 'Falagard/Combobox' and LookN'Feel 'CGUI/Combobox'. 23/02/2012 16:26:10 (InfL1) Creating falagard mapping for type 'CGUI/ImageButton' using base type 'Falagard/Button' and LookN'Feel 'CGUI/ImageButton'. 23/02/2012 16:26:10 (InfL1) Attempting to create Imageset '1' with texture only. 23/02/2012 16:26:10 (InfL1) Attempting to create Imageset '4' with texture only. 23/02/2012 16:26:10 (InfL1) Attempting to create Imageset 'b' with texture only. 23/02/2012 16:26:12 (InfL1) Attempting to create Imageset '10f' with texture only. 23/02/2012 16:26:12 (InfL1) Attempting to create Imageset '112' with texture only. 23/02/2012 16:26:12 (InfL1) Attempting to create Imageset '115' with texture only. 23/02/2012 16:26:13 (InfL1) Attempting to create Imageset '11a' with texture only. 23/02/2012 16:26:13 (InfL1) Attempting to create Imageset '11f' with texture only. 23/02/2012 16:26:13 (InfL1) Attempting to create Imageset '124' with texture only. 23/02/2012 16:26:13 (InfL1) Attempting to create Imageset '128' with texture only. 23/02/2012 16:26:13 (InfL1) Attempting to create Imageset '12c' with texture only. 23/02/2012 16:26:13 (InfL1) Attempting to create Imageset '131' with texture only. 23/02/2012 16:26:13 (InfL1) Attempting to create Imageset '140' with texture only. 23/02/2012 16:26:13 (InfL1) Attempting to create Imageset '145' with texture only. 23/02/2012 16:26:13 (InfL1) Attempting to create Imageset '14a' with texture only. 23/02/2012 16:26:13 (InfL1) Attempting to create Imageset '14e' with texture only. 23/02/2012 16:26:13 (InfL1) Attempting to create Imageset '152' with texture only. 23/02/2012 16:26:13 (InfL1) Attempting to create Imageset '157' with texture only. 23/02/2012 16:26:13 (InfL1) Attempting to create Imageset '166' with texture only. 23/02/2012 16:26:13 (InfL1) Attempting to create Imageset '16b' with texture only. 23/02/2012 16:26:13 (InfL1) Attempting to create Imageset '170' with texture only. 23/02/2012 16:26:13 (InfL1) Attempting to create Imageset '174' with texture only. 23/02/2012 16:26:13 (InfL1) Attempting to create Imageset '178' with texture only. 23/02/2012 16:26:13 (InfL1) Attempting to create Imageset '17d' with texture only. 23/02/2012 16:26:13 (InfL1) Attempting to create Imageset '18d' with texture only. 23/02/2012 16:26:13 (InfL1) Attempting to create Imageset '192' with texture only. 23/02/2012 16:26:13 (InfL1) Attempting to create Imageset '197' with texture only. 23/02/2012 16:26:13 (InfL1) Attempting to create Imageset '19b' with texture only. 23/02/2012 16:26:13 (InfL1) Attempting to create Imageset '19f' with texture only. 23/02/2012 16:26:13 (InfL1) Attempting to create Imageset '1a4' with texture only. 23/02/2012 16:26:13 (InfL1) Attempting to create Imageset '1b8' with texture only. 23/02/2012 16:26:13 (InfL1) Attempting to create Imageset '1bb' with texture only. 23/02/2012 16:26:13 (InfL1) Attempting to create Imageset '1be' with texture only. 23/02/2012 16:26:13 (InfL1) Attempting to create Imageset '1c1' with texture only. 23/02/2012 16:26:13 (InfL1) Attempting to create Imageset '1c4' with texture only. 23/02/2012 16:26:13 (InfL1) Attempting to create Imageset '1c7' with texture only. 23/02/2012 16:26:13 (InfL1) Attempting to create Imageset '1ca' with texture only. 23/02/2012 16:26:13 (InfL1) Attempting to create Imageset '1e2' with texture only. 23/02/2012 16:26:15 (InfL1) Attempting to create Imageset '1e5' with texture only. 23/02/2012 16:26:15 (InfL1) Attempting to create Imageset '1e8' with texture only. 23/02/2012 16:26:16 (InfL1) Attempting to create Imageset '1ec' with texture only. 23/02/2012 16:26:16 (InfL1) Attempting to create Imageset '1ef' with texture only. 23/02/2012 16:26:16 (InfL1) Attempting to create Imageset '1f3' with texture only. 23/02/2012 16:26:17 (InfL1) Attempting to create Imageset '1f6' with texture only. 23/02/2012 16:26:17 (InfL1) Attempting to create Imageset '1f9' with texture only. 23/02/2012 16:26:17 (InfL1) Attempting to create Imageset '1fc' with texture only. 23/02/2012 16:26:17 (InfL1) Attempting to create Imageset '1ff' with texture only. 23/02/2012 16:26:17 (InfL1) Attempting to create Imageset '202' with texture only. 23/02/2012 16:26:17 (InfL1) Attempting to create Imageset '205' with texture only. 23/02/2012 16:26:17 (InfL1) Attempting to create Imageset '208' with texture only. 23/02/2012 16:26:17 (InfL1) Attempting to create Imageset '20b' with texture only. 23/02/2012 16:26:17 (InfL1) Attempting to create Imageset '20e' with texture only. 23/02/2012 16:28:28 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:28:31 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:28:35 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:28:35 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:28:35 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:28:35 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:28:35 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:28:35 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:28:35 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:28:35 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:28:35 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:28:35 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:28:35 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:28:35 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:28:35 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:28:35 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:28:35 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:28:35 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:28:35 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:28:35 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:28:35 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:29:24 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:29:25 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:29:26 (Error) Exception: There is no Property named 'HorzImageFormatting' available in the set. 23/02/2012 16:29:26 (Error) Exception: There is no Property named 'HorzImageFormatting' available in the set. 23/02/2012 16:29:30 (InfL1) Attempting to create Imageset '22f' with texture only. 23/02/2012 16:30:07 (InfL1) Attempting to create Imageset '236' with texture only. 23/02/2012 16:30:08 (InfL1) Attempting to create Imageset '239' with texture only. 23/02/2012 16:30:08 (InfL1) Attempting to create Imageset '23c' with texture only. 23/02/2012 16:30:08 (InfL1) Attempting to create Imageset '23f' with texture only. 23/02/2012 16:30:09 (InfL1) Attempting to create Imageset '242' with texture only. 23/02/2012 16:30:09 (InfL1) Attempting to create Imageset '245' with texture only. 23/02/2012 16:30:09 (InfL1) Attempting to create Imageset '248' with texture only. 23/02/2012 16:30:09 (InfL1) Attempting to create Imageset '24b' with texture only. 23/02/2012 16:30:09 (InfL1) Attempting to create Imageset '24e' with texture only. 23/02/2012 16:30:09 (InfL1) Attempting to create Imageset '251' with texture only. 23/02/2012 16:30:09 (InfL1) Attempting to create Imageset '257' with texture only. 23/02/2012 16:30:09 (InfL1) Attempting to create Imageset '25a' with texture only. 23/02/2012 16:30:09 (InfL1) Attempting to create Imageset '25d' with texture only. 23/02/2012 16:30:09 (InfL1) Attempting to create Imageset '260' with texture only. 23/02/2012 16:30:09 (InfL1) Attempting to create Imageset '263' with texture only. 23/02/2012 16:30:09 (InfL1) Attempting to create Imageset '266' with texture only. 23/02/2012 16:30:09 (InfL1) Attempting to create Imageset '269' with texture only. 23/02/2012 16:30:09 (InfL1) Attempting to create Imageset '26c' with texture only. 23/02/2012 16:30:09 (InfL1) Attempting to create Imageset '26f' with texture only. 23/02/2012 16:30:09 (InfL1) Attempting to create Imageset '272' with texture only. 23/02/2012 16:30:10 (InfL1) Attempting to create Imageset '277' with texture only. 23/02/2012 16:30:49 (InfL1) Attempting to create Imageset '27b' with texture only. 23/02/2012 16:30:50 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:30:51 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:31:58 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:31:58 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:31:58 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:31:58 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:31:58 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:31:58 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:31:58 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:31:58 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:31:58 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:31:58 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:31:59 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:31:59 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:31:59 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:31:59 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:31:59 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:31:59 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:31:59 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '282' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '285' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '288' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '28b' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '28e' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '291' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '294' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '297' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '29a' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '29d' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '2a0' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '2a3' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '2a6' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '2a9' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '2ac' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '2af' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '2b2' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '2b5' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '2b8' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '2bb' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '2be' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '2c1' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '2c4' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '2c7' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '2ca' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '2cd' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '2d0' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '2d3' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '2d6' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '2d9' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '2dc' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '2df' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '2e2' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '2e5' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '2e8' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '2eb' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '2ee' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '2f1' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '2f4' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '2f7' with texture only. 23/02/2012 16:34:34 (InfL1) Attempting to create Imageset '2fa' with texture only.
  4. I'm still having these crashes, are there any solutions?
  5. I installed all the things apart from Directx since its already up to date. MTA crashed again though. But I think the reason was that in MTA 1.2 I could set the usable video memory to minimum but on MTA 1.3 I can't, so I think that's why I keep crashing. Here is another DxDiag after installing the drivers: ------------------ System Information ------------------ Time of this report: 2/3/2012, 16:31:44 Machine name: HARRIS Operating System: Windows XP Professional (5.1, Build 2600) Service Pack 3 (2600.xpsp_sp3_gdr.111025-1629) Language: English (Regional Setting: English) System Manufacturer: PACKARD BELL BV System Model: IMEDIA MC 2559 BIOS: )Phoenix - Award WorkstationBIOS v6.00PG Processor: Intel(R) Pentium(R) D CPU 2.66GHz (2 CPUs) Memory: 1022MB RAM Page File: 995MB used, 1459MB available Windows Dir: C:\windows DirectX Version: DirectX 9.0c (4.09.0000.0904) DX Setup Parameters: Not found DxDiag Version: 5.03.2600.5512 32bit Unicode ------------ DxDiag Notes ------------ DirectX Files Tab: No problems found. Display Tab 1: No problems found. Sound Tab 1: No problems found. Music Tab: No problems found. Input Tab: No problems found. Network Tab: No problems found. -------------------- DirectX Debug Levels -------------------- Direct3D: 0/4 (n/a) DirectDraw: 0/4 (retail) DirectInput: 0/5 (n/a) DirectMusic: 0/5 (n/a) DirectPlay: 0/9 (retail) DirectSound: 0/5 (retail) DirectShow: 0/6 (retail) --------------- Display Devices --------------- Card name: NVIDIA GeForce 7300 LE Manufacturer: NVIDIA Chip type: GeForce 7300 LE DAC type: Integrated RAMDAC Device Key: Enum\PCI\VEN_10DE&DEV_01D1&SUBSYS_04110000&REV_A1 Display Memory: 512.0 MB Current Mode: 1280 x 1024 (32 bit) (60Hz) Monitor: SONY SDM-S76D_F Monitor Max Res: 1280,1024 Driver Name: nv4_disp.dll Driver Version: 6.14.0012.8558 (English) DDI Version: 9 (or higher) Driver Attributes: Final Retail Driver Date/Size: 10/8/2011 04:50:00, 4226688 bytes WHQL Logo'd: Yes WHQL Date Stamp: n/a VDD: n/a Mini VDD: nv4_mini.sys Mini VDD Date: 10/8/2011 04:50:00, 12791488 bytes Device Identifier: {D7B71E3E-4291-11CF-DE42-1D2400C2CB35} Vendor ID: 0x10DE Device ID: 0x01D1 SubSys ID: 0x04110000 Revision ID: 0x00A1 Revision ID: 0x00A1 Video Accel: ModeMPEG2_C ModeMPEG2_D ModeWMV9_B ModeWMV9_A Deinterlace Caps: {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(UYVY,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(YV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch Registry: OK DDraw Status: Enabled D3D Status: Enabled AGP Status: Enabled DDraw Test Result: Not run D3D7 Test Result: Not run D3D8 Test Result: Not run D3D9 Test Result: Not run ------------- Sound Devices ------------- Description: Realtek HD Audio output Default Sound Playback: Yes Default Voice Playback: Yes Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0880&SUBSYS_1631F603&REV_1008 Manufacturer ID: 1 Product ID: 100 Type: WDM Driver Name: RtkHDAud.sys Driver Version: 5.10.0000.6526 (English) Driver Attributes: Final Retail WHQL Logo'd: Yes Date and Size: 12/13/2011 18:27:30, 7069288 bytes Other Files: Driver Provider: Realtek Semiconductor Corp. HW Accel Level: Full Cap Flags: 0xF5F Min/Max Sample Rate: 8000, 192000 Static/Strm HW Mix Bufs: 33, 32 Static/Strm HW 3D Bufs: 33, 32 HW Memory: 0 Voice Management: No EAX(tm) 2.0 Listen/Src: Yes, Yes I3DL2(tm) Listen/Src: Yes, Yes Sensaura(tm) ZoomFX(tm): No Registry: OK Sound Test Result: Not run --------------------- Sound Capture Devices --------------------- Description: Realtek HD Audio Input Default Sound Capture: Yes Default Voice Capture: Yes Driver Name: RtkHDAud.sys Driver Version: 5.10.0000.6526 (English) Driver Attributes: Final Retail Date and Size: 12/13/2011 18:27:30, 7069288 bytes Cap Flags: 0x41 Format Flags: 0xFFF Description: 713x BDA Analog Audio Capture Default Sound Capture: No Default Voice Capture: No Driver Name: 3xHybrid.sys Driver Version: 1.03.0004.0003 (English) Driver Attributes: Final Retail Date and Size: 12/4/2007 19:34:18, 946816 bytes Cap Flags: 0x41 Format Flags: 0xCC0 Description: Microsoft LifeCam VX-1000. Default Sound Capture: No Default Voice Capture: No Driver Name: usbaudio.sys Driver Version: 5.01.2600.5512 (English) Driver Attributes: Final Retail Date and Size: 4/13/2008 17:45:12, 60032 bytes Cap Flags: 0x41 Format Flags: 0x4 ----------- DirectMusic ----------- DLS Path: C:\windows\SYSTEM32\drivers\GM.DLS DLS Version: 1.00.0016.0002 Acceleration: n/a Ports: Microsoft Synthesizer, Software (Not Kernel Mode), Output, DLS, Internal, Default Port Microsoft MIDI Mapper [Emulated], Hardware (Not Kernel Mode), Output, No DLS, Internal Microsoft GS Wavetable SW Synth [Emulated], Hardware (Not Kernel Mode), Output, No DLS, Internal Registry: OK Test Result: Not run ------------------- DirectInput Devices ------------------- Device Name: Mouse Attached: 1 Controller ID: n/a Vendor/Product ID: n/a FF Driver: n/a Device Name: Keyboard Attached: 1 Controller ID: n/a Vendor/Product ID: n/a FF Driver: n/a Poll w/ Interrupt: No Registry: OK ----------- USB Devices ----------- + USB Root Hub | Vendor/Product ID: 0x1002, 0x4375 | Matching Device ID: usb\root_hub | Service: usbhub | Driver: usbhub.sys, 4/13/2008 18:45:37, 59520 bytes | Driver: usbd.sys, 3/15/2006 12:00:00, 4736 bytes ---------------- Gameport Devices ---------------- ------------ PS/2 Devices ------------ + Standard 101/102-Key or Microsoft Natural PS/2 Keyboard | Matching Device ID: *pnp0303 | Service: i8042prt | Driver: i8042prt.sys, 4/13/2008 18:18:00, 52480 bytes | Driver: kbdclass.sys, 4/13/2008 18:39:47, 24576 bytes | + Terminal Server Keyboard Driver | Matching Device ID: root\rdp_kbd | Upper Filters: kbdclass | Service: TermDD | Driver: termdd.sys, 4/14/2008 00:13:20, 40840 bytes | Driver: kbdclass.sys, 4/13/2008 18:39:47, 24576 bytes | + Dell Touchpad | Matching Device ID: acpi\pnp0f13 | Upper Filters: ApfiltrService | Service: i8042prt | Driver: i8042prt.sys, 4/13/2008 18:18:00, 52480 bytes | Driver: mouclass.sys, 4/13/2008 17:39:48, 23040 bytes | Driver: Apfiltr.sys, 10/2/2011 17:34:09, 255096 bytes | Driver: Vxdif.dll, 10/2/2011 17:34:13, 114616 bytes | Driver: Apoint.exe, 10/2/2011 17:34:09, 292208 bytes | Driver: ApntEx.exe, 10/2/2011 17:34:09, 54640 bytes | Driver: Apoint.dll, 10/2/2011 17:34:09, 1586544 bytes | Driver: Elprop.dll, 10/2/2011 17:34:12, 107888 bytes | Driver: EzAuto.dll, 10/2/2011 17:34:12, 75120 bytes | Driver: Uninstap.exe, 10/2/2011 17:34:13, 247152 bytes | Driver: ApInst.dll, 10/2/2011 17:34:09, 66928 bytes | Driver: hidfind.exe, 10/2/2011 17:34:13, 56032 bytes | Driver: ApMsgFwd.exe, 10/2/2011 17:34:09, 54568 bytes | Driver: ApMouCpl.dll, 10/2/2011 17:34:09, 704512 bytes | Driver: DellTPad.exe, 10/2/2011 17:34:12, 13930496 bytes | Driver: CirScrL.cur, 10/2/2011 17:34:10, 4286 bytes | Driver: CirScrR.cur, 10/2/2011 17:34:10, 4286 bytes | Driver: CirScrU.cur, 10/2/2011 17:34:10, 4286 bytes | Driver: CirScrD.cur, 10/2/2011 17:34:10, 4286 bytes | Driver: PadScrH.cur, 10/2/2011 17:34:10, 4286 bytes | Driver: PadScrV.cur, 10/2/2011 17:34:10, 4286 bytes | Driver: StkScr.cur, 10/2/2011 17:34:10, 4286 bytes | Driver: Zoom.cur, 10/2/2011 17:34:10, 4286 bytes | Driver: PadScr.cur, 10/2/2011 17:34:10, 4286 bytes | Driver: Rotation.cur, 10/2/2011 17:34:10, 4286 bytes | Driver: WdfCoInstaller01009.dll, 10/2/2011 17:34:13, 1461992 bytes | + Terminal Server Mouse Driver | Matching Device ID: root\rdp_mou | Upper Filters: mouclass | Service: TermDD | Driver: termdd.sys, 4/14/2008 00:13:20, 40840 bytes | Driver: mouclass.sys, 4/13/2008 17:39:48, 23040 bytes ---------------------------- DirectPlay Service Providers ---------------------------- DirectPlay8 Modem Service Provider - Registry: OK, File: dpnet.dll (5.03.2600.5512) DirectPlay8 Serial Service Provider - Registry: OK, File: dpnet.dll (5.03.2600.5512) DirectPlay8 IPX Service Provider - Registry: OK, File: dpnet.dll (5.03.2600.5512)
  6. Here it is: ------------------ System Information ------------------ Time of this report: 2/1/2012, 17:39:20 Machine name: HARRIS Operating System: Windows XP Professional (5.1, Build 2600) Service Pack 3 (2600.xpsp_sp3_gdr.111025-1629) Language: English (Regional Setting: English) System Manufacturer: PACKARD BELL BV System Model: IMEDIA MC 2559 BIOS: )Phoenix - Award WorkstationBIOS v6.00PG Processor: Intel(R) Pentium(R) D CPU 2.66GHz (2 CPUs) Memory: 1022MB RAM Page File: 946MB used, 1508MB available Windows Dir: C:\windows DirectX Version: DirectX 9.0c (4.09.0000.0904) DX Setup Parameters: Not found DxDiag Version: 5.03.2600.5512 32bit Unicode ------------ DxDiag Notes ------------ DirectX Files Tab: No problems found. Display Tab 1: No problems found. Sound Tab 1: No problems found. Music Tab: No problems found. Input Tab: No problems found. Network Tab: No problems found. -------------------- DirectX Debug Levels -------------------- Direct3D: 0/4 (n/a) DirectDraw: 0/4 (retail) DirectInput: 0/5 (n/a) DirectMusic: 0/5 (n/a) DirectPlay: 0/9 (retail) DirectSound: 0/5 (retail) DirectShow: 0/6 (retail) --------------- Display Devices --------------- Card name: NVIDIA GeForce 7300 LE Manufacturer: NVIDIA Chip type: GeForce 7300 LE DAC type: Integrated RAMDAC Device Key: Enum\PCI\VEN_10DE&DEV_01D1&SUBSYS_04110000&REV_A1 Display Memory: 512.0 MB Current Mode: 1280 x 1024 (32 bit) (60Hz) Monitor: SONY SDM-S76D_F Monitor Max Res: 1280,1024 Driver Name: nv4_disp.dll Driver Version: 6.14.0012.8558 (English) DDI Version: 9 (or higher) Driver Attributes: Final Retail Driver Date/Size: 10/8/2011 04:50:00, 4226688 bytes WHQL Logo'd: Yes WHQL Date Stamp: n/a VDD: n/a Mini VDD: nv4_mini.sys Mini VDD Date: 10/8/2011 04:50:00, 12791488 bytes Device Identifier: {D7B71E3E-4291-11CF-DE42-1D2400C2CB35} Vendor ID: 0x10DE Device ID: 0x01D1 SubSys ID: 0x04110000 Revision ID: 0x00A1 Revision ID: 0x00A1 Video Accel: ModeMPEG2_C ModeMPEG2_D ModeWMV9_B ModeWMV9_A Deinterlace Caps: {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(UYVY,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(YV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch Registry: OK DDraw Status: Enabled D3D Status: Enabled AGP Status: Enabled DDraw Test Result: Not run D3D7 Test Result: Not run D3D8 Test Result: Not run D3D9 Test Result: Not run ------------- Sound Devices ------------- Description: Realtek HD Audio output Default Sound Playback: Yes Default Voice Playback: Yes Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0880&SUBSYS_1631F603&REV_1008 Manufacturer ID: 1 Product ID: 100 Type: WDM Driver Name: RtkHDAud.sys Driver Version: 5.10.0000.6482 (English) Driver Attributes: Final Retail WHQL Logo'd: Yes Date and Size: 10/18/2011 19:53:14, 6439528 bytes Other Files: Driver Provider: Realtek Semiconductor Corp. HW Accel Level: Full Cap Flags: 0xF5F Min/Max Sample Rate: 8000, 192000 Static/Strm HW Mix Bufs: 33, 32 Static/Strm HW 3D Bufs: 33, 32 HW Memory: 0 Voice Management: No EAX(tm) 2.0 Listen/Src: Yes, Yes I3DL2(tm) Listen/Src: Yes, Yes Sensaura(tm) ZoomFX(tm): No Registry: OK Sound Test Result: Not run --------------------- Sound Capture Devices --------------------- Description: Realtek HD Audio Input Default Sound Capture: Yes Default Voice Capture: Yes Driver Name: RtkHDAud.sys Driver Version: 5.10.0000.6482 (English) Driver Attributes: Final Retail Date and Size: 10/18/2011 19:53:14, 6439528 bytes Cap Flags: 0x41 Format Flags: 0xFFF Description: Microsoft LifeCam VX-1000. Default Sound Capture: No Default Voice Capture: No Driver Name: usbaudio.sys Driver Version: 5.01.2600.5512 (English) Driver Attributes: Final Retail Date and Size: 4/13/2008 17:45:12, 60032 bytes Cap Flags: 0x41 Format Flags: 0x4 ----------- DirectMusic ----------- DLS Path: C:\windows\SYSTEM32\drivers\GM.DLS DLS Version: 1.00.0016.0002 Acceleration: n/a Ports: Microsoft Synthesizer, Software (Not Kernel Mode), Output, DLS, Internal, Default Port Microsoft MIDI Mapper [Emulated], Hardware (Not Kernel Mode), Output, No DLS, Internal Microsoft GS Wavetable SW Synth [Emulated], Hardware (Not Kernel Mode), Output, No DLS, Internal Registry: OK Test Result: Not run ------------------- DirectInput Devices ------------------- Device Name: Mouse Attached: 1 Controller ID: n/a Vendor/Product ID: n/a FF Driver: n/a Device Name: Keyboard Attached: 1 Controller ID: n/a Vendor/Product ID: n/a FF Driver: n/a Poll w/ Interrupt: No Registry: OK ----------- USB Devices ----------- + USB Root Hub | Vendor/Product ID: 0x1002, 0x4375 | Matching Device ID: usb\root_hub | Service: usbhub | Driver: usbhub.sys, 4/13/2008 18:45:37, 59520 bytes | Driver: usbd.sys, 3/15/2006 12:00:00, 4736 bytes ---------------- Gameport Devices ---------------- ------------ PS/2 Devices ------------ + Standard 101/102-Key or Microsoft Natural PS/2 Keyboard | Matching Device ID: *pnp0303 | Service: i8042prt | Driver: i8042prt.sys, 4/13/2008 18:18:00, 52480 bytes | Driver: kbdclass.sys, 4/13/2008 18:39:47, 24576 bytes | + Terminal Server Keyboard Driver | Matching Device ID: root\rdp_kbd | Upper Filters: kbdclass | Service: TermDD | Driver: termdd.sys, 4/14/2008 00:13:20, 40840 bytes | Driver: kbdclass.sys, 4/13/2008 18:39:47, 24576 bytes | + Dell Touchpad | Matching Device ID: acpi\pnp0f13 | Upper Filters: ApfiltrService | Service: i8042prt | Driver: i8042prt.sys, 4/13/2008 18:18:00, 52480 bytes | Driver: mouclass.sys, 4/13/2008 17:39:48, 23040 bytes | Driver: Apfiltr.sys, 10/2/2011 17:34:09, 255096 bytes | Driver: Vxdif.dll, 10/2/2011 17:34:13, 114616 bytes | Driver: Apoint.exe, 10/2/2011 17:34:09, 292208 bytes | Driver: ApntEx.exe, 10/2/2011 17:34:09, 54640 bytes | Driver: Apoint.dll, 10/2/2011 17:34:09, 1586544 bytes | Driver: Elprop.dll, 10/2/2011 17:34:12, 107888 bytes | Driver: EzAuto.dll, 10/2/2011 17:34:12, 75120 bytes | Driver: Uninstap.exe, 10/2/2011 17:34:13, 247152 bytes | Driver: ApInst.dll, 10/2/2011 17:34:09, 66928 bytes | Driver: hidfind.exe, 10/2/2011 17:34:13, 56032 bytes | Driver: ApMsgFwd.exe, 10/2/2011 17:34:09, 54568 bytes | Driver: ApMouCpl.dll, 10/2/2011 17:34:09, 704512 bytes | Driver: DellTPad.exe, 10/2/2011 17:34:12, 13930496 bytes | Driver: CirScrL.cur, 10/2/2011 17:34:10, 4286 bytes | Driver: CirScrR.cur, 10/2/2011 17:34:10, 4286 bytes | Driver: CirScrU.cur, 10/2/2011 17:34:10, 4286 bytes | Driver: CirScrD.cur, 10/2/2011 17:34:10, 4286 bytes | Driver: PadScrH.cur, 10/2/2011 17:34:10, 4286 bytes | Driver: PadScrV.cur, 10/2/2011 17:34:10, 4286 bytes | Driver: StkScr.cur, 10/2/2011 17:34:10, 4286 bytes | Driver: Zoom.cur, 10/2/2011 17:34:10, 4286 bytes | Driver: PadScr.cur, 10/2/2011 17:34:10, 4286 bytes | Driver: Rotation.cur, 10/2/2011 17:34:10, 4286 bytes | Driver: WdfCoInstaller01009.dll, 10/2/2011 17:34:13, 1461992 bytes | + Terminal Server Mouse Driver | Matching Device ID: root\rdp_mou | Upper Filters: mouclass | Service: TermDD | Driver: termdd.sys, 4/14/2008 00:13:20, 40840 bytes | Driver: mouclass.sys, 4/13/2008 17:39:48, 23040 bytes ---------------------------- DirectPlay Service Providers ---------------------------- DirectPlay8 Modem Service Provider - Registry: OK, File: dpnet.dll (5.03.2600.5512) DirectPlay8 Serial Service Provider - Registry: OK, File: dpnet.dll (5.03.2600.5512) DirectPlay8 IPX Service Provider - Registry: OK, File: dpnet.dll (5.03.2600.5512) DirectPlay8 TCP/IP Service Provider - Registry: OK, File: dpnet.dll (5.03.2600.5512) Internet TCP/IP Connection For DirectPlay - Registry: OK, File: dpwsockx.dll (5.03.2600.5512) IPX Connection For DirectPlay - Registry: OK, File: dpwsockx.dll (5.03.2600.5512) Modem Connection For DirectPlay - Registry: OK, File: dpmodemx.dll (5.03.2600.5512) Serial Connection For DirectPlay - Registry: OK, File: dpmodemx.dll (5.03.2600.5512) DirectPlay Voice Wizard Tests: Full Duplex: Not run, Half Duplex: Not run, Mic: Not run DirectPlay Test Result: Not run Registry: OK
  7. Done that but its still not working.
  8. It is the same Microsoft visual c++ runtime error I have had earlier on in this thread. I solved it by setting the Usable video memory to minimum. The problem is on Multi Theft Auto 1.3 there isn't that option, instead there is a streaming memory option, but setting that to minimum doesn't work. Here is the core.log, but strangely it crashed today but it doesn't show it. You might be wondering why it shows it as the file as Multi theft auto 1.2, the reason is I have 1.3 installed in the 1.2 folder. ** -- Unhandled exception -- ** Version = 1.2-release-3564.0.000 Time = Tue Dec 20 17:14:29 2011 Module = C:\PROGRA~1\MTASAN~1.2\mta\xmll.dll Code = 0xC0000005 Offset = 0x00002AA0 EAX=00000000 EBX=0ADFF280 ECX=78583C3A EDX=03590050 ESI=098F5C58 EDI=098F5C1C EBP=0023F628 ESP=0023F620 EIP=05BD2AA0 FLG=00210202 CS=001B DS=0023 SS=0023 ES=0023 FS=003B GS=0000 ** -- End of unhandled exception -- ** ** -- Unhandled exception -- ** Version = 1.2-release-3677.0.000 Time = Wed Jan 18 16:24:17 2012 Module = C:\Documents and Settings\Cameron 1\My Documents\Downloads\GTA San Andreas\gta_sa.exe Code = 0xC0000005 Offset = 0x00349B7B EAX=00000000 EBX=00000000 ECX=00000000 EDX=0085BDC0 ESI=00000000 EDI=00000008 EBP=008AACBC ESP=0022FCC0 EIP=00749B7B FLG=00210246 CS=001B DS=0023 SS=0023 ES=0023 FS=003B GS=0000 ** -- End of unhandled exception -- ** ** -- Unhandled exception -- ** Version = 1.3-release-3741.0.000 Time = Thu Jan 26 16:28:26 2012 Module = C:\Program Files\MTA San Andreas 1.2\mta\cgui.dll Code = 0xC0000005 Offset = 0x0005FF15 EAX=00220022 EBX=04E81F88 ECX=44024000 EDX=43D80000 ESI=0022FA78 EDI=0022FAB8 EBP=3F800000 ESP=0022FA60 EIP=0498FF15 FLG=00210246 CS=001B DS=0023 SS=0023 ES=0023 FS=003B GS=0000 ** -- End of unhandled exception -- **
  9. Changing the "Usable video memory" to minimum seemed to work fine. But now I upgraded to MTA 1.3 which doesn't have that feature, instead there is a "streaming memory" but that doesnt seem to stop the crashes by setting that on minimum. Therefore it has been crashing again.
  10. Sorry about this but its still cashing with the same reason. And what is weird is if I watch a youtube video before it crashes, the video works fine. But if I try to watch a YouTube video after the GTA Runtime error I stated above, Flash player plugin for chrome crashes.
  11. Im sorry I am replying to my old thread but I have tried changing alot of graphics settings in the "Video" tab, but I just cant seem to stop it happening.
  12. So is there anything else I could do about this?
  13. Logfile.txt [DEBUG EVENT] 12-15-2011 @ 16:13:31 # CCommands::CCommands [DEBUG EVENT] 12-15-2011 @ 16:13:31 # CCore::CCore [DEBUG EVENT] 12-15-2011 @ 16:13:31 # CDirect3DHookManager::CDirect3DHookManager [DEBUG EVENT] 12-15-2011 @ 16:13:31 # CDirectInputHookManager::CDirectInputHookManager [DEBUG EVENT] 12-15-2011 @ 16:13:31 # CMessageLoopHook::CMessageLoopHook [DEBUG EVENT] 12-15-2011 @ 16:13:31 # CSetCursorPosHook::CSetCursorPosHook [DEBUG EVENT] 12-15-2011 @ 16:13:31 # CDirectInputHook8::CDirectInputHook8 [DEBUG EVENT] 12-15-2011 @ 16:13:31 # CDirect3DHook9::CDirect3DHook9 [DEBUG EVENT] 12-15-2011 @ 16:13:31 # Direct3D9 hook applied [DEBUG EVENT] 12-15-2011 @ 16:13:36 # DirectInput8 ANSI Interface Created. [DEBUG EVENT] 12-15-2011 @ 16:13:36 # CProxyDirectInput8::CProxyDirectInput8 [DEBUG EVENT] 12-15-2011 @ 16:13:36 # CProxyDirectInputDevice8::CProxyDirectInputDevice8 [DEBUG EVENT] 12-15-2011 @ 16:13:36 # Loading network [DEBUG EVENT] 12-15-2011 @ 16:13:36 # Network loaded. [DEBUG EVENT] 12-15-2011 @ 16:13:55 # Network initialized. [DEBUG EVENT] 12-15-2011 @ 16:13:55 # Loading game [DEBUG EVENT] 12-15-2011 @ 16:13:56 # Game loaded. [DEBUG EVENT] 12-15-2011 @ 16:13:56 # Game initialized. [DEBUG EVENT] 12-15-2011 @ 16:13:56 # Loading multiplayer [DEBUG EVENT] 12-15-2011 @ 16:13:56 # Multiplayer loaded. [DEBUG EVENT] 12-15-2011 @ 16:13:56 # Multiplayer initialized. [DEBUG EVENT] 12-15-2011 @ 16:13:56 # Loading xml [DEBUG EVENT] 12-15-2011 @ 16:13:56 # XML loaded. [DEBUG EVENT] 12-15-2011 @ 16:13:56 # XML initialized. [DEBUG EVENT] 12-15-2011 @ 16:13:56 # Loading gui [DEBUG EVENT] 12-15-2011 @ 16:13:59 # GUI loaded. [DEBUG EVENT] 12-15-2011 @ 16:13:59 # CProxyDirect3D9::CProxyDirect3D9 [DEBUG EVENT] 12-15-2011 @ 16:13:59 # CProxyDirect3D9::CProxyDirect3D9 [DEBUG EVENT] 12-15-2011 @ 16:13:59 # CProxyDirect3D9::~CProxyDirect3D9 [DEBUG EVENT] 12-15-2011 @ 16:13:59 # CProxyDirect3D9::CreateDevice [DEBUG EVENT] 12-15-2011 @ 16:13:59 # Adapter:0 DeviceType:1 BehaviorFlags:0x50 [DEBUG EVENT] 12-15-2011 @ 16:13:59 # BackBufferWidth:800 Height:600 Format:21 Count:1 [DEBUG EVENT] 12-15-2011 @ 16:13:59 # MultiSampleType:0 Quality:0 [DEBUG EVENT] 12-15-2011 @ 16:13:59 # SwapEffect:2 Windowed:0 EnableAutoDepthStencil:1 AutoDepthStencilFormat:75 Flags:0x0 [DEBUG EVENT] 12-15-2011 @ 16:13:59 # FullScreen_RefreshRateInHz:60 PresentationInterval:0x80000000 [DEBUG EVENT] 12-15-2011 @ 16:13:59 # CProxyDirect3DDevice9::CProxyDirect3DDevice9 [DEBUG EVENT] 12-15-2011 @ 16:14:01 # CDirect3DEvents9::OnDirect3DDeviceCreate [DEBUG EVENT] 12-15-2011 @ 16:14:11 # GUI initialized. [DEBUG EVENT] 12-15-2011 @ 16:14:20 # Adapter:0 DeviceType:1 BehaviorFlags:0x40 [DEBUG EVENT] 12-15-2011 @ 16:14:22 # CProxyDirect3DDevice9::Reset [DEBUG EVENT] 12-15-2011 @ 16:14:22 # CDirect3DEvents9::OnInvalidate [DEBUG EVENT] 12-15-2011 @ 16:14:22 # CDirect3DEvents9::OnRestore [DEBUG EVENT] 12-15-2011 @ 16:14:22 # BackBufferWidth:800 Height:600 Format:21 Count:1 [DEBUG EVENT] 12-15-2011 @ 16:14:22 # MultiSampleType:0 Quality:0 [DEBUG EVENT] 12-15-2011 @ 16:14:22 # SwapEffect:2 Windowed:1 EnableAutoDepthStencil:1 AutoDepthStencilFormat:75 Flags:0x0 [DEBUG EVENT] 12-15-2011 @ 16:14:22 # FullScreen_RefreshRateInHz:0 PresentationInterval:0x00000001 [DEBUG EVENT] 12-15-2011 @ 16:14:22 # Adapter:0 DeviceType:1 BehaviorFlags:0x40 [DEBUG EVENT] 12-15-2011 @ 16:14:45 # CProxyDirect3DDevice9::Reset [DEBUG EVENT] 12-15-2011 @ 16:14:45 # CDirect3DEvents9::OnInvalidate [DEBUG EVENT] 12-15-2011 @ 16:14:45 # CDirect3DEvents9::OnRestore [DEBUG EVENT] 12-15-2011 @ 16:14:45 # BackBufferWidth:800 Height:600 Format:21 Count:1 [DEBUG EVENT] 12-15-2011 @ 16:14:45 # MultiSampleType:0 Quality:0 [DEBUG EVENT] 12-15-2011 @ 16:14:45 # SwapEffect:2 Windowed:1 EnableAutoDepthStencil:1 AutoDepthStencilFormat:75 Flags:0x0 [DEBUG EVENT] 12-15-2011 @ 16:14:45 # FullScreen_RefreshRateInHz:0 PresentationInterval:0x80000000 [DEBUG EVENT] 12-15-2011 @ 16:14:45 # Adapter:0 DeviceType:1 BehaviorFlags:0x40 CEGUI.log 15/12/2011 16:14:08 (InfL1) Substitute font set to: cgui/unifont-5.1.20080907.ttf 15/12/2011 16:14:08 (InfL1) Attempting to create Font 'default-normal' using the font file 'C:\windows\fonts\TAHOMA.TTF' and a size of 9. 15/12/2011 16:14:08 (InfL1) Attempting to create Imageset 'default-normal_auto_glyph_images' with texture only. 15/12/2011 16:14:09 (InfL1) Attempting to create Font 'default-small' using the font file 'C:\windows\fonts\TAHOMA.TTF' and a size of 7. 15/12/2011 16:14:09 (InfL1) Attempting to create Imageset 'default-small_auto_glyph_images' with texture only. 15/12/2011 16:14:09 (InfL1) Attempting to create Font 'default-bold-small' using the font file 'C:\windows\fonts\tahomabd.TTF' and a size of 8. 15/12/2011 16:14:09 (InfL1) Attempting to create Imageset 'default-bold-small_auto_glyph_images' with texture only. 15/12/2011 16:14:10 (InfL1) Attempting to create Font 'clear-normal' using the font file 'C:\windows\fonts\verdana.TTF' and a size of 9. 15/12/2011 16:14:10 (InfL1) Attempting to create Imageset 'clear-normal_auto_glyph_images' with texture only. 15/12/2011 16:14:10 (InfL1) Attempting to create Font 'sa-header' using the font file 'cgui/saheader.ttf' and a size of 26. 15/12/2011 16:14:10 (InfL1) Attempting to create Imageset 'sa-header_auto_glyph_images' with texture only. 15/12/2011 16:14:10 (InfL1) Attempting to create Font 'sa-gothic' using the font file 'cgui/sagothic.ttf' and a size of 47. 15/12/2011 16:14:10 (InfL1) Attempting to create Imageset 'sa-gothic_auto_glyph_images' with texture only. 15/12/2011 16:14:11 (InfL1) Attempting to create Font 'sans' using the font file 'cgui/sans.ttf' and a size of 9. 15/12/2011 16:14:11 (InfL1) Attempting to create Imageset 'sans_auto_glyph_images' with texture only. 15/12/2011 16:14:12 (InfL1) Set skin directory to: 15/12/2011 16:14:12 (InfL1) C:\Program Files\MTA San Andreas 1.1\MTA\..\skins\Default 15/12/2011 16:14:12 (InfL1) Attempting to load Scheme from file 'CGUI.xml'. 15/12/2011 16:14:12 (InfL1) Attempting to create an Imageset from the information specified in file 'CGUI.is.xml'. 15/12/2011 16:14:13 (InfL1) ===== Falagard 'root' element: look and feel parsing begins ===== 15/12/2011 16:14:13 (InfL1) ===== Look and feel parsing completed ===== 15/12/2011 16:14:13 (InfL1) No window factories specified for module 'CEGUIFalagardBase' - adding all available factories... 15/12/2011 16:14:13 (InfL1) WindowFactory for 'Falagard/Button' windows added. 15/12/2011 16:14:13 (InfL1) WindowFactory for 'Falagard/Checkbox' windows added. 15/12/2011 16:14:13 (InfL1) WindowFactory for 'Falagard/ComboDropList' windows added. 15/12/2011 16:14:13 (InfL1) WindowFactory for 'Falagard/Combobox' windows added. 15/12/2011 16:14:13 (InfL1) WindowFactory for 'Falagard/Editbox' windows added. 15/12/2011 16:14:13 (InfL1) WindowFactory for 'Falagard/FrameWindow' windows added. 15/12/2011 16:14:13 (InfL1) WindowFactory for 'Falagard/ListHeader' windows added. 15/12/2011 16:14:13 (InfL1) WindowFactory for 'Falagard/ListHeaderSegment' windows added. 15/12/2011 16:14:13 (InfL1) WindowFactory for 'Falagard/Listbox' windows added. 15/12/2011 16:14:13 (InfL1) WindowFactory for 'Falagard/Menubar' windows added. 15/12/2011 16:14:13 (InfL1) WindowFactory for 'Falagard/MenuItem' windows added. 15/12/2011 16:14:13 (InfL1) WindowFactory for 'Falagard/MultiColumnList' windows added. 15/12/2011 16:14:13 (InfL1) WindowFactory for 'Falagard/MultiLineEditbox' windows added. 15/12/2011 16:14:13 (InfL1) WindowFactory for 'Falagard/PopupMenu' windows added. 15/12/2011 16:14:13 (InfL1) WindowFactory for 'Falagard/ProgressBar' windows added. 15/12/2011 16:14:13 (InfL1) WindowFactory for 'Falagard/RadioButton' windows added. 15/12/2011 16:14:13 (InfL1) WindowFactory for 'Falagard/ScrollablePane' windows added. 15/12/2011 16:14:13 (InfL1) WindowFactory for 'Falagard/Scrollbar' windows added. 15/12/2011 16:14:13 (InfL1) WindowFactory for 'Falagard/Slider' windows added. 15/12/2011 16:14:13 (InfL1) WindowFactory for 'Falagard/Spinner' windows added. 15/12/2011 16:14:13 (InfL1) WindowFactory for 'Falagard/StaticImage' windows added. 15/12/2011 16:14:13 (InfL1) WindowFactory for 'Falagard/StaticText' windows added. 15/12/2011 16:14:13 (InfL1) WindowFactory for 'Falagard/SystemButton' windows added. 15/12/2011 16:14:13 (InfL1) WindowFactory for 'Falagard/TabButton' windows added. 15/12/2011 16:14:13 (InfL1) WindowFactory for 'Falagard/TabControl' windows added. 15/12/2011 16:14:13 (InfL1) WindowFactory for 'Falagard/TabPane' windows added. 15/12/2011 16:14:13 (InfL1) WindowFactory for 'Falagard/Thumb' windows added. 15/12/2011 16:14:13 (InfL1) WindowFactory for 'Falagard/Titlebar' windows added. 15/12/2011 16:14:13 (InfL1) WindowFactory for 'Falagard/Tooltip' windows added. 15/12/2011 16:14:13 (InfL1) Creating falagard mapping for type 'CGUI/Titlebar' using base type 'Falagard/Titlebar' and LookN'Feel 'CGUI/Titlebar'. 15/12/2011 16:14:13 (InfL1) Creating falagard mapping for type 'CGUI/Button' using base type 'Falagard/Button' and LookN'Feel 'CGUI/Button'. 15/12/2011 16:14:13 (InfL1) Creating falagard mapping for type 'CGUI/FrameWindow' using base type 'Falagard/FrameWindow' and LookN'Feel 'CGUI/FrameWindow'. 15/12/2011 16:14:13 (InfL1) Creating falagard mapping for type 'CGUI/Editbox' using base type 'Falagard/Editbox' and LookN'Feel 'CGUI/Editbox'. 15/12/2011 16:14:13 (InfL1) Creating falagard mapping for type 'CGUI/VerticalScrollbarThumb' using base type 'Falagard/Thumb' and LookN'Feel 'CGUI/VerticalScrollbarThumb'. 15/12/2011 16:14:13 (InfL1) Creating falagard mapping for type 'CGUI/VerticalScrollbar' using base type 'Falagard/Scrollbar' and LookN'Feel 'CGUI/VerticalScrollbar'. 15/12/2011 16:14:13 (InfL1) Creating falagard mapping for type 'CGUI/HorizontalScrollbarThumb' using base type 'Falagard/Thumb' and LookN'Feel 'CGUI/HorizontalScrollbarThumb'. 15/12/2011 16:14:13 (InfL1) Creating falagard mapping for type 'CGUI/HorizontalScrollbar' using base type 'Falagard/Scrollbar' and LookN'Feel 'CGUI/HorizontalScrollbar'. 15/12/2011 16:14:13 (InfL1) Creating falagard mapping for type 'CGUI/StaticImage' using base type 'Falagard/StaticImage' and LookN'Feel 'CGUI/StaticImage'. 15/12/2011 16:14:13 (InfL1) Creating falagard mapping for type 'CGUI/StaticText' using base type 'Falagard/StaticText' and LookN'Feel 'CGUI/StaticText'. 15/12/2011 16:14:13 (InfL1) Creating falagard mapping for type 'CGUI/MultiLineEditbox' using base type 'Falagard/MultiLineEditbox' and LookN'Feel 'CGUI/MultiLineEditbox'. 15/12/2011 16:14:13 (InfL1) Creating falagard mapping for type 'CGUI/MultiColumnList' using base type 'Falagard/MultiColumnList' and LookN'Feel 'CGUI/MultiColumnList'. 15/12/2011 16:14:13 (InfL1) Creating falagard mapping for type 'CGUI/ListHeader' using base type 'Falagard/ListHeader' and LookN'Feel 'CGUI/ListHeader'. 15/12/2011 16:14:13 (InfL1) Creating falagard mapping for type 'CGUI/ListHeaderSegment' using base type 'Falagard/ListHeaderSegment' and LookN'Feel 'CGUI/ListHeaderSegment'. 15/12/2011 16:14:13 (InfL1) Creating falagard mapping for type 'CGUI/TabButton' using base type 'Falagard/TabButton' and LookN'Feel 'CGUI/TabButton'. 15/12/2011 16:14:13 (InfL1) Creating falagard mapping for type 'CGUI/TabControl' using base type 'Falagard/TabControl' and LookN'Feel 'CGUI/TabControl'. 15/12/2011 16:14:13 (InfL1) Creating falagard mapping for type 'CGUI/TabPane' using base type 'Falagard/TabPane' and LookN'Feel 'CGUI/TabPane'. 15/12/2011 16:14:13 (InfL1) Creating falagard mapping for type 'CGUI/ProgressBar' using base type 'Falagard/ProgressBar' and LookN'Feel 'CGUI/ProgressBar'. 15/12/2011 16:14:13 (InfL1) Creating falagard mapping for type 'CGUI/Checkbox' using base type 'Falagard/Checkbox' and LookN'Feel 'CGUI/Checkbox'. 15/12/2011 16:14:13 (InfL1) Creating falagard mapping for type 'CGUI/RadioButton' using base type 'Falagard/RadioButton' and LookN'Feel 'CGUI/RadioButton'. 15/12/2011 16:14:13 (InfL1) Creating falagard mapping for type 'CGUI/ScrollablePane' using base type 'Falagard/ScrollablePane' and LookN'Feel 'CGUI/ScrollablePane'. 15/12/2011 16:14:13 (InfL1) Creating falagard mapping for type 'CGUI/ComboDropList' using base type 'Falagard/ComboDropList' and LookN'Feel 'CGUI/ComboDropList'. 15/12/2011 16:14:13 (InfL1) Creating falagard mapping for type 'CGUI/ComboEditbox' using base type 'Falagard/Editbox' and LookN'Feel 'CGUI/ComboEditbox'. 15/12/2011 16:14:13 (InfL1) Creating falagard mapping for type 'CGUI/Combobox' using base type 'Falagard/Combobox' and LookN'Feel 'CGUI/Combobox'. 15/12/2011 16:14:13 (InfL1) Creating falagard mapping for type 'CGUI/ImageButton' using base type 'Falagard/Button' and LookN'Feel 'CGUI/ImageButton'. 15/12/2011 16:14:13 (InfL1) Attempting to create Imageset '1' with texture only. 15/12/2011 16:14:13 (InfL1) Attempting to create Imageset '4' with texture only. 15/12/2011 16:14:13 (InfL1) Attempting to create Imageset 'b' with texture only. 15/12/2011 16:14:14 (InfL1) Attempting to create Imageset '10a' with texture only. 15/12/2011 16:14:14 (InfL1) Attempting to create Imageset '10d' with texture only. 15/12/2011 16:14:14 (InfL1) Attempting to create Imageset '110' with texture only. 15/12/2011 16:14:14 (InfL1) Attempting to create Imageset '115' with texture only. 15/12/2011 16:14:14 (InfL1) Attempting to create Imageset '11a' with texture only. 15/12/2011 16:14:14 (InfL1) Attempting to create Imageset '11f' with texture only. 15/12/2011 16:14:14 (InfL1) Attempting to create Imageset '123' with texture only. 15/12/2011 16:14:14 (InfL1) Attempting to create Imageset '127' with texture only. 15/12/2011 16:14:14 (InfL1) Attempting to create Imageset '12c' with texture only. 15/12/2011 16:14:14 (InfL1) Attempting to create Imageset '13b' with texture only. 15/12/2011 16:14:14 (InfL1) Attempting to create Imageset '140' with texture only. 15/12/2011 16:14:14 (InfL1) Attempting to create Imageset '145' with texture only. 15/12/2011 16:14:14 (InfL1) Attempting to create Imageset '149' with texture only. 15/12/2011 16:14:14 (InfL1) Attempting to create Imageset '14d' with texture only. 15/12/2011 16:14:14 (InfL1) Attempting to create Imageset '152' with texture only. 15/12/2011 16:14:14 (InfL1) Attempting to create Imageset '161' with texture only. 15/12/2011 16:14:15 (InfL1) Attempting to create Imageset '166' with texture only. 15/12/2011 16:14:15 (InfL1) Attempting to create Imageset '16b' with texture only. 15/12/2011 16:14:15 (InfL1) Attempting to create Imageset '16f' with texture only. 15/12/2011 16:14:15 (InfL1) Attempting to create Imageset '173' with texture only. 15/12/2011 16:14:15 (InfL1) Attempting to create Imageset '178' with texture only. 15/12/2011 16:14:15 (InfL1) Attempting to create Imageset '188' with texture only. 15/12/2011 16:14:15 (InfL1) Attempting to create Imageset '18d' with texture only. 15/12/2011 16:14:15 (InfL1) Attempting to create Imageset '192' with texture only. 15/12/2011 16:14:15 (InfL1) Attempting to create Imageset '196' with texture only. 15/12/2011 16:14:15 (InfL1) Attempting to create Imageset '19a' with texture only. 15/12/2011 16:14:15 (InfL1) Attempting to create Imageset '19f' with texture only. 15/12/2011 16:14:15 (InfL1) Attempting to create Imageset '1b3' with texture only. 15/12/2011 16:14:15 (InfL1) Attempting to create Imageset '1b6' with texture only. 15/12/2011 16:14:15 (InfL1) Attempting to create Imageset '1b9' with texture only. 15/12/2011 16:14:15 (InfL1) Attempting to create Imageset '1bc' with texture only. 15/12/2011 16:14:15 (InfL1) Attempting to create Imageset '1bf' with texture only. 15/12/2011 16:14:15 (InfL1) Attempting to create Imageset '1c2' with texture only. 15/12/2011 16:14:15 (InfL1) Attempting to create Imageset '1c5' with texture only. 15/12/2011 16:14:15 (InfL1) Attempting to create Imageset '1c8' with texture only. 15/12/2011 16:14:15 (InfL1) Attempting to create Imageset '1e0' with texture only. 15/12/2011 16:14:17 (InfL1) Attempting to create Imageset '1e3' with texture only. 15/12/2011 16:14:17 (InfL1) Attempting to create Imageset '1e6' with texture only. 15/12/2011 16:14:18 (InfL1) Attempting to create Imageset '1ea' with texture only. 15/12/2011 16:14:18 (InfL1) Attempting to create Imageset '1ed' with texture only. 15/12/2011 16:14:18 (InfL1) Attempting to create Imageset '1f1' with texture only. 15/12/2011 16:14:19 (InfL1) Attempting to create Imageset '1f4' with texture only. 15/12/2011 16:14:19 (InfL1) Attempting to create Imageset '1f7' with texture only. 15/12/2011 16:14:19 (InfL1) Attempting to create Imageset '1fa' with texture only. 15/12/2011 16:14:19 (InfL1) Attempting to create Imageset '1fd' with texture only. 15/12/2011 16:14:19 (InfL1) Attempting to create Imageset '200' with texture only. 15/12/2011 16:14:19 (InfL1) Attempting to create Imageset '203' with texture only. 15/12/2011 16:14:20 (InfL1) Attempting to create Imageset '206' with texture only. 15/12/2011 16:14:20 (InfL1) Attempting to create Imageset '209' with texture only. 15/12/2011 16:14:20 (InfL1) Attempting to create Imageset '20c' with texture only. 15/12/2011 16:14:44 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:14:45 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:14:45 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:14:45 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:14:46 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:14:46 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:14:46 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:14:46 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:14:46 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:14:46 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:14:46 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:14:46 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:14:46 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:14:46 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:14:46 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:14:46 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:14:46 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:14:46 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:14:46 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:14:46 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:14:46 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:15:40 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:15:40 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:15:40 (Error) Exception: There is no Property named 'HorzImageFormatting' available in the set. 15/12/2011 16:15:40 (Error) Exception: There is no Property named 'HorzImageFormatting' available in the set. 15/12/2011 16:15:45 (InfL1) Attempting to create Imageset '22d' with texture only. 15/12/2011 16:15:56 (InfL1) Attempting to create Imageset '234' with texture only. 15/12/2011 16:15:56 (InfL1) Attempting to create Imageset '237' with texture only. 15/12/2011 16:15:56 (InfL1) Attempting to create Imageset '23a' with texture only. 15/12/2011 16:15:56 (InfL1) Attempting to create Imageset '23d' with texture only. 15/12/2011 16:15:56 (InfL1) Attempting to create Imageset '240' with texture only. 15/12/2011 16:15:56 (InfL1) Attempting to create Imageset '243' with texture only. 15/12/2011 16:15:56 (InfL1) Attempting to create Imageset '246' with texture only. 15/12/2011 16:15:56 (InfL1) Attempting to create Imageset '249' with texture only. 15/12/2011 16:15:56 (InfL1) Attempting to create Imageset '24c' with texture only. 15/12/2011 16:15:56 (InfL1) Attempting to create Imageset '24f' with texture only. 15/12/2011 16:15:56 (InfL1) Attempting to create Imageset '255' with texture only. 15/12/2011 16:15:56 (InfL1) Attempting to create Imageset '258' with texture only. 15/12/2011 16:15:56 (InfL1) Attempting to create Imageset '25b' with texture only. 15/12/2011 16:15:56 (InfL1) Attempting to create Imageset '25e' with texture only. 15/12/2011 16:15:56 (InfL1) Attempting to create Imageset '261' with texture only. 15/12/2011 16:15:56 (InfL1) Attempting to create Imageset '264' with texture only. 15/12/2011 16:15:56 (InfL1) Attempting to create Imageset '267' with texture only. 15/12/2011 16:15:56 (InfL1) Attempting to create Imageset '26a' with texture only. 15/12/2011 16:15:56 (InfL1) Attempting to create Imageset '26d' with texture only. 15/12/2011 16:15:56 (InfL1) Attempting to create Imageset '270' with texture only. 15/12/2011 16:15:56 (InfL1) Attempting to create Imageset '275' with texture only. 15/12/2011 16:16:17 (InfL1) Attempting to create Imageset '279' with texture only. 15/12/2011 16:16:18 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:16:19 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:16:19 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:16:19 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:16:19 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:16:19 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:16:19 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:16:19 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:16:19 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:16:19 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:16:19 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:16:20 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:16:20 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:16:20 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:16:20 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:16:20 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:16:20 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:16:20 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:16:20 (Error) Exception: WidgetLookFeel::getImagerySection - unknown imagery section 'normal' in look 'CGUI/ScrollablePane'. 15/12/2011 16:16:31 (InfL1) Attempting to create Imageset '280' with texture only. 15/12/2011 16:16:31 (InfL1) Attempting to create Imageset '283' with texture only. 15/12/2011 16:16:31 (InfL1) Attempting to create Imageset '286' with texture only. 15/12/2011 16:16:31 (InfL1) Attempting to create Imageset '289' with texture only. 15/12/2011 16:16:31 (InfL1) Attempting to create Imageset '28c' with texture only. 15/12/2011 16:16:31 (InfL1) Attempting to create Imageset '28f' with texture only. 15/12/2011 16:16:31 (InfL1) Attempting to create Imageset '292' with texture only. 15/12/2011 16:16:31 (InfL1) Attempting to create Imageset '295' with texture only. 15/12/2011 16:16:31 (InfL1) Attempting to create Imageset '298' with texture only. 15/12/2011 16:16:31 (InfL1) Attempting to create Imageset '29b' with texture only. 15/12/2011 16:16:31 (InfL1) Attempting to create Imageset '29e' with texture only. 15/12/2011 16:16:31 (InfL1) Attempting to create Imageset '2a1' with texture only. 15/12/2011 16:16:31 (InfL1) Attempting to create Imageset '2a4' with texture only. 15/12/2011 16:16:31 (InfL1) Attempting to create Imageset '2a7' with texture only. 15/12/2011 16:16:31 (InfL1) Attempting to create Imageset '2aa' with texture only. 15/12/2011 16:16:31 (InfL1) Attempting to create Imageset '2ad' with texture only. 15/12/2011 16:16:31 (InfL1) Attempting to create Imageset '2b0' with texture only. 15/12/2011 16:16:31 (InfL1) Attempting to create Imageset '2b3' with texture only. 15/12/2011 16:16:31 (InfL1) Attempting to create Imageset '2b6' with texture only. 15/12/2011 16:16:31 (InfL1) Attempting to create Imageset '2b9' with texture only. 15/12/2011 16:16:31 (InfL1) Attempting to create Imageset '2bc' with texture only. 15/12/2011 16:16:31 (InfL1) Attempting to create Imageset '2bf' with texture only. 15/12/2011 16:16:31 (InfL1) Attempting to create Imageset '2c2' with texture only. 15/12/2011 16:16:31 (InfL1) Attempting to create Imageset '2c5' with texture only. 15/12/2011 16:16:31 (InfL1) Attempting to create Imageset '2c8' with texture only. 15/12/2011 16:16:31 (InfL1) Attempting to create Imageset '2cb' with texture only. 15/12/2011 16:16:31 (InfL1) Attempting to create Imageset '2ce' with texture only. 15/12/2011 16:16:31 (InfL1) Attempting to create Imageset '2d1' with texture only. 15/12/2011 16:16:31 (InfL1) Attempting to create Imageset '2d4' with texture only. 15/12/2011 16:16:31 (InfL1) Attempting to create Imageset '2d7' with texture only. 15/12/2011 16:16:31 (InfL1) Attempting to create Imageset '2da' with texture only. 15/12/2011 16:18:00 (InfL1) Attempting to create Imageset '2ec' with texture only. 15/12/2011 16:18:00 (InfL1) Attempting to create Imageset '2ef' with texture only. 15/12/2011 16:19:31 (InfL1) Attempting to create Imageset '322' with texture only. 15/12/2011 16:19:31 (InfL1) Attempting to create Imageset '327' with texture only. 15/12/2011 16:19:32 (InfL1) Attempting to create Imageset '32a' with texture only. 15/12/2011 16:19:32 (InfL1) Attempting to create Imageset '32d' with texture only. 15/12/2011 16:19:32 (InfL1) Attempting to create Imageset '330' with texture only. 15/12/2011 16:19:35 (InfL1) Attempting to create Imageset '33a' with texture only. 15/12/2011 16:21:13 (InfL1) Attempting to create Imageset '33d' with texture only. 15/12/2011 16:21:14 (InfL1) Attempting to create Imageset '340' with texture only. 15/12/2011 16:21:14 (InfL1) Attempting to create Imageset '343' with texture only. 15/12/2011 16:21:58 (InfL1) Attempting to create Imageset '346' with texture only. 15/12/2011 16:22:21 (InfL1) Attempting to create Imageset '349' with texture only. 15/12/2011 16:22:29 (InfL1) Attempting to create Imageset '34c' with texture only. 15/12/2011 16:22:43 (InfL1) Attempting to create Imageset '358' with texture only. 15/12/2011 16:22:43 (InfL1) Attempting to create Imageset '35b' with texture only. 15/12/2011 16:22:45 (InfL1) Attempting to create Imageset '35e' with texture only. 15/12/2011 16:22:45 (InfL1) Attempting to create Imageset '361' with texture only. 15/12/2011 16:22:46 (InfL1) Attempting to create Imageset '364' with texture only. 15/12/2011 16:22:47 (InfL1) Attempting to create Imageset '367' with texture only. 15/12/2011 16:22:48 (Error) Exception: WidgetLookFeel::getStateImagery - unknown state 'Disabled' in look 'CGUI/Titlebar'. 15/12/2011 16:22:59 (InfL1) Attempting to create Imageset '36a' with texture only. 15/12/2011 16:23:48 (InfL1) Attempting to create Imageset '36d' with texture only. 15/12/2011 16:23:55 (InfL1) Attempting to create Imageset '370' with texture only. 15/12/2011 16:23:59 (InfL1) Attempting to create Imageset '378' with texture only.
  14. I did everything you said but MTA is still crashing randomly while driving and giving the Microsoft visual c++ runtime error. It might be something to do with loading objects because sometimes its when I'm driving therefore the objects have to load fast. After the errors happens it closes the game, but if I try to go back to the same server, after choosing my character and spawning it would instantly give me the runtime error, and I would have to restart my computer to be able to play it again for around 15 minutes before it crashed again. And as I said earlier, If I try to watch a YouTube video after MTA crashes flash browser plugin crashes as well.
  15. Yeah It now works but when Im driving around or something for example for 15 minutes or a random time , I get a Microsoft visual c++ runtime error. I have googled this allot of times and tried the main solutions like reinstall Microsoft visual c, reinstall GTA/MTA and my graphics driver. But I cant seem to find anything that works. When It crashes I've also noticed that if I try and watch a YouTube video after, Google chrome would say that the flash plugin has crashed.
×
×
  • Create New...