if(src.level >= 200&& src.hunger = 1 &&src.hollowtype == "meno"==(prob(3.2)))
Problem description:
Procs.dm:528:error::bad assignment
wat i was trying to do was make it to where u had to have hunger to move past a cirten point and evolve further this is the last part i need to finish the update so if anyone is willing to help it would be a great help
The problem is that you're using the = operator, which is used for assignment. In actuality it seems likely you don't need to check equality though, because you should simply check if src.hunger is a true value (ie writing just "src.hunger").
Also, you have a problem where a == operaor before the prob() call should actually be another && instead (it might actually work as it is, but it is badly done).