A dynamic woodcutting job system for alt:V multiplayer modification for GTA V.
- 🌲 Dynamic tree locations
- 💰 Earning system ($150 per tree)
- ⚡ Interactive minigame
- 🎯 Real-time animations
- 🗺️ GPS waypoint system
- 📊 Progress tracking
- 🎨 Modern UI design
- 🔊 Sound effects
- 💫 Visual effects
- Find the Woodcutter NPC (marked on the map)
- Talk to him to start the job
- Go to any marked tree location
- Start the woodcutting minigame
- Press the indicated key rapidly to cut down the tree
- Earn money for each successfully cut tree
- Press the indicated key (E) rapidly
- Fill the progress bar within 5 seconds
- Need 20 successful clicks to complete
- Visual feedback for each hit
- Animated character movements
- Tree falling effects
- Copy the
woodcutterfolder to your server'sresourcesdirectory - Add the following to your
server.toml:
resources = [
'woodcutter'
]You can modify the following settings in server/index.js:
const REWARD_PER_TREE = 150; // Money reward per tree
const EXPERIENCE_PER_TREE = 10; // Experience points per tree
const TREE_RESPAWN_TIME = 30000; // Tree respawn time in msTree positions can be modified in the TREE_POSITIONS array:
const TREE_POSITIONS = [
{ x: -713.7098999023438, y: 5401.39794921875, z: 52.3809814453125 },
// Add more positions as needed
];- Static NPC with dialogue
- Job information and guidance
- Automatic waypoint setting
- Multiple tree locations
- Respawn timer
- Visual markers
- Map blips
- Modern UI design
- Progress tracking
- Timer system
- Click counter
- Power meter
- Tree falling animation
- Particle effects
- Sound effects
- Character animations
Feel free to contribute to this project by:
- Forking the repository
- Creating a new feature branch
- Submitting a pull request