UAseco stürtzt ab

UASECO is a fork of the XAseco2/1.03 controller for Trackmania and has been overhauled to support the Modescript Gamemodes of Trackmania².

Moderators: undef.de, NADEO

Post Reply
User avatar
MfGLucker
Posts: 11
Joined: 14 Feb 2015, 11:02

UAseco stürtzt ab

Post by MfGLucker »

Hallo Undef,

ich habe ein Problem mit dem UAseco. Auf dem Server stellt sich das Problem dar, wenn man die Maps durchsucht, können nicht alle Seiten angezeigt werden. Über /admin add kann man Maps adden, diese werden aber als unknown map benannt.

In der Konsole sieht es so aus wenn man die Maps aufruft.

Ich hab das mal gekürzt, denn die Fehlermeldung hat 600k Zeichen.

Vielleicht hast du mal Zeit ein Auge drauf zu werfen.

Grüße

Lucker

Code: Select all

[UASECO Exception] Error returned: "" [0] at GbxRemote::query() for method "SendDisplayManialinkPageToLogin" with arguments:
array(4) {
  [0]=>
  string(8) "sakeyram"
  [1]=>
  string(18634) "<?xml version="1.0" encoding="utf-8" standalone="yes" ?><manialink id="DedimaniaRecordsWidget" name="DedimaniaRecordsWidget" version="3"><stylesheet><style class="labels" textsize="1" scale="1" textcolor="FFFFFFFF"/></stylesheet><frame pos="-161.35 64.875" z-index="0" id="Frame_DedimaniaRecordsWidget"><quad pos="0.25 -0.1875" z-index="0" size="38.9 39.375" action="PluginRecordsEyepiece?Action=showDedimaniaRecordsWindow" bgcolor="55556655" bgcolorfocus="55556688"/><quad pos="0 0" z-index="0.002" size="39.4 39.75" style="Bgs1InRace" substyle="BgEmpty"/><quad pos="1 -4.875" z-index="0.003" size="3.75 33.9375" bgcolor="00000000"/><quad pos="6 -4.875" z-index="0.003" size="9.125 33.9375" bgcolor="00000000"/><quad pos="15.125 -4.875" z-index="0.003" size="23.275 33.9375" bgcolor="00000000"/><quad pos="31.15 -31.55" z-index="0.05" size="8.75 8.75" image="http://maniacdn.net/undef.de/uaseco/records-eyepiece/edge-open-rd-dark.png"/><quad pos="1 -0.675" z-index="0.003" size="37.4 3.75" bgcolor="0099FFDD"/><quad pos="36.6 -2.53125" z-index="0.004" size="3.75 3.75" halign="center" valign="center2" style="BgRaceScore2" substyle="LadderRank"/><label pos="33.8 -1.3125" z-index="0.004" size="32 2.6" class="labels" halign="right" text="Dedimania Records"/><quad pos="1 -5.0625" z-index="0.004" size="37.4 10.125" bgcolor="55557799"/><quad pos="1 -5.0625" z-index="0.005" size="37.4 3.375" bgcolor="66880077"/><quad pos="-3.675 -5.0625" z-index="0.005" size="3.375 3.375" bgcolor="66880077"/><quad pos="39.6 -5.0625" z-index="0.004" size="3.375 3.375" bgcolor="66880077"/><quad pos="-3.475 -5.25" z-index="0.006" size="3 3" style="Icons64x64_1" substyle="ShowRight2"/><quad pos="39.8 -5.25" z-index="0.006" size="3 3" style="Icons64x64_1" substyle="ShowLeft2"/><label pos="5.75 -5.625" z-index="0.007" size="4.25 3.1875" halign="right" class="labels" scale="0.9" text="--."/><label pos="15 -5.625" z-index="0.007" size="9.75 3.1875" halign="right" class="labels" scale="0.9" textcolor="33FF55FF" text="-:--.---"/><label pos="15.5 -5.625" z-index="0.007" size="24.40 3.1875" class="labels" scale="0.9" text="$FFF¬$666мѡ$FFF» Cнoco$396ll$FFFєו$F63ै$FFFפнז «$666esl$>$FFF"/><script><!--
 /*
 * ==================================
 * Function:	<dedimania_records> @ plugin.records_eyepiece.php
 * Author:	undef.de
 * Website:	http://www.undef.name
 * License:	GPLv3
 * ==================================
 */
Void MoveIt (CMlFrame _Container, Boolean _ScrollOut, Vec2 _Position) {
	if (_ScrollOut == True) {
		if (_Container.RelativePosition_V3.X >= 0) {
			while (_Container.RelativePosition_V3.X < 200) {
				_Container.RelativePosition_V3.X += 4.0;
				yield;
			}
		}
		else if (_Container.RelativePosition_V3.X < 0) {
			while (_Container.RelativePosition_V3.X > -240) {
				_Container.RelativePosition_V3.X -= 4.0;
				yield;
			}
		}
	}
	else {
		_Container.RelativePosition_V3 = _Position;
	}
}
main () {
//	declare persistent Boolean RecordsEyepieceDedimaniaRecordsVisible = True;
	declare Boolean RecordsEyepieceDedimaniaRecordsVisible = True;

	declare CMlFrame DedimaniaRecordsWidget	<=> (Page.GetFirstChild("Frame_DedimaniaRecordsWidget") as CMlFrame);
	declare Vec2 OriginalRelativePosition	= DedimaniaRecordsWidget.RelativePosition_V3;

	DedimaniaRecordsWidget.RelativeScale	= 1.0;
	DedimaniaRecordsWidget.Visible		= RecordsEyepieceDedimaniaRecordsVisible;
	while (True) {
		yield;
		if (!PageIsVisible || InputPlayer == Null) {
			continue;
		}

		// Check for pressed F9 to hide the Widget
		foreach (Event in PendingEvents) {
			switch (Event.Type) {
				case CMlEvent::Type::KeyPress : {
					if (Event.KeyName == "F9") {
						if (DedimaniaRecordsWidget.Visible == False) {
							MoveIt(DedimaniaRecordsWidget, False, OriginalRelativePosition);
							RecordsEyepieceDedimaniaRecordsVisible = True;
						}
						else {
							MoveIt(DedimaniaRecordsWidget, True, OriginalRelativePosition);
							RecordsEyepieceDedimaniaRecordsVisible = False;
						}
						DedimaniaRecordsWidget.Visible = RecordsEyepieceDedimaniaRecordsVisible;
						TriggerPageAction("PluginRecordsEyepiece?Action=switchDedimaniaRecordsWidget&Visible="^ DedimaniaRecordsWidget.Visible);
					}
				}
			}
		}
	}
}
User avatar
undef.de
Posts: 2095
Joined: 06 Apr 2011, 21:57
Location: Germany, North Sea Coast
Contact:

Re: UAseco stürtzt ab

Post by undef.de »

Also im Logfile kann ich jetzt kein "Absturz" sehen. Das Problem im Logfile wurde bereits in der 0.9.6 gefixt.
Developer of UASECO, a controller with support of the Modescript Gamemodes for TM².
Visit the official website for more: UASECO.org


Developer of various plugins for XAseco/XAseco2 and MPAseco, visit my lab: www.undef.name

You like what I do? Then award a ManiaStar.
User avatar
MfGLucker
Posts: 11
Joined: 14 Feb 2015, 11:02

Re: UAseco stürtzt ab

Post by MfGLucker »

Moin moin,

hier der Link zum ganzen Log.

Grüße Lucker

http://server.mfg-esports.com/logfilerpg.txt
User avatar
MfGLucker
Posts: 11
Joined: 14 Feb 2015, 11:02

Re: UAseco stürtzt ab

Post by MfGLucker »

Hab jetzt die 0.9.6 laufen, Sieht gut aus, Scheint alles zu funktionieren.
User avatar
TMarc
Posts: 15441
Joined: 05 Apr 2011, 19:10
Location: Europe
Contact:

Re: UAseco stürtzt ab

Post by TMarc »

Prima :thumbsup:

In Zukunft bitte hier in englischer Sprache schreiben, da es sich um ein internationales Forum handelt, und andere (Nicht-Deutsche) von den Antworten profitieren können - solange kein Universaltranslator ausreichend funktioniert - danke :)
Post Reply

Return to “UASECO”

Who is online

Users browsing this forum: No registered users and 3 guests