Skip to content

Super Fast Speed

I'm really not sure how I did this, but the speed of my game is REALLY fast. When I click a position, the characters just warp there. The little pendulum in the bottom-left sways quickly and characters look around so quickly, they seem paranoid.

I hit CTRL+ everything on the keyboard and discovered that CTRL+B will display a message that seems to indicate it's affecting the speed (it literally says "Speed 0," "Speed 1," etc. up to "Speed 22"), but none of them are a NORMAL speed. The contents of my ini file are below. What the heck did I do and how the heck do I fix it?


CREATE TABLE options (
section string,
name string,
value string
);
INSERT INTO options ROWS (
'Graphics', 'OpenGL Version', '1',
'Graphics', 'Scale UI', 'o',
'Window', 'Full Screen', '1',
'MOVIES', 'INTRO', '1',
'Game Options', 'Footsteps', '1',
'Game Options', 'Memory Level', '1',
'Game Options', 'Mouse Scroll Speed', '36',
'Game Options', 'GUI Feedback Level', '5',
'Game Options', 'Locator Feedback Level', '3',
'Game Options', 'Bored Timeout', '3000',
'Game Options', 'Always Dither', '1',
'Game Options', 'Subtitles', '1',
'Game Options', 'Keyboard Scroll Speed', '36',
'Game Options', 'Command Sounds Frequency', '2',
'Game Options', 'Selection Sounds Frequency', '3',
'Game Options', 'Effect Text Level', '62',
'Game Options', 'Infravision', '0',
'Game Options', 'Weather', '1',
'Game Options', 'Tutorial State', '1',
'Game Options', 'Attack Sounds', '1',
'Game Options', 'Auto Pause State', '1152',
'Game Options', 'Auto Pause Center', '1',
'Game Options', 'Difficulty Level', '1',
'Game Options', 'Quick Item Mapping', '1',
'Game Options', 'Environmental Audio', '1',
'Game Options', 'Heal Party on Rest', '1',
'Game Options', 'Terrain Hugging', '0',
'Game Options', 'HP Over Head', '0',
'Game Options', 'Critical Hit Screen Shake', '1',
'Game Options', 'Hotkeys On Tooltips', '1',
'Game Options', 'Area Effects Density', '100',
'Game Options', 'Duplicate Floating Text', '1',
'Game Options', 'Tiles Precache Percent', '100',
'Game Options', 'Pausing Map', '0',
'Game Options', 'Extra Feedback', '0',
'Game Options', 'Filter Games', '1',
'Game Options', 'All Learn Spell Info', '1',
'Program Options', 'Debug Mode', '1',
'Program Options', 'Font Name', '',
'Program Options', 'Double Byte Character Support', '0',
'Program Options', 'Drop Capitals', '1',
'Program Options', '3D Acceleration', '1',
'Program Options', 'Maximum Frame Rate', '60',
'Program Options', 'Path Search Nodes', '32000',
'Program Options', 'Tooltips', '60',
'Program Options', 'Translucent Shadows', '1',
'Program Options', 'Sprite Mirror', '0',
'Program Options', 'Gamma Correction', '0',
'Program Options', 'Brightness Correction', '0',
'Program Options', 'Backwards Compatible 3d', '0',
'Program Options', 'Volume Movie', '90',
'Program Options', 'Volume Music', '40',
'Program Options', 'Volume Voices', '100',
'Program Options', 'Volume Ambients', '40',
'Program Options', 'Volume SFX', '80',
'MOVIES', 'REST', '1',
'Window', 'x', '334',
'Window', 'y', '80',
'Window', 'w', '1676',
'Window', 'h', '1024',
'Window', 'Maximized', '1',
'Graphics', 'Hardware Mouse Cursor', '1'
);

Comments

  • TJ_HookerTJ_Hooker Member Posts: 2,438
    My best guess is this: 'Program Options', 'Maximum Frame Rate', '60',
    You have the game running at 60 frames per second. The default is 30, so everything will appear to move twice as fast as normal.
  • rdarkenrdarken Member Posts: 660
    OH MY GOSH THANK YOU! That was it. I wish there was a Hug plugin.
  • TJ_HookerTJ_Hooker Member Posts: 2,438
    rdarken said:

    OH MY GOSH THANK YOU! That was it. I wish there was a Hug plugin.

    Haha, my pleasure.
Sign In or Register to comment.