8 lines
251 B
Python
8 lines
251 B
Python
import os
|
|
|
|
creator_name = 'My Creator Name'
|
|
mods_folder = os.path.expanduser(
|
|
os.path.join('~', 'Documents', 'Electronic Arts', 'The Sims 4', 'Mods')
|
|
)
|
|
|
|
game_folder = os.path.join('C:', os.sep, 'Program Files (x86)', 'Origin Games', 'The Sims 4')
|