Posted June 5, 20178 yr Hi, I'm wondering how I can stop plants like trees or wheat or whatever other plant there might be from growing in a chunk with a specific value of polution (See here for more info about polution). Polution is chunk based and might be modified over time. So chunk A can have 0 polution while chunk B has a polution which is too high to let things grow there anylonger. Optional: - How is it possible to change the value of any plant which determines how long it takes until the plant is full grown? (for example for wheat) Thx in advance. Bektor Developer of Primeval Forest.
June 5, 20178 yr There is a SaplingGrowTreeEvent for saplings(cancelable has a result). There is a CropGrowEvent and it's subclasses for crop growth(Pre is cancelable has a result(Thanks to @Draco18s for correcting me)). Note that if a mod author does not call those events on their crops or trees there is nothing you can do(*cough* Pam's Harvestraft *cough*) Edited June 5, 20178 yr by V0idWa1k3r
June 5, 20178 yr 13 minutes ago, V0idWa1k3r said: There is a CropGrowEvent and it's subclasses for crop growth(Pre is cancelable). No, it uses RESULT.DENY to prevent the growth. It's effectively canceled, but it does not use event.setCanceled(true). Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
June 5, 20178 yr Author 42 minutes ago, V0idWa1k3r said: There is a SaplingGrowTreeEvent for saplings(cancelable). There is a CropGrowEvent and it's subclasses for crop growth(Pre is cancelable has a result(Thanks to @Draco18s for correcting me)). Note that if a mod author does not call those events on their crops or trees there is nothing you can do(*cough* Pam's Harvestraft *cough*) How should I stop a tree from growing with this event (SaplingGrowTreeEvent)? Also the event states this: Quote This event is not Cancelable. This event has a result. HasResult This result determines if the sapling is allowed to grow. Developer of Primeval Forest.
June 5, 20178 yr Yeah, Draco already mentioned that, I've read the annotations on events incorrectly, my bad. Just set the result to DENY Edited June 5, 20178 yr by V0idWa1k3r
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.