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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

illegal farm?

lollos

New Member
Joined
Sep 25, 2013
Messages
130
hi
can i have some script to gather illegal farm around the world? log or fruit for example
 
hi
can i have some script to gather illegal farm around the world? log or fruit for example

Of course!

Try this:
https://www.thebuddyforum.com/arche...53-plugin-world-farmer-world-farm-plugin.html

Also, if you want to create it yourself, you can do something like that:
Code:
//size of area you want gather.
int meters = 100;

//Round area, you are in middle and created X meters arround you.
RoundZone zone = new RoundZone(me.X, me.Y, meters);

//Collect each dood (object) inside area.
foreach (var dood in getDoodads()){
    //Get object interactuable skills
    var skills = dood.getUseSkills();
    
    //Check if obtained skills aren't null and then collect dood
    if(skills != null && skills[0] != null && skills[0].id != null)
        CollectItemsInZone(dood.name, skills[0].id, zone);
}

If not compile let me know, I maded it with forum editor, not VS... But I recomend you to use plugin in mentioned link.
 
Last edited:
tryed all two and don't work for me :|
i want only gather fruit or chop log from illegal farm (not mine) found around the world (neonative etc)
 
tryed all two and don't work for me :|
i want only gather fruit or chop log from illegal farm (not mine) found around the world (neonative etc)

I think the plugin mentioned in my first response will work perfectly, I used it time ago and all good... But maybe can be broken, so, ask me what you want (as specific as possible) on my main post:
https://www.thebuddyforum.com/arche...plugins/219543-wich-plugin-dont-released.html

And I'll create it for you! And yes, for free!
 
Back
Top