What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Can't plant 40 trees on thatched farm house anymore?

Status
Not open for further replies.

ShrekerMan

New Member
Joined
Sep 24, 2014
Messages
35
Reaction score
0
About 2 updates ago the scarecrow plugin allowed you to plant up to 40 Cedars with one thatchfarm house! but now you can only plant around 20 :/ would it be possible to get this feature back?
 
About 2 updates ago the scarecrow plugin allowed you to plant up to 40 Cedars with one thatchfarm house! but now you can only plant around 20 :/ would it be possible to get this feature back?
How many cedars you can plant with hands without AB?
 
How many cedars you can plant with hands without AB?
I haven't tested it because the bot would be able to plant alot more than i could fit and that was nice, but ever since that update it would leave massive gaps and would have to be filled in by hand :( ( i tried serveral of plant methods )
 
I haven't tested it because the bot would be able to plant alot more than i could fit and that was nice, but ever since that update it would leave massive gaps and would have to be filled in by hand ( i tried serveral of plant methods )
Do it. When you plant 40 cedars - it was bug, and anyone can screen it and create ticket for your character.
If you still want to plant much more you can "legitable" - you can use PlantItemsInZone instead of PlantItemsAtFarm, and create your custom zone in the thatched farmhouse plant area
 
Do it. When you plant 40 cedars - it was bug, and anyone can screen it and create ticket for your character.
If you still want to plant much more you can "legitable" - you can use PlantItemsInZone instead of PlantItemsAtFarm, and create your custom zone in the thatched farmhouse plant area
Damn, okay i been doing it for the past month now and i haven't had a problem but thanks for the advice.
( I'm not a developers so i don't know how to do all that stuff ) :l
 
Willing to pay for a plugin like the old win that can plant 40 cedars ( 2 rows ) on a thatched farm house.
 
Do it. When you plant 40 cedars - it was bug, and anyone can screen it and create ticket for your character.
If you still want to plant much more you can "legitable" - you can use PlantItemsInZone instead of PlantItemsAtFarm, and create your custom zone in the thatched farmhouse plant area
Could you possibly show me an example on how to do that?
 
Could you possibly show me an example on how to do that?
Sorry, ATM have another tasks.
Its something like
Code:
var z1 = new RectangleZone(new List<ZonePoint>() { new ZonePoint(x1,y1), new new ZonePoint(x2,y2), new new ZonePoint(x3,y3), new new ZonePoint(x4,y4)}) // its 1\4 of your thatched zone where you want to plant, in right corner for example
PlantItemsInZone(.....,z1);
var z2 = new RectangleZone(new List<ZonePoint>() { new ZonePoint(x1,y1), new new ZonePoint(x2,y2), new new ZonePoint(x3,y3), new new ZonePoint(x4,y4)}) // its 1\4 of your thatched zone where you want to plant, in left corner for example
PlantItemsInZone(.....,z2);
var z3 = new RectangleZone(new List<ZonePoint>() { new ZonePoint(x1,y1), new new ZonePoint(x2,y2), new new ZonePoint(x3,y3), new new ZonePoint(x4,y4)}) // its 1\4 of your thatched zone where you want to plant, in top corner for example
PlantItemsInZone(.....,z3);
var z4 = new RectangleZone(new List<ZonePoint>() { new ZonePoint(x1,y1), new new ZonePoint(x2,y2), new new ZonePoint(x3,y3), new new ZonePoint(x4,y4)}) // its 1\4 of your thatched zone where you want to plant, in botton corner for example
PlantItemsInZone(.....,z4);
 
Sorry, ATM have another tasks.
Its something like
Code:
var z1 = new RectangleZone(new List<ZonePoint>() { new ZonePoint(x1,y1), new new ZonePoint(x2,y2), new new ZonePoint(x3,y3), new new ZonePoint(x4,y4)}) // its 1\4 of your thatched zone where you want to plant, in right corner for example
PlantItemsInZone(.....,z1);
var z2 = new RectangleZone(new List<ZonePoint>() { new ZonePoint(x1,y1), new new ZonePoint(x2,y2), new new ZonePoint(x3,y3), new new ZonePoint(x4,y4)}) // its 1\4 of your thatched zone where you want to plant, in left corner for example
PlantItemsInZone(.....,z2);
var z3 = new RectangleZone(new List<ZonePoint>() { new ZonePoint(x1,y1), new new ZonePoint(x2,y2), new new ZonePoint(x3,y3), new new ZonePoint(x4,y4)}) // its 1\4 of your thatched zone where you want to plant, in top corner for example
PlantItemsInZone(.....,z3);
var z4 = new RectangleZone(new List<ZonePoint>() { new ZonePoint(x1,y1), new new ZonePoint(x2,y2), new new ZonePoint(x3,y3), new new ZonePoint(x4,y4)}) // its 1\4 of your thatched zone where you want to plant, in botton corner for example
PlantItemsInZone(.....,z4);
Okay, Thanks :)
 
Status
Not open for further replies.
Back
Top