Hey just wanted to share something i use.
Plants any animal/seed/sapling in your inventory. not 100% tested.
If its shit tell me, new here.
Plants any animal/seed/sapling in your inventory. not 100% tested.
If its shit tell me, new here.
PHP:
uint[] _farmGroups = { 8, 21, 47, 48, 49, 51, 52, 53, 55 };
uint[] _farms = { 5938, 5936, 4450 }; //Farm ids
public void Plant(){
foreach(var farm in _farms){
Log("Planting on farm " + farm);
foreach (var item in sqlCore.sqlItems)
{
if(_farmGroups.Contains(item.Value.itemCategorie.id) && itemCount(item.Value.id) > 0 ){
var seedCount = itemCount(item.Value.id);
Log("Seed Count: " + item.Value.name + " - " + seedCount);
PlantItemsAtFarm(item.Value.id, farm);
//Log(item.Value.id + " " + item.Value.name + " " + item.Value.itemCategorie.id);
}
}
}
}






