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

[Plugin] GildaStarryStars - Blue Salt Brotherhood daily quests

I get a bit dif error and i tried to fix but no idea how my error is
ERROR: opening portal -> UNKNOWN
maybe something got changed that makes this not work now you will need to ask out or maybe he will see this and let us know what is up with it? relavent code is

Code:
foreach (District dest in book.getDistricts())
			{
                            if (dest.name == portalName)
                            {
// it comes into here but it never finds the portal name and therefor can't open it and throws unknown error.
				Unmount();
                                Thread.Sleep(2000);
				if (book.OpenPortal(portalName))
                                {
                                    Log("Looking for portal");
                                    DateTime startPortalSearch = DateTime.UtcNow;
                                    while ((DateTime.UtcNow - startPortalSearch).TotalSeconds < 20)
                                    {
                                        foreach (var crea in getCreatures())
                                        {
                                            if (dist(crea) < 10 && crea.name == "Space Gate (Portal)" && crea.ownerUniqId == me.uniqId)
                                            {
                                                Log("Portal Info: " + crea.type + " " + crea.name + " ");
                                                UsePortal(crea);
                                                WaitTeleportCompleted(_MAX_TELEPORT_DELAY * 1000);
                                                Thread.Sleep(5000);
                                                break;
                                            }
                                        }
                                    }

                                    foundIt = true;
                                }
                                else
                                {
                                    Log("ERROR: opening portal -> " + GetLastError());
                                }
Any idea what got broke or changed out or anyone else?
 
I have found some trick to put the wind vase =
go to a point ant try to install the vase manually
now go to gps editor and serach the point VaseWind
edit it and delate the name
now add a new point and name it VaseWind and set a radius to 0,50
save and start bot again
now he install the vase

i hope it was helpfull for somebody
 
I get a bit dif error and i tried to fix but no idea how my error is
ERROR: opening portal -> UNKNOWN
maybe something got changed that makes this not work now you will need to ask out or maybe he will see this and let us know what is up with it? relavent code is

Code:
foreach (District dest in book.getDistricts())
			{
                            if (dest.name == portalName)
                            {
// it comes into here but it never finds the portal name and therefor can't open it and throws unknown error.
				Unmount();
                                Thread.Sleep(2000);
				if (book.OpenPortal(portalName))
                                {
                                    Log("Looking for portal");
                                    DateTime startPortalSearch = DateTime.UtcNow;
                                    while ((DateTime.UtcNow - startPortalSearch).TotalSeconds < 20)
                                    {
                                        foreach (var crea in getCreatures())
                                        {
                                            if (dist(crea) < 10 && crea.name == "Space Gate (Portal)" && crea.ownerUniqId == me.uniqId)
                                            {
                                                Log("Portal Info: " + crea.type + " " + crea.name + " ");
                                                UsePortal(crea);
                                                WaitTeleportCompleted(_MAX_TELEPORT_DELAY * 1000);
                                                Thread.Sleep(5000);
                                                break;
                                            }
                                        }
                                    }

                                    foundIt = true;
                                }
                                else
                                {
                                    Log("ERROR: opening portal -> " + GetLastError());
                                }
Any idea what got broke or changed out or anyone else?


If i open the Game in German all NPC, Monster, and Portal have [kein] ([no]) in front of the Name for exmp: NPC Lucius --> ( [kein] Lucius ) maybe is that the problem?
 
If i open the Game in German all NPC, Monster, and Portal have [kein] ([no]) in front of the Name for exmp: NPC Lucius --> ( [kein] Lucius ) maybe is that the problem?
Could be but i doubt it as i have the same problem here with it not finding the portal in the book.
 
error for me has now changed to
ERROR: opening portal -> ResponseTimeout
it opens the book though which as far as i know it didn't before all this got broke that is but it has since it stopped working
 
Back
Top