-
Posts
10 -
Joined
-
Last visited
Everything posted by Chevy Vercetti
-
+1
-
I am aware the design is semi-efficient to function the way it is, for all item's in each category is a scrambled mess, it need's a slight overhaul to each section. To create a furniture script overhaul that includes a more functional system for various objects like lights, doors, safes, shelves, gun storage, cabinets, paintings, decorations, light switches, and a security system with alerts when a house or RV is being broken into, we need to establish a flexible, modular system. The goal is to make each piece of furniture not just interactive but also impactful on gameplay. Below is a conceptual framework and an example script in a language like Lua (commonly used in games like Garry's Mod or FiveM) to implement these features. 1. Functional Furniture Categories: We'll divide the furniture into categories based on their functionality and interactions. Lights: Switchable Lights: Allow the player to turn lights on or off. Light States: multiple states (e.g., on, off, flickering) from a dead battery in the vehicle "RV" if the light's are left on too long, Electrical Power : Ability to Shut Off the power externally by using "Bolt Cutters" Light Housing bill "Haven't paid the electricity bill" : Lights will turn off to keep players interactive to keep them playing Doors: Lockable/Unlockable Doors: Players can lock and unlock doors, or automate locks based on certain conditions (time of day, player proximity access) Sliding Doors/Traditional Doors: These doors will open when interacted with or can be set to automatically open based on proximity. Safes & Gun Storage: Section "General" Secure Containers: Players can store items in safes, gun storage units, or cabinets. Only the player or those with a keycode can access them. Shelves & Cabinets: Section "Cabinetry" Item Storage: These can store various items, with visual representation of the stored items. Interactive Shelves: Players can interact with shelves to store or retrieve objects. Paintings & Decorations: "Decor" Wall Mountable Items: Items like paintings, trophies, and decorations that can be hung on walls. Interactive: Players can adjust the position or rotate the paintings. Light Switches: "Lights" Interactive Switches: Switches that turn lights on/off. Can be wall-mounted or floor-mounted. Security System Alerts: "Security" Burglar Alarm: If the house or RV is being broken into, an alert is triggered with sound effects and visual indicators. Cameras and Motion Sensors: When the motion sensor detects movement or cameras are active, they send real-time alerts to the player’s phone or display. 2. Core Features of the System: Player Interaction: The player should be able to interact with each item (furniture, light switch, etc.) and trigger various actions like turning on lights, locking doors, accessing safes, etc. Security System Integration: The player can set up a security system that monitors for break-ins. If a break-in occurs, the system will trigger a visual and auditory alert. Automated Actions: Some items can be set to react automatically (e.g., lights turning off at night, doors locking at a certain time). 3. Example Script: Here’s an example of how the system might be structured in Lua for a game engine, like FiveM or Garry’s Mod. This script will include functionality for lights, doors, safes, security systems, and the interactions needed. -- Example script for furniture functionality (lights, doors, safes, security systems) -- Furniture Classes and Objects Furniture = {} Furniture.__index = Furniture -- Light Class Light = setmetatable({}, Furniture) Light.state = false -- Light on/off state function Light:new(name, x, y, z) local instance = setmetatable({}, Light) instance.name = name instance.x = x instance.y = y instance.z = z return instance end function Light:toggle() self.state = not self.state print(self.name .. " is now " .. (self.state and "ON" or "OFF")) -- Here you would trigger the light's visual change in the game engine (e.g., using a setColor function) end -- Door Class Door = setmetatable({}, Furniture) Door.locked = false -- Lock state Door.open = false -- Open/close state function Door:new(name, x, y, z) local instance = setmetatable({}, Door) instance.name = name instance.x = x instance.y = y instance.z = z return instance end function Door:toggleLock() self.locked = not self.locked print(self.name .. " is now " .. (self.locked and "LOCKED" or "UNLOCKED")) end function Door:toggleOpen() if not self.locked then self.open = not self.open print(self.name .. " is now " .. (self.open and "OPEN" or "CLOSED")) -- Trigger visual open/close animation else print(self.name .. " is locked!") end end -- Safe Class (for storing items like guns, valuables) Safe = setmetatable({}, Furniture) Safe.locked = true Safe.contents = {} function Safe:new(name, x, y, z) local instance = setmetatable({}, Safe) instance.name = name instance.x = x instance.y = y instance.z = z return instance end function Safe:access(password) if password == "correctPassword" then print(self.name .. " Unlocked!") -- Open the safe, show contents self.contents = {"Gun", "Gold", "Cash","Clothes,"Dirty Money"} else print("Incorrect password!") end end -- Security System SecuritySystem = {} SecuritySystem.alertTriggered = false function SecuritySystem:activate() print("Security System Activated!") -- Trigger camera monitoring, motion detection logic here end function SecuritySystem:triggerAlert() if self.alertTriggered then print("Alert! A break-in is in progress!") -- Trigger an in-game alert (sound, lights flashing, etc.) By Alerting the police/Player -- end end function SecuritySystem:detectBreakIn() -- Detect break-in through motion sensors, cameras, etc. self.alertTriggered = true self:triggerAlert() end -- Creating Furniture Objects local livingRoomLight = Light:new("Living Room Light", 10, 5, 0) local frontDoor = Door:new("Front Door", 5, 0, 0) local gunSafe = Safe:new("Gun Safe", 7, 2, 0) local security = SecuritySystem -- Interactions livingRoomLight:toggle() -- Toggles light state frontDoor:toggleLock() -- Toggles lock state frontDoor:toggleOpen() -- Opens or closes the door if unlocked gunSafe:access("correctPassword") -- Opens safe with correct password security:activate() -- Activates security system security:detectBreakIn() -- Detects break-in and triggers alert 4. Detailed Explanation: Light: Light:toggle() switches the state of the light. When toggled, it updates the light's state and triggers any visual or sound effects in the game engine. Door: Door:toggleLock() locks or unlocks the door. Door:toggleOpen() opens or closes the door if it's not locked. Safe: Safe:access(password) allows players to open a safe if they enter the correct password. The safe can store items, like guns or cash. Security System: SecuritySystem:activate() enables the security system, starting monitoring for break-ins. SecuritySystem:triggerAlert() triggers an alert when a break-in is detected (visual and auditory cues). SecuritySystem:detectBreakIn() uses motion sensors or cameras to detect if the House or RV is being broken into, which then triggers the alarm. 5. Features to Expand on: Security System Additions: You can integrate more advanced features like security cameras, motion sensors, and alarm systems. Event-Driven Mechanics: Introduce events that trigger based on player proximity or time of day (e.g., lights automatically turning off at night). Storage Mechanics: For gun storage, cabinets, and shelves, implement a way to store and retrieve objects. Break-in Detection System: The detection could be based on player proximity to windows, doors, or other areas of the house. Conclusion: This furniture system overhaul provides a functional "general location" for players shopping and using the furniture to max capacity, interactive environment that not only supports everyday actions like turning on lights or opening doors but also adds security mechanics like alarms, safe interactions, and break-in detection. It ensures that each piece of furniture in the game has a purpose and creates an immersive, dynamic environment for the player.
- 1 reply
-
- 1
-
-
- furniture mechanics
- furniture store
- (and 5 more)
-
+1 for Furniture/Fridge to store food from going bad Inside a House/Rv
-
+1 To Add to this Idea, i would like to suggest this as well. To create an engaging fishing system that incorporates boats, floating piers, and docks at sea while also addressing the catching of endangered species (such as the Vaquita, Blue Whale, and others), a realistic fishing progression system with conservation mechanics can be developed. This system would focus not only on traditional fishing, but also on ethical and legal aspects related to the protection of endangered marine species. Here's an outline for how this could be implemented: 1. Fishing Progression System with Boats, Docks, and Conservation: Fishing Locations: Boats: Players can access boats after reaching a certain fishing skill level. The boats can be used to travel to floating piers and docks far from shore, where deeper waters hold larger fish species, including endangered ones. Basic Boat: Unlockable at Level 10 Fishing. Can be used to access new areas and larger fishing spots. Advanced Boat: Unlockable at Level 20 Fishing. Offers faster travel, greater capacity, and access to rare or deep-sea species. Floating Piers/Docks at Sea: These are unique locations where the player can anchor their boat and fish from the dock or pier. Endangered Species Areas: Certain piers might be in regions with protected marine areas, where endangered species (like the Vaquita or Green Sea Turtle) are found. These areas might require a special license or fishing permit to fish, which can be obtained by following in-game conservation challenges or quests. 2. Fishing Specific Endangered Species: Fishing Mechanic with a Focus on Conservation: Endangered Species Awareness: The game features a dynamic Fishing Ethics System. If players catch endangered species, it is recorded, and their reputation with conservation groups or authorities can be impacted. Illegal Catch Consequences: Players who catch an endangered species without permission will face fines or even temporary bans from fishing in specific areas "on license" not allowed to have a permit to fish. Legal Fishing Permit: To legally catch endangered species, players must earn special licenses through quests or conservation efforts, demonstrating they are protecting the species in the long run. Catch and Release System: Players can catch endangered species, but must make a decision whether to release them back into the water or to keep them. If kept, the player faces legal consequences, but if released, they receive ethical rewards (e.g., reputation boosts, experience points, or rare fishing gear). Catch and Release Rewards: If a player successfully releases an endangered species (like a Humpback Whale or Whale Shark), they gain conservation points that unlock new boat upgrades, special fishing gear, or even access to specialized conservation zones. 3. Endangered Species and Fishing License System: To regulate fishing practices and ensure the protection of endangered species, the player must manage their fishing licenses. The game could feature: Fishing License Mechanic: Standard License: Allows fishing in normal zones with common fish. Protected Waters License: A special license that grants access to floating piers or docks where endangered species like the Loggerhead Sea Turtle, Fin Whale, and Great White Shark live. Players need to earn this license by following conservation quests and guidelines. License Costs: The license could require credits (in-game currency), special conservation quests, or materials harvested from protected species to demonstrate the player is contributing to marine conservation. Violating License Rules: If a player catches a protected species without the proper permit, they will be fined or banned from fishing for a period of time. Ethical Choices: At certain points, players can choose whether to report illegal fishing activities or ignore them, influencing their standing with the marine protection authorities. Endangered Species List (with names): The following endangered species can be part of the Marine Species Database, and players will receive information and rewards based on their interactions with these creatures: Vaquita Green Sea Turtle Blue Whale Whale Shark Kemp’s Ridley Sea Turtle Atlantic Humpback Dolphin Great Hammerhead Humphead Wrasse Atlantic Bluefin Tuna Beluga Whale Sand Tiger Shark Fin Whale Angelshark Giant Sea Bass European Eel Loggerhead Sea Turtle Leatherback Sea Turtle Gray Whale Staghorn Coral Narrow-Ridged Finless Porpoise Olive Ridley Sea Turtle Giant Oceanic Manta Ray Scalloped Hammerhead Smalltooth Sawfish Southern Bluefin Tuna Sei Whale Haliotis Sorenseni Great White Shark Anacropora Spinosa Acropora Globiceps Bearded Seal Argentine Angelshark Atlantic Salmon Humpback Whale Bigeye Tuna Yellowfin Tuna Narwhal Albacore Bocaccio Banggai Cardinalfish Orca Steller’s Sea Cow Chinook Salmon The endangered species will have specific habitats marked on the map, and players can find these species through quests, special fishing expeditions, or using specialized equipment like "Scuba" Marine Biologist Gear. 4. Unique Features and Ethical Dilemmas: Marine Conservation Efforts: Players who make positive choices like releasing endangered species or completing marine conservation tasks will earn reputation points with marine research organizations. These points can unlock: Special fishing gear designed to safely handle delicate species. Access to conservation expeditions for research purposes. Special boats or piers where endangered species thrive, but only if the player has proven their dedication to conservation. Environmental Challenges: Pollution: Players will encounter pollution challenges where certain areas are contaminated by oil spills or waste, affecting fish populations, including endangered species. Players may need to clean these areas to help protect the fish and gain rewards. Illegal Fishing Cartels: A fishing cartel (in-game faction) could be part of the game’s antagonist system. Players could either choose to fight against these illegal fishers or turn a blind eye for personal gain. Fighting the cartel "Aquarius-Yacht Boats" Objective to dismantle, could lead to rare rewards, reputation boosts with conservation groups, and access to protected species zones. 5. Endangered Species Tracking & Fishing Journals: Players can maintain a fishing journal that tracks species caught, whether they are endangered, and whether they were released or kept. This journal acts as a record of the player's impact on the environment, influencing the game's outcome or the player's reputation. Species Info: The journal will provide detailed information about each species, their conservation status, habitat, and the importance of protecting them. Environmental Impact: If the player is caught illegally fishing or harming endangered species, the journal will record this as part of the Ethical Progression system. Conclusion: The fishing system with boats, floating piers, docks, and the inclusion of endangered species not only introduces an engaging gameplay loop but also encourages players to think ethically about the environment and marine conservation. By blending real-world issues with gameplay mechanics, the game can provide both fun and educational experiences, while allowing players to contribute to protecting endangered species and making meaningful choices.
-
Suggestion for civillian chemists
Chevy Vercetti replied to dvdcostin06's topic in Civilian Suggestions
+1 A system where resource gathering leads to item crafting through various crafting disciplines like cooking, chemistry, and general crafting is an excellent way to create a deep and engaging gameplay loop. It can enhance immersion by allowing players to craft a wide range of items, from fishing poles to computers, and even create chemicals for more advanced crafting like oil for tires. Below is an expanded approach to crafting, cooking, and chemistry, tied to the resource gathering system you mentioned: 1. Resource Gathering System: Map Resources: The game world has a variety of gather-able resources scattered across the map. Players can harvest wood, plants, ores, water, minerals, tree sap, and more. Each resource is tied to a specific crafting discipline (e.g., wood goes to crafting, sap and oils go to chemistry, etc.). Resource Nodes: Special resource nodes can be found, such as trees for sap, mineral deposits for ores, wild plants for cooking ingredients, and water sources for collecting fresh water or minerals. Seasonal Changes: Some resources are only available during certain seasons, like tree sap being harvested in the spring or special herbs that only grow in the winter. 2. Crafting Disciplines: General Crafting (for items like fishing poles, radios, computers, etc.): Crafting Materials: Wood (from chopping trees): Used to make basic tools, furniture, fishing rods, and structural items. Metal (from mining or dismantling): Needed for tools, computers, radios, and mechanical parts. Fibers (from plants or trees): Used in creating ropes, nets, and certain crafting components. Plastic/Glass (from dismantling items like electronics): For crafting radios, computers, and lenses. Stone (from mining): Used in various construction items, from simple tools to advanced machinery. Example Crafting Recipes: Fishing Pole: Wood (x3) + Fiber (x2) + Metal (x1) = Basic Fishing Rod Radio: Metal (x2) + Glass (x1) + Wire (x1) = Basic Radio Computer: Metal (x3) + Glass (x2) + Plastic (x1) + Wires (x2) = Basic Computer Basic Tools (Axe, Hammer, etc.): Wood (x2) + Metal (x2) = Basic Tool Unique Crafting Feature: Upgrade Path: As players level up their Crafting skill, they can upgrade their crafting recipes to create more advanced versions of basic items. For instance, the Fishing Rod can be upgraded to a Magical Fishing Rod or Carbon Fiber Rod for better catch rates or higher durability. Cooking (Using Gathered Ingredients): Cooking Materials: Herbs (from plants): Used to create cooking recipes, elixirs, and potions. Meats (from hunting animals): Can be cooked for nutritional value or used in advanced recipes. Water (from rivers, lakes): For soups or brewing recipes. Fruit/Vegetables (from foraging or farming): Used in a variety of recipes for buffing stats or healing. Example Recipes: Grilled Fish: Fish (x1) + Herb (x1) = Grilled Fish (Boosts health, stamina recovery) Elixir of Energy: Herb (x1) + Water (x1) = Energy Elixir (Restores stamina) Meat Stew: Meat (x2) + Vegetable (x2) + Water (x1) = Meat Stew (Boosts health and regeneration) Fruit Salad: Fruit (x3) = Fruit Salad (Restores health over time) Unique Cooking Feature: Craftable Buffs: Certain cooked items can provide temporary buffs (e.g., increased strength, speed, or protection) for the player, essential for tackling tougher enemies or challenges. Recipe Discovery: As the player progresses in cooking skill, they can unlock new recipes by combining ingredients in different ways, finding rare ingredients, or even experimenting. Chemistry (For Advanced Materials like Oil, Tires, and More): Chemistry Materials: Tree Sap (from wood chopping): Used to create resins, oils, and rubber for advanced crafting. Minerals (from mining): Useful in creating advanced chemicals, such as refined oils and metals. Water (from rivers, lakes): Can be used to purify or create chemical reactions for crafting advanced materials. Herbs and Flowers (from plants): Used for crafting potions or enhancing chemicals. Example Recipes: Tree Sap to Oil: Tree Sap (x5) = Crude Oil (Can be refined into various items like tires, lubricants, etc.) Tree Sap to Rubber: Tree Sap (x3) + Mineral (x1) = Rubber (Used to create Tires or Rubber Components) Refining Oil (for Tires): Crude Oil (x2) + Mineral (x1) = Refined Oil (Used for Tires or mechanical upgrades) Chemical Batteries (for electronics or energy): Minerals (x2) + Water (x1) + Herb (x1) = Battery (Used for electronics like radios and computers) Unique Chemistry Feature: Chemical Reactions: Certain crafting recipes require combining multiple chemicals and elements in specific ratios. Mistakes in combining elements can lead to dangerous explosions, but success can yield powerful items like high-grade oil or special alloys. Chemical Crafting Stations: To craft advanced items (like tires or batteries), players need to build a chemistry station. As the player’s Chemistry skill grows, they can build larger, more powerful stations that can handle advanced chemical processes. Example of Unique Advanced Item Creation: Crafting a Tire: Gather Materials: Wood (x2) – Harvested from trees. Tree Sap (x5) – Gathered by chopping trees and collecting sap. Rubber (x2) – Made by combining tree sap and minerals. Metal (x3) – Mined from rocks or dismantled machinery. Chemistry Process (Create Oil and Rubber): Use Tree Sap in the Chemistry Station to create Crude Oil. Use Crude Oil and Rubber to create Refined Oil. Craft Tire: Combine Metal, Refined Oil, and Rubber in the Crafting Station to create Tires. Bonus System: Players with a high crafting skill might unlock the ability to create Advanced Tires that have improved durability or speed. Players can craft multiple tire variations based on materials like rubber from magical trees or oil from rare sources, giving them an edge in specialized crafting. Additional Ideas for System Integration: Skill Progression System (For Crafting, Cooking, Chemistry): As the player advances in Crafting, Cooking, and Chemistry, they unlock special crafting abilities: Master Crafter: Craft multiple items at once. Advanced Chemist: Access to rare chemical reactions and the ability to combine dangerous ingredients. Gourmet Cook: Unlocks exotic and powerful recipes that provide buffs and special effects. Resource Sustainability: Renewable Resources: Encourage players to replant trees or set up mining machines to ensure they have a sustainable supply of materials. Some items like rubber or oil could be scarce, requiring the player to manage resources effectively. This system of resource gathering, crafting, cooking, and chemistry provides a holistic experience that rewards exploration and creative thinking. Players can experiment with combining resources in new ways, unlocking new recipes and processes that can give them unique advantages, whether for combat, crafting, or survival. -
Moving heavy items QOL changes
Chevy Vercetti replied to Steven Hayes's topic in Civilian Suggestions
+1 GPS / Map : 0 Volume Carry Weight i agree to this idea. -
+1 having a bag to carry should increase the amount of space we are technically allowed to carry, with that addition to it, being over encumbered "over weight" should have a slight dis-advantage of walking slower , a carry bag is pointless to have, only thing they are good for is just using it as a saved "load out" ammo , snacks, guns, clothes "saved outfit's" .. doesn't have any real desire to use them beyond this capacity, not really beneficial.
-
How this could be implemented into the city, A skill progression system is a great way to track player advancement in various activities, like fishing, dismantling, and wood chopping. Here’s an outline for a skill progression system that could apply to these activities, with some ideas on how they could evolve as the player levels up. General Structure: Skill Levels: Each activity has a progression system with levels, experience points (Experience), or another measure of progress (e.g., mastery points). Experience Gain: Players gain Experience for performing relevant actions (e.g., fishing, chopping wood, dismantling objects). Experience scale based on difficulty, rarity, or quality of the action performed. Skill Perks: As players level up their skills, they unlock perks or abilities that improve their efficiency or expand their capabilities in that activity. 1. Fishing Skill Progression: Levels: Level 1: Novice Fisherman Level 5: Apprentice Fisherman Level 10: Skilled Fisherman Level 15: Master Fisherman Level 20: Legendary Fisherman Perks/Abilities: Level 1: Can fish with basic tools (wooden fishing rod). Basic fish catch rate. Activity's Level 5: Unlocks bait crafting, increases fish catch rate slightly. Level 10: Access to upgraded fishing rods. Unlocks chance for rare fish catches. Level 15: Fishing spots give better quality fish (e.g., larger fish, rarer species). Faster fishing times. Level 20: Ability to fish in new, more dangerous locations (e.g., deep waters or icy waters). Ability to catch legendary fish. Experience Gain: Catching fish yields Experience. Rare fish give more Experience. Environmental factors (weather, location) can affect Experience. 2. Dismantling Skill Progression: Levels: Level 1: Novice Dismantler Level 5: Apprentice Dismantler Level 10: Skilled Dismantler Level 15: Master Dismantler Level 20: Legendary Dismantler Perks/Abilities: Level 1: Basic dismantling tools (e.g., hammer, saw). Dismantling yields basic materials (wood, nails). Level 5: Unlocks ability to salvage rarer materials (e.g., metal, rare components). Level 10: Faster dismantling time, ability to recover advanced crafting materials (e.g., gems, special alloys). Level 15: Access to dismantle special structures or complex machines for premium materials. Level 20: Unlocks ability to break down high-tier objects (e.g., ancient or powerful machinery), rare salvage rewards. Experience Gain: Dismantling objects gives Experience based on the value and rarity of the object being dismantled. 3. Wood Chopping Skill Progression: Levels: Level 1: Novice Woodcutter Level 5: Apprentice Woodcutter Level 10: Skilled Woodcutter Level 15: Master Woodcutter Level 20: Legendary Woodcutter Perks/Abilities: Level 1: Can chop basic trees with basic tools (axe). Drops common wood types. Level 5: Unlocks ability to chop tougher trees (e.g., oak, pine). Faster chop speed. Level 10: Access to improved axes (e.g., steel or enchanted axes). Can harvest rare wood types. Level 15: Chop down massive trees for large amounts of high-quality wood. Unlocks rare crafting materials like sap, resin, etc. Level 20: Ability to chop down ancient or mystical trees that yield legendary materials. Auto-chop feature for easier farming. Experiance Gain: Chopping trees gives Experience based on the tree type, rarity, and size. Using higher-tier tools or completing difficult woodcutting tasks yields more XP. 4. Generic Skill Features (for all activities): Energy & Time Management: Players can use energy or stamina to perform tasks. As they progress, they can perform tasks more efficiently with fewer resources. Crafting and Tool Progression: Each skill could allow for crafting better tools or gear that make the activity more efficient (e.g., better fishing rods, dismantling tools, or axes). Special Tasks: At higher skill levels, players might be able to take on special quests or challenges related to their activities. These could reward them with rare items or unlock new game play features. Skill Synergy: Some activities could complement each other, e.g., dismantling gives materials needed for crafting fishing rods or axes, and woodcutting could help provide materials for fishing boats. Experience Scaling and Difficulty: Early Levels: Experiance gains are quick to help players feel immediate progress. Mid Levels: The XP requirement grows, with some rarer materials or tasks offering higher rewards. Late Levels: The XP requirements become much steeper, but special tasks and rare materials can help boost progression. Example of Skill Tree: Here’s a brief idea of a possible skill tree for each activity: Fishing Tree: Tier 1: Increase fish catch rate, Unlock better rods. Tier 2: Unlock bait crafting, Rare fish chances. Tier 3: Special locations, Legendary fish catches. Tier 4: Master fisherman skills (Auto-fish, perfect catches). Dismantling Tree: Tier 1: Basic tool efficiency, salvage basic components. Tier 2: Unlock rare material salvage, speed up dismantling. Tier 3: Access advanced dismantling tools, special machines. Tier 4: Legendary dismantling, rare parts recovery. Wood Chopping Tree: Tier 1: Basic axe speed, common wood collection. Tier 2: Tougher trees, rarer wood types. Tier 3: Exotic wood, increased axe durability. Tier 4: Legendary trees, auto-chop, rare crafting materials. Additional Ideas: Skill Mastery Bonuses: When you max out a skill, you can earn a mastery bonus that gives permanent passive benefits for all activities related to that skill. For example, a maxed-out Fisherman could get a general increase in all crafting and gathering activities that potentially go from "Master" to the Next Scale of Repeating the process of working there way to Next Mastery Class "Bonus" Skill Synergy Bonuses: If you level up multiple skills, you could unlock synergy bonuses. For example, a highly skilled woodcutter could unlock special fishing boats or traps that improve the Fishing skill. This skill system would reward players for consistency, specialization, and strategic choices, while offering depth in how each activity can be improved over time!