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

Search results

  1. D

    Exeption "..........rem"

    Попробуй так: List<DoodadObject> DoodadsAround=getDoodads().ToList(); DoodadObject bestDoodad=DoodadsAround.Where(x => currArr.Contains(x.phaseId) && x.plantZoneId == plantIdH && x.getUseSkills().Count > 0) .OrderBy(y => dist(y)).FirstOrDefault()...
  2. D

    How to add GPS Point to db3 file?

    using System.Data.SQLite library; Open data base; Insert point(x,y,z,name); DataBase Schema (in New editor)
  3. D

    Exeption "..........rem"

    Это кто? currArr
  4. D

    Exeption "..........rem"

    Покажи как ты получаешь весь список объектов и перебираешь его для проверки. если так: try { foreach(Doodad d in Core.getDoodads()) { //Сбор или другая долгая операция. } } catch(Exception error) { } То изволь получить exception
  5. D

    [TEST. BETA] New GPS Editor tests

    Resolution map tiles do not permit. there are BETA Method inserts the clipboard will be added. Method to add by clicking on the map is not very accurate. There are strong differences with the game. You can add a new point, use tool "Split link" by removing links, and to restore the previous...
  6. D

    [TEST. BETA] New GPS Editor tests

    Explained For mass selection of points / links, use the key Alt + left mouse button. Try SHIFT key.
  7. D

    GPS system and GPS editor

    Получи все точки пути методом gps: public List<GpsPoint> GpsGetPath(string endPointName) в цикле рассчитай дистанцию между точками и просуммируй. что то вроде этого: List<GpsPoint> myPath=GPS.GpsGetPath("myPoint"); double distance=0; for(int i =0;i<=myPath.Count-1;i++) {...
  8. D

    GPS system and GPS editor

    Hello! I'm working on developing a new GPS editor. Wait a little longer. Language support is bound to be.
  9. D

    GPS system and GPS editor

    Right-click on the point of a open context menu . Click on one and right-click on the other.
Back
Top