Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Public Structure GameSettings
- Public Structure Graphics
- Public Resolution As Integer
- Public sky As Boolean
- Public footsteps As Boolean
- Public reduce_screen As Boolean
- Public HighQualityTextures As Boolean
- Public Gamma As Integer
- Public GammaLevel As Integer
- Enum Dec
- Resolution = 0
- sky = 69
- footsteps = 74
- reduce_screen = 168
- HighQualityTextures = 172
- Gamma = 151
- GammaLevel = 152
- End Enum
- Enum Settings
- sky_ON = 11
- sky_OFF = 3
- footsteps_ON = 3
- footsteps_OFF = 19
- HighQualityTextures_ON = 3
- HighQualityTextures_OFF = 1
- End Enum
- End Structure
- Public Structure Sound
- Public Sound As Boolean
- Public Music As Boolean
- Public Quality As Boolean
- Public MusicVolaume As Integer
- Public SoundVolume As Boolean
- Enum Dec
- Sound = 43
- Music = 44
- Quality = 176
- MusicVolaume = 130
- SoundVolume = 129
- End Enum
- Enum Settings
- Quality_Low = 0
- Quality_High = 4
- End Enum
- End Structure
- Public Structure Game
- Public Tooltips As Boolean
- Public Rotation As Boolean
- Public FlipRotation As Boolean
- Public StaySelected As Boolean
- Public AutocastSpell As Boolean
- Enum Dec
- Tooltips = 137
- Rotation = 149
- FlipRotation = 141
- StaySelected = 145
- AutocastSpell = 133
- End Enum
- Enum Settings
- Tooltips_Expanded = 3
- Tooltips_Scrolling = 7
- Rotation_Cursor = 3
- Rotation_CTRL_CURSOR = 35
- FlipRotation_ON = 11
- FlipRotation_OFF = 3
- StaySelected_ON = 3
- StaySelected_OFF = 19
- AutoCast_ON = 3
- AutoCast_OFF = 1
- End Enum
- End Structure
- End Structure
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement