Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- Author: Maxence Lyon
- Altis DEV: https://altisdev.com/user/maxence-lyon
- Teamspeak 3: ts.the-programmer.com
- Web site: www.the-programmer.com
- Steam: « Une Vache Sur CS – Maxence », please leave a message on my profile who says the exact reason before adding me.
- Terms of use:
- - This file is forbidden unless you have permission from the author. If you have this file without permission to use it please do not use it and do not share it.
- - If you have permission to use this file, you can use it on your server however it is strictly forbidden to share it.
- - Out of respect for the author please do not delete this information.
- License number:
- Server's name:
- Owner's name:
- */
- #define false 0
- #define true 1
- class Max_Settings_Plants {
- default_lang = "en"; // fr / en / de / es
- check_all_plants_loop_every_x_seconds = 30;
- item_to_put_water = "arrosoir";
- item_to_delete_plant = "desherbant";
- class Plants {
- class cocaine {
- className = "maxence_plants"; // You can use classname of the object or P3D path, for example : a3\vegetation_f_exp\shrub\b_gardenia_f.p3d
- zones[] = {};
- zoneSize = 0;
- allow_to_plant_in_house = false;
- allow_to_plant_everywhere = true;
- itemNeeded = "graine_cocaine";
- itemGiven = "cocaine";
- amount_min = 1;
- amount_max = 3;
- time_to_growth = 120;
- number_of_watering_needed = 0; //1
- };
- class cannabis {
- className = "Hazendarck_Canabis";
- zones[] = {};
- zoneSize = 0;
- allow_to_plant_in_house = false;
- allow_to_plant_everywhere = true;
- itemNeeded = "graine_cannabis";
- itemGiven = "cannabis";
- amount_min = 1;
- amount_max = 2;
- time_to_growth = 30*60;
- number_of_watering_needed = 3;
- };
- class mais {
- className = "Hazendarck_Mais";
- zones[] = {};
- zoneSize = 0;
- allow_to_plant_in_house = false;
- allow_to_plant_everywhere = true;
- itemNeeded = "graine_mais";
- itemGiven = "mais";
- amount_min = 1;
- amount_max = 3;
- time_to_growth = 60;
- number_of_watering_needed = 0;
- };
- class ble {
- className = "Hazendarck_Ble";
- zones[] = {};
- zoneSize = 0;
- allow_to_plant_in_house = false;
- allow_to_plant_everywhere = true;
- itemNeeded = "graine_ble";
- itemGiven = "ble";
- amount_min = 2;
- amount_max = 4;
- time_to_growth = 30*60;
- number_of_watering_needed = 3;
- };
- class fraisier {
- className = "Hazendarck_Fraisier";
- zones[] = {};
- zoneSize = 0;
- allow_to_plant_in_house = false;
- allow_to_plant_everywhere = true;
- itemNeeded = "graine_fraisier";
- itemGiven = "fraisier";
- amount_min = 2;
- amount_max = 5;
- time_to_growth = 60*60;
- number_of_watering_needed = 0;
- };
- class tournesol {
- className = "Hazendarck_Tournesol";
- zones[] = {};
- zoneSize = 0;
- allow_to_plant_in_house = false;
- allow_to_plant_everywhere = true;
- itemNeeded = "graine_tournesol";
- itemGiven = "tournesol";
- amount_min = 1;
- amount_max = 3;
- time_to_growth = 45*60;
- number_of_watering_needed = 3;
- };
- class tabak {
- className = "COkkie_Pflanzen\C0kkie_tabak.p3d";
- zones[] = {};
- zoneSize = 0;
- allow_to_plant_in_house = false;
- allow_to_plant_everywhere = true;
- itemNeeded = "C0kkie_tabak";
- itemGiven = "tabak";
- amount_min = 1;
- amount_max = 3;
- time_to_growth = 45*60;
- number_of_watering_needed = 0;
- };
- };
- };
Advertisement
Add Comment
Please, Sign In to add comment