Advertisement
glitchdetector

Tycoon Faction Perks

Dec 23rd, 2023
965
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 10.20 KB | None | 0 0
  1. PURCHASEABLE_PERKS = {
  2.     {item = "parachute", limit = 5, name = "Parachute", data = {}, price = 50 * 10^6, options = {}, info = "Allows players to obtain a parachute"},
  3.     {item = "garage", limit = 4, name = "Garage", data = {}, price = 15 * 10^6, options = {}, info = "Allows spawning of vehicles"},
  4.     {item = "water_garage", limit = 4, name = "Watercraft Garage", data = {}, price = 15 * 10^6, options = {}, info = "Allows spawning of boats"},
  5.     {item = "atm", limit = 2, name = "ATM", data = {}, price = 8 * 10^6, options = {}},
  6.     {item = "hangar", limit = 2, name = "Hangar", data = {}, price = 15 * 10^6, options = {}, info = "Allows spawning of planes<br/>NOTE: Planes must only be used in areas designed for planes, normal flight and ATC rules apply.</br>Prop Runways can be used, just keep them away from roads and other players."},
  7.     {item = "helipad", limit = 2, name = "Helipad", data = {}, price = 15 * 10^6, options = {}, info = "Allows spawning of helicopters"},
  8.     {item = "market", limit = 6, name = "Market (General Store)", data = {market = "General Store"}, price = 8 * 10^6, options = {}, datafunc = function(data) return "Type: " .. data.market end},
  9.     {item = "market", limit = 6, name = "Market (Gas Station)", data = {market = "Gas Station"}, price = 8 * 10^6, options = {}},
  10.     {item = "market", limit = 6, name = "Market (Traffic Permits)", data = {market = "Traffic Permits"}, price = 8 * 10^6, options = {}},
  11.     {item = "market", limit = 6, name = "Market (Fishing / Diving)", data = {market = "Fishing / Diving"}, price = 8 * 10^6, options = {}},
  12.     {item = "market", limit = 6, name = "Market (Medical Center)", data = {market = "Medical Center"}, price = 12 * 10^6, options = {}},
  13.     {item = "market", limit = 6, name = "Market (Equipment)", data = {market = "Equipment"}, price = 12 * 10^6, options = {}},
  14.     {item = "carwash", limit = 1, name = "Car Wash", data = {}, price = 8 * 10^6, options = {}},
  15.     {item = "repair", limit = 5, name = "Repair Shop", data = {}, price = 15 * 10^6, options = {}, info = "Allows repair of vehicles"},
  16.     {item = "repair_instant", limit = 5, name = "Instant Repair Shop", data = {}, price = 1500 * 10^6, options = {}, info = "Instantly repairs your vehicle"},
  17.     {item = "fuel", limit = 5, name = "Fuel Station", data = {}, price = 25 * 10^6, options = {}, info = "Contains all fuel types"},
  18.     {item = "jobcenter", limit = 1, name = "Job Center", data = {}, price = 35 * 10^6, options = {}, info = "Gives access to most jobs"},
  19.     {item = "spawn", limit = 1, name = "Spawn Point", data = {}, price = 75 * 10^6, options = {}},
  20.     {item = "speedtrap", limit = 5, name = "Speed Trap", data = {tickets = 0, earnings = 0, highscore = 0}, price = 20 * 10^6, options = {}, info = "Places a speed trap camera.<br/>All speeding tickets generated by this trap goes directly into the factions credit balance", datafunc = function(data) return "Tickets: " .. data.tickets .. "<br/>Total Fees: " .. data.earnings .. "<br/>Fastest Recorded Speed: " .. data.highscore end},
  21.     {item = "self_storage", limit = 1, name = "Self Storage", data = {size = 50000, permissions = {}}, price = 750 * 10^6, options = {}, info = "Capacity: 500 000kg<br/>Free to use"},
  22.     {item = "warp_a", limit = 1, name = "Warp A", data = {}, price = 10 * 10^6, options = {}, info = "Allows you to warp to and from Warp B<br/>Direction is based on your current direction)"},
  23.     {item = "warp_b", limit = 1, name = "Warp B", data = {}, price = 10 * 10^6, options = {}, info = "Allows you to warp to and from Warp A<br/>Direction is based on your current direction)"},
  24.     {item = "warp_c", limit = 1, name = "Warp C", data = {}, price = 50 * 10^6, options = {}, info = "Allows you to warp to and from Warp D<br/>Direction is based on your current direction)"},
  25.     {item = "warp_d", limit = 1, name = "Warp D", data = {}, price = 50 * 10^6, options = {}, info = "Allows you to warp to and from Warp C<br/>Direction is based on your current direction)"},
  26.     {item = "warp_e", limit = 1, name = "Warp E", data = {}, price = 150 * 10^6, options = {}, info = "Allows you to warp to and from Warp F<br/>Direction is based on your current direction)"},
  27.     {item = "warp_f", limit = 1, name = "Warp F", data = {}, price = 150 * 10^6, options = {}, info = "Allows you to warp to and from Warp E<br/>Direction is based on your current direction)"},
  28.     {item = "warp_g", limit = 1, name = "Warp G", data = {}, price = 300 * 10^6, options = {}, info = "Allows you to warp to and from Warp H<br/>Direction is based on your current direction)"},
  29.     {item = "warp_h", limit = 1, name = "Warp H", data = {}, price = 300 * 10^6, options = {}, info = "Allows you to warp to and from Warp G<br/>Direction is based on your current direction)"},
  30.     -- {item = "veh_warp_a", limit = 1, name = "Vehicle Warp A", data = {}, price = 25 * 10^6, options = {}, info = "Allows you to warp to and from Vehicle Warp B<br/>Allows vehicles to also be warped<br/>Direction is based on your current direction!"},
  31.     -- {item = "veh_warp_b", limit = 1, name = "Vehicle Warp B", data = {}, price = 25 * 10^6, options = {}, info = "Allows you to warp to and from Vehicle Warp A<br/>Allows vehicles to also be warped<br/>Direction is based on your current direction!"},
  32.     -- {item = "veh_warp_c", limit = 1, name = "Vehicle Warp C", data = {}, price = 100 * 10^6, options = {}, info = "Allows you to warp to and from Vehicle Warp D<br/>Allows vehicles to also be warped<br/>Direction is based on your current direction!"},
  33.     -- {item = "veh_warp_d", limit = 1, name = "Vehicle Warp D", data = {}, price = 100 * 10^6, options = {}, info = "Allows you to warp to and from Vehicle Warp C<br/>Allows vehicles to also be warped<br/>Direction is based on your current direction!"},
  34.     -- {item = "veh_warp_e", limit = 1, name = "Vehicle Warp E", data = {}, price = 300 * 10^6, options = {}, info = "Allows you to warp to and from Vehicle Warp F<br/>Allows vehicles to also be warped<br/>Direction is based on your current direction!"},
  35.     -- {item = "veh_warp_f", limit = 1, name = "Vehicle Warp F", data = {}, price = 300 * 10^6, options = {}, info = "Allows you to warp to and from Vehicle Warp E<br/>Allows vehicles to also be warped<br/>Direction is based on your current direction!"},
  36.     -- {item = "veh_warp_g", limit = 1, name = "Vehicle Warp G", data = {}, price = 500 * 10^6, options = {}, info = "Allows you to warp to and from Vehicle Warp H<br/>Allows vehicles to also be warped<br/>Direction is based on your current direction!"},
  37.     -- {item = "veh_warp_h", limit = 1, name = "Vehicle Warp H", data = {}, price = 500 * 10^6, options = {}, info = "Allows you to warp to and from Vehicle Warp G<br/>Allows vehicles to also be warped<br/>Direction is based on your current direction!"},
  38.     {item = "biz_collection", limit = 1, name = "Business Collector", data = {}, price = 750 * 10^6, options = {}, info = "Allows collection of all business bonuses at once"},
  39.     -- {item = "marketplace", limit = 1, name = "Marketplace", data = {}, price = 35 * 10^6, options = {}, info = "Access point for the marketplace"},
  40.     {item = "skinshop", limit = 1, name = "Clothing Store", data = {}, price = 15 * 10^6, options = {}, info = "Allows changing of clothes"},
  41.     {item = "wardrobe", limit = 1, name = "Wardrobe", data = {}, price = 35 * 10^6, options = {}, info = "Allows saving and loading of outfits"},
  42.     {item = "bonus_exp_5", limit = 1, name = "5% EXP Bonus", data = {}, price = 250 * 10^6, options = {}, info = "Permanent 5% EXP bonus for members", permanent = true},
  43.     {item = "bonus_range", limit = 1, name = "200m HQ Range Bonus", data = {}, price = 1000 * 10^6, options = {}, info = "Permanent 200m HQ range increase<br/>Increases the total HQ range to 550m", permanent = true},
  44.     -- {item = "casino", limit = 1, name = "Slot Machine", data = {}, price = 35 * 10^6, options = {}, info = "Allows you to gamble all your life savings."},
  45.     {item = "lsc", limit = 5, name = "Los Santos Customs", data = {}, price = 120 * 10^6, options = {}, info = "Allows vehicle customization"},
  46.     {item = "vehicle_dealership", limit = 1, name = "Vehicle Dealership", data = {}, price = 120 * 10^6, options = {}, info = "Allows vehicles to be bought"},
  47.     {item = "aircraft_dealership", limit = 1, name = "Aircraft Dealership", data = {}, price = 120 * 10^6, options = {}, info = "Allows Aircraft to be bought"},
  48.     {item = "boat_dealership", limit = 1, name = "Boat Dealership", data = {}, price = 120 * 10^6, options = {}, info = "Allows Boats to be bought"},
  49.  
  50.     -- {item = "membercap", limit = 20, name = "Member Limit +5", data = {}, price = 25 * 10^6, options = {}, info = "Increases the maximum faction member limit by 1", permanent = true},
  51.     -- {item = "range", limit = 10, name = "Range Limit +50m", data = {}, price = 50 * 10^6, options = {}, info = "Increases the faction HQ range by 50m (25m in each direction)", permanent = true},
  52.     {item = "prop", limit = 0, name = "Prop / Object", data = {}, price = 0 * 10^6, options = {}, info = "A placed object", hidden = true, datafunc = function(data) return "Type: " .. data.propName end},
  53.  
  54.     {item = "boost_tickspeed", limit = 1, name = "Extra Crafting Speed", data = {}, price = 2000 * 10^6, options = {}, info = "Any crafting done within 30 meters will have a 25% speed increase"},
  55.     {item = "boost_vehicleperf", limit = 1, name = "Garage Speed Boost", data = {}, price = 2000 * 10^6, options = {}, info = "Garages within 30 meters have a 10% speed boost applied to spawned vehicles"},
  56.     {item = "boost_exp", limit = 1, name = "5% EXP Boost Zone", data = {}, price = 2000 * 10^6, options = {}, info = "Players within a 30 meter zone will have a 5% EXP Boost"},
  57.  
  58.     {item = "pickup_engine", limit = 5, name = "Engine Swapper", data = {}, price = 2000 * 10^6, options = {}, info = "Adds an Engine Swap location, allowing you to swap engine audio"},
  59.  
  60.     {item = "pickup_perf15", limit = 10, name = "15% Vehicle Boost Vendor", data = {}, price = 1500 * 10^6, options = {}, info = "You can temporarily boost vehicles with a 15% boost here. It's not free though"},
  61.     {item = "pickup_perf25", limit = 10, name = "25% Vehicle Boost Vendor", data = {}, price = 3500 * 10^6, options = {}, info = "You can temporarily boost vehicles with a 25% boost here. It's not free though"},
  62. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement