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

Recent content by DjoniBrave

  1. D

    Why webcam is activated?

    lol!
  2. D

    TextBox Autocompletion in Windows Forms

    Hint: to save your form settings and intercept application events use UIContex: UIContext internal class UIContext:ApplicationContext { private Host host; internal MainFrm mainFrm; public UIContext(Host _host) {...
  3. D

    [TEST. BETA] New GPS Editor tests

    Updated.
  4. D

    [TEST. BETA] New GPS Editor tests

    Out promised to add in the near future
  5. D

    [TEST. BETA] New GPS Editor tests

    GPS-Editor Update 1.0.0.7 1. Boost performance (Tested on 11000+ triangles) 2. The function of the Delaunay triangulation: Create points, select and press T key or tool button: It will soon be added to the Updater. Thanks to all!
  6. D

    проверка пака

    Use Core.LeaveWorldToCharacterSelect Method
  7. D

    проверка пака

    По наличию бафа переноска груза.
  8. D

    DataGridView Problems Windows 8.1

    WPF or WinForm?
  9. D

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

    + 1 tip To add time to the message log (override Log method in MyPlugin): public void Log(string s) { base.Log(DateTime.Now.ToString("hh:mm:ss.fff",System.Globalization.CultureInfo.InvariantCulture) + ":" + s); } public void Log(string s...
  10. D

    Exception Caught

    I would also add: If you are using a thread, use Thread.Join(). This allows you to correctly complete thread! Example: private Thread mainThread; private bool needToStop = false; public void PluginRun() { needToStop = false; mainThread = new Thread(Run)...
  11. D

    WPF plugin dll.

    Обработай в цикле плагина ThreadAbortException
  12. D

    Windows 10 and Archebuddy

    I have everything working perfectly. Build 9926. I do not update the above, because the 5.1 sound does not work. One bug. Disconnect the mouse, if the client closes ArcheAge.We need to reconnect the wireless module. Everything else - good!
  13. D

    Добыча руды

    .... //список id предметов которые мы будем отслеживать private static uint[] itemIds = {8022,//Железная руда 8081}; //Чистая железная руда .... onNewInvItem += NewItemInvent; //подписываемся на событие где нибудь в начале скрипта .... void NewItemInvent(Item item, int count)...
  14. D

    Exception Caught

    1. Use the property gameState to control the state of the client. 2. Before each use of some object, check its not null. 3. Use object identifiers (unique ID) in order not to use object references. 4. Use the wrapper objects for-performance storage in the program. 5. In cycles to handle...
Back
Top