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

[TEST. BETA] New GPS Editor tests

Overview of the next update.
editor:
1. The new behavior object selection.
2. Fixed bug when you double-click on the point. (moving point)
3. Deleting the name of a point - fixed.
4. Support properties radius from the point.
plugin:
1. Testing routes.
2. Adding a named point.
3. The use of scripts to send points to the editor. (If available :cool:)
RU
Обзор ближайших обновлений.
Редактор:
1. Новое поведение выбора объектов.
2. Исправлена ошибка при двойном клике на точке. (перемещение точки)
3. Удаление имени у точки - исправлено.
4. Поддержка свойства радиус у точки.
Плагин:
1. Тестирование маршрутов.
2. добавление именованной точки.
3. использование скриптов для отправки точек в редактор. (Если получится)
 
I really like this version of the editor, I have 1 question though. Can I get an explanation of how the new radius feature can be used?

I also have a feature request. Could an optional description field be added for metadata regarding a point? I'd like to be able to add additional info to some GPSpoints without making really long names.

Thanks for this editor, it is very useful,
user
 
I really like this version of the editor, I have 1 question though. Can I get an explanation of how the new radius feature can be used?

I also have a feature request. Could an optional description field be added for metadata regarding a point? I'd like to be able to add additional info to some GPSpoints without making really long names.

Thanks for this editor, it is very useful,
user
Out possible to add support for properties in GPS. I use this property to point to the ore. For farm zone.
You want to store metadata in the form of a byte array? Describe for more details.
 
I would prefer a string field for flexibility, thanks. I would like to be able to store a json string or xml string in that field.

Can you tell me about the new radius feature? I'm very interested in its usage. Maybe a couple examples?

thanks,
user
 
Last edited:
I would prefer a string field for flexibility, thanks. I would like to be able to store a json string or xml string in that field.

Can you tell me about the new radius feature? I'm very interested in its usage. Maybe a couple examples?

thanks,
user
See Zone class in AB API.
Examples:
RoundZone
Code:
RoundZone roundZone = new RoundZone(GpsPoint.x, GpsPoint.y, GpsPoint.Radius);
if(roundZone.ObjInZone(someObject))
//Do action
GpsPoint.Radius is not yet supported in GPS.
PolygonZone
Code:
GpsPolygon gpsPoly=Gps.gps.GetAllGpsPolygons().Where(w => w.name == "PolygonName").FirstOrDefault();
if(gpsPoly)
{
List<ZonePoint> points = p.points.Select(s => new ZonePoint(s.x, s.y)).ToList();
PolygonZone polygonZone = new PolygonZone(points);
if(polygonZone.ObjInZone(someObject))
//Do action
}
 
Убрали горячие клавиши из плагина? очень неудобно стало :(
 
Убрали горячие клавиши из плагина? очень неудобно стало :(
Прошу прощения, за отсутствие, разгребал реал.
Текущий плагин писался с нуля, про горячие клавиши забыл. Скоро исправлю.
 
Thanks for update, great work, keep it up! :D
 
Has there been any progress towards adding an additional string field to the gps database?
 
Greetings. The background map has stopped showing for me, I've tried redownloading it several times, but the map doesn't display. Is this an issue with a recent update?

Thanks,
user
 
Yes, I see this problem. Background map load in another web resources. Maybe web resource very slow download map tiles.
 
Yes, I see this problem. Background map load in another web resources. Maybe web resource very slow download map tiles.

Maybe a timeout? I can have the map open in an area for over an hour with no map displayed.

Also, would it be possible to add a radius to the "player icon" in the map? I'd love to be able to add a "detection range" of about 100m.



thanks,
user


p.s. Very nice work with this application, it is very useful. I do get errors and the app crashes pretty regularly using the Object Send feature. It happends pretty regularly if I have multiple characters using it at the same time.
Here is a sample of the code I was using:
Code:
return core.getDoodads().Where(o => o.id == 7859);
 
Just an update, I'm still not getting the background image at all. Is there anything I might be able to try to fix this?

Thanks,
user
 
For some reason I have been IP banned by the provider of the map. When I changed my external IP address, the background map loaded. A few hours later I was unable to see the map, changing my IP address again fixed it. It appears that I'm getting IP banned by archebox for using the GPS Editor.
 
Прошу прощения, за отсутствие, разгребал реал.
Текущий плагин писался с нуля, про горячие клавиши забыл. Скоро исправлю.
И все, на этом застряли? обновы не будет? 2 месяца прошло....
 
Обнова уже готова, и у Out.Обнова касается поддержки кеша тайлов. Исправления глюков плагина.
 
Last edited:
Back
Top