Jump to content
Rosso777

Pumps not working

Recommended Posts

Can't seem to fill water bottles at pumps, not sure why. My config reads as such:

 

class CleanWaterSource
    {
        name = "Water cooler";
        models[] =     
        {
            "watercooler",
            "waterpump_01_f",
            "wellpump",
            "Land_Pumpa",
            "CUP_A1_pumpa",
            "CUP_A2_pumpa",
            "CUP_A2_wellpump"
        };
    };

 

Any ideas?

Share this post


Link to post
Share on other sites

Got the same problem. Trying to add map model class names of wells and pumps in the config, but it does not work.

 

Share this post


Link to post
Share on other sites
	class WaterSource
	{
		name = "Dirty Water Source (Barrels/Pumps)";
		models[] = 	
		{
			
			"misc_wellpump",
            		"pumpa",
			"concretewell_02_f",
			"water_source_f",
			"waterbarrel_f", 
			"land_pumpa"
			
		};
	};

The classnames have to be in lowercase.

  • Like 1

Share this post


Link to post
Share on other sites
On 9/8/2020 at 10:01 AM, El' Rabito said:

	class WaterSource
	{
		name = "Dirty Water Source (Barrels/Pumps)";
		models[] = 	
		{
			
			"misc_wellpump",
            		"pumpa",
			"concretewell_02_f",
			"water_source_f",
			"waterbarrel_f", 
			"land_pumpa"
			
		};
	};

The classnames have to be in lowercase.

 

 

 This was the solution. Thank you!

Share this post


Link to post
Share on other sites

×