### Navigate to Project Directory Source: https://github.com/stuyk/altv-athena/blob/master/README.md After cloning the repository, this command changes the current directory to the newly cloned 'altv-athena' folder, preparing for subsequent setup steps. ```bash cd altv-athena ``` -------------------------------- ### Run Athena Framework (Windows) Source: https://github.com/stuyk/altv-athena/blob/master/README.md This command starts the Athena Framework server specifically for Windows environments. It's a crucial step to launch the roleplay server after setup. ```powershell npm run windows ``` -------------------------------- ### Install Project Dependencies Source: https://github.com/stuyk/altv-athena/blob/master/README.md This command installs all necessary Node.js packages and dependencies required for the Athena Framework to run. It uses npm (Node Package Manager). ```javascript npm install ``` -------------------------------- ### Clone Athena Framework Repository Source: https://github.com/stuyk/altv-athena/blob/master/README.md This snippet demonstrates how to clone the Athena Framework repository from GitHub using Git. It's the first step in setting up the project locally. ```bash git clone https://github.com/Stuyk/altv-athena ``` -------------------------------- ### Update Project Assets Source: https://github.com/stuyk/altv-athena/blob/master/README.md This command is used to update project assets, likely fetching external resources or updating internal build files. It's executed using npm. ```javascript npm run update ``` -------------------------------- ### Clothing Image Naming Scheme Source: https://github.com/stuyk/altv-athena/blob/master/src-webviews/public/assets/images/clothing/_README.md Details the naming convention for clothing images in the altV Athena project. The scheme follows `componentIdentifier-hashedDlcName-isProp?-isNotShared?-drawableID.png` and explains each part, including component types, DLC hashing, prop identification, gender sharing, and drawable IDs. ```JavaScript componentIdentifier-hashedDlcName-isProp?-isNotShared?-drawableID.png ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.