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

[UPDATED] What new playersbotters would like to see in the AB

RU
1. Сделайте возможность, назначать клавиши на точках в GPS Editor. Что бы можно было назначать нажатие, либо удержание определенных клавиш (на точках маршрута)

2. Так же - сделайте интуитивно понятную среду, для взаимодействия с вашими API, что бы была вожножность складывать бота - как конструктор, без особых знаний С# или С++


ENG
1. Take the opportunity to assign keys on points in GPS Editor. What would be possible to appoint pressing or holding certain keys (for waypoints)

2. Also - make intuitive environment for interacting with your API, that there was an opportunity to put the bot - as a designer, without any knowledge of C # or C ++
 
I noticed the premium days left now works when even offline. Is it possible to have an estimated labor regeneration amount while offline as well? So if an account is logged out with 0 labor it will calculate the 5/10 labor regen every 5 min and say something like 360 labor in 3 hours without even logging in.

EDIT: I would also like to see folders within the Plugins Manager to help us organize our plugins. I'm not sure if this is possible though.
 
EDIT: I would also like to see folders within the Plugins Manager to help us organize our plugins. I'm not sure if this is possible though.

I have several subfolders in my Plugin folder for each plugin, what are you asking for?
 
Out could you make it possible to read, for example the last 20 in the chatbox. It would really like to have this function because if somebody whispers me asking if i am a bot i could just parse for "bot" and then send a auto reply that i am not. I think this would lower the ban rate on mob farming bots alot.
 
Out could you make it possible to read, for example the last 20 in the chatbox. It would really like to have this function because if somebody whispers me asking if i am a bot i could just parse for "bot" and then send a auto reply that i am not. I think this would lower the ban rate on mob farming bots alot.

You can already now use the onChatMessage:

Code:
       public void MyChatMessage(ChatType chatType,string text,string sender)
       {
           if(chatType == ChatType.Whisper) MessageBox.Show("PM received from " + sender + ": " + text);
       }
       //Call on plugin start
       public void PluginRun()
       {                 
           onChatMessage += MyChatMessage;
           while (true)
               Thread.Sleep(1000);
       }
 
You can already now use the onChatMessage:

Code:
       public void MyChatMessage(ChatType chatType,string text,string sender)
       {
           if(chatType == ChatType.Whisper) MessageBox.Show("PM received from " + sender + ": " + text);
       }
       //Call on plugin start
       public void PluginRun()
       {                 
           onChatMessage += MyChatMessage;
           while (true)
               Thread.Sleep(1000);
       }

thx for the code snippet. This will work just fine. I must have overlooked it a dozen times in api manuel.
 
I think a free multi-account program would be great for bringing people into the site.
 
I'd like the options that are available in the old scarecrow plugin to be available in the new one. Things like random/optimal placement and snake from border/center.
 
Back
Top