[XASECO] Plugin: Records-Eyepiece 1.1.1 (UPDATE)
Re: [XASECO] Plugin: Records-Eyepiece 1.0.9.9 (UPDATE)
PHP 5.3.3
ok,i will try to change "mb_strtolower" into "strtolower" and see if works.
thank you
ok,i will try to change "mb_strtolower" into "strtolower" and see if works.
thank you
- undef.de
- Pit Crew
- Posts: 1360
- Joined: 31 Aug 2009 18:38
- Owned TM-games: TMF, TM2C/S/V, SM
- Manialink(s): undef, tmkarma
- Location: Germany
- Contact:
Re: [XASECO] Plugin: Records-Eyepiece 1.1.0 (UPDATE)
Just wanna say: There is an update out there... see the related Site at my Lab.
Developer of various plugins for XAseco/XAseco2 and MPAseco,
like Records-Eyepiece, TM-Karma, Alternate Scoretable...
Visit my Lab: www.undef.name
Get it now:
» TM2 Valley
» TM2 Canyon
» TM2 Stadium
» SM Storm
like Records-Eyepiece, TM-Karma, Alternate Scoretable...
Visit my Lab: www.undef.name
Get it now:
» TM2 Valley
» TM2 Canyon
» TM2 Stadium
» SM Storm
-
- smooth traffic navigator
- Posts: 236
- Joined: 08 May 2008 09:25
- Owned TM-games: All but original
- Location: The Netherlands
Re: [XASECO] Plugin: Records-Eyepiece 1.1.0 (UPDATE)
Hi Udef,
Can u explain what this actually does?
Case example is on a tracklist of 1173 tracks
Player ID 5562 has 1218 'most records' (how is that possible?)
after the restart and that update this player has 1172 'most records' (seems more legit
)
I am curious how this works.
With regards,
Weerwolf
Can u explain what this actually does?
Code: Select all
[05/03,17:25:55] >> Updating `mostfinished` counts for all Players...
[05/03,17:25:55] >> Updating `mostrecords` counts for all Players...
Player ID 5562 has 1218 'most records' (how is that possible?)
after the restart and that update this player has 1172 'most records' (seems more legit

I am curious how this works.
With regards,
Weerwolf
- undef.de
- Pit Crew
- Posts: 1360
- Joined: 31 Aug 2009 18:38
- Owned TM-games: TMF, TM2C/S/V, SM
- Manialink(s): undef, tmkarma
- Location: Germany
- Contact:
Re: [XASECO] Plugin: Records-Eyepiece 1.1.0 (UPDATE)
MostFinishedweerwolf1 wrote:Can u explain what this actually does?Case example is on a tracklist of 1173 tracksCode: Select all
[05/03,17:25:55] >> Updating `mostfinished` counts for all Players... [05/03,17:25:55] >> Updating `mostrecords` counts for all Players...
Player ID 5562 has 1218 'most records' (how is that possible?)
after the restart and that update this player has 1172 'most records' (seems more legit)
Reads from the database table `rs_times` how often a player has finished the maps. In this table are all finishes are stored, so 1218 may be valid.
Depending on your configuration, this table is cleaned up on start.
MostRecords
Reads from the database table `records` how often a player has made a record. In this table only one time per map is stored.
Developer of various plugins for XAseco/XAseco2 and MPAseco,
like Records-Eyepiece, TM-Karma, Alternate Scoretable...
Visit my Lab: www.undef.name
Get it now:
» TM2 Valley
» TM2 Canyon
» TM2 Stadium
» SM Storm
like Records-Eyepiece, TM-Karma, Alternate Scoretable...
Visit my Lab: www.undef.name
Get it now:
» TM2 Valley
» TM2 Canyon
» TM2 Stadium
» SM Storm
-
- smooth traffic navigator
- Posts: 236
- Joined: 08 May 2008 09:25
- Owned TM-games: All but original
- Location: The Netherlands
Re: [XASECO] Plugin: Records-Eyepiece 1.1.0 (UPDATE)
Hi Undef,
Very much thanks for this very quick response!
Sorry for the inconvenience if im 'not getting it'
Very much thanks for this very quick response!
Actually this number is like in the 36000+, and did not change afterundef.de wrote: MostFinished
Reads from the database table `rs_times` how often a player has finished the maps. In this table are all finishes are stored, so 1218 may be valid.
Depending on your configuration, this table is cleaned up on start.
Here the number changed from 1218 to 1172.undef.de wrote: MostRecords
Reads from the database table `records` how often a player has made a record. In this table only one time per map is stored.
Sorry for the inconvenience if im 'not getting it'

Re: [XASECO] Plugin: Records-Eyepiece 1.1.0 (UPDATE)
Hi Undef,
Can I disable and enable again the dedimania, local and live ranking widget dynamically from another plugin?
I've tried for dedimania for example:
But this does not seem to work.
Best regards,
Coolthing
Can I disable and enable again the dedimania, local and live ranking widget dynamically from another plugin?
I've tried for dedimania for example:
Code: Select all
global $re_config;
$re_config['DEDIMANIA_RECORDS'][0]['GAMEMODE'][0]['TIME_ATTACK'][0]['ENABLED'][0] = false;
Best regards,
Coolthing
- undef.de
- Pit Crew
- Posts: 1360
- Joined: 31 Aug 2009 18:38
- Owned TM-games: TMF, TM2C/S/V, SM
- Manialink(s): undef, tmkarma
- Location: Germany
- Contact:
Re: [XASECO] Plugin: Records-Eyepiece 1.1.0 (UPDATE)
You have to change the states too in:
And you (probably) have to wait for the timeout of <refresh_interval>.
Code: Select all
$re_config['States']['DedimaniaRecords']['NeedUpdate']
$re_config['States']['DedimaniaRecords']['UpdateDisplay']
$re_config['States']['LocalRecords']['NeedUpdate']
$re_config['States']['LocalRecords']['UpdateDisplay']
$re_config['States']['LiveRankings']['NeedUpdate']
$re_config['States']['LiveRankings']['UpdateDisplay']
Developer of various plugins for XAseco/XAseco2 and MPAseco,
like Records-Eyepiece, TM-Karma, Alternate Scoretable...
Visit my Lab: www.undef.name
Get it now:
» TM2 Valley
» TM2 Canyon
» TM2 Stadium
» SM Storm
like Records-Eyepiece, TM-Karma, Alternate Scoretable...
Visit my Lab: www.undef.name
Get it now:
» TM2 Valley
» TM2 Canyon
» TM2 Stadium
» SM Storm
Re: [XASECO] Plugin: Records-Eyepiece 1.1.0 (UPDATE)
Thanks for the quick response. I will try that out 
Edit: Still does not work. I set those states to true together with setting the enabled flags to false inside a chat command. But the widgets do not disappear. Even when I first call re_closeRaceDisplays('my_login') first the widgets appear again after a few seconds. Am I overlooking anything?

Edit: Still does not work. I set those states to true together with setting the enabled flags to false inside a chat command. But the widgets do not disappear. Even when I first call re_closeRaceDisplays('my_login') first the widgets appear again after a few seconds. Am I overlooking anything?
- undef.de
- Pit Crew
- Posts: 1360
- Joined: 31 Aug 2009 18:38
- Owned TM-games: TMF, TM2C/S/V, SM
- Manialink(s): undef, tmkarma
- Location: Germany
- Contact:
Re: [XASECO] Plugin: Records-Eyepiece 1.1.0 (UPDATE)
Yes, you have to use
Gameinfo::TA instead of TIME_ATTACK
Btw.: What do you want to do?
Code: Select all
$re_config['DEDIMANIA_RECORDS'][0]['GAMEMODE'][0][Gameinfo::TA][0]['ENABLED'][0]
$re_config['LOCAL_RECORDS'][0]['GAMEMODE'][0][Gameinfo::TA][0]['ENABLED'][0]
$re_config['LIVE_RANKINGS'][0]['GAMEMODE'][0][Gameinfo::TA][0]['ENABLED'][0]
Btw.: What do you want to do?
Developer of various plugins for XAseco/XAseco2 and MPAseco,
like Records-Eyepiece, TM-Karma, Alternate Scoretable...
Visit my Lab: www.undef.name
Get it now:
» TM2 Valley
» TM2 Canyon
» TM2 Stadium
» SM Storm
like Records-Eyepiece, TM-Karma, Alternate Scoretable...
Visit my Lab: www.undef.name
Get it now:
» TM2 Valley
» TM2 Canyon
» TM2 Stadium
» SM Storm
Re: [XASECO] Plugin: Records-Eyepiece 1.1.0 (UPDATE)
Ah nice, that does work. Thank you very much 
I'm currently developing a game which you can start on the server on vote request. Once it starts I need to disable the dedimania, local and live ranking widget dynamically (and enable them again when the game is over), because I need the space for the game widgets and Xaseco does not get restarted

I'm currently developing a game which you can start on the server on vote request. Once it starts I need to disable the dedimania, local and live ranking widget dynamically (and enable them again when the game is over), because I need the space for the game widgets and Xaseco does not get restarted

- undef.de
- Pit Crew
- Posts: 1360
- Joined: 31 Aug 2009 18:38
- Owned TM-games: TMF, TM2C/S/V, SM
- Manialink(s): undef, tmkarma
- Location: Germany
- Contact:
Re: [XASECO] Plugin: Records-Eyepiece 1.1.0 (UPDATE)
Just wanna say: There is an update out there... see the related Site at my Lab.
Developer of various plugins for XAseco/XAseco2 and MPAseco,
like Records-Eyepiece, TM-Karma, Alternate Scoretable...
Visit my Lab: www.undef.name
Get it now:
» TM2 Valley
» TM2 Canyon
» TM2 Stadium
» SM Storm
like Records-Eyepiece, TM-Karma, Alternate Scoretable...
Visit my Lab: www.undef.name
Get it now:
» TM2 Valley
» TM2 Canyon
» TM2 Stadium
» SM Storm
-
- smooth traffic navigator
- Posts: 234
- Joined: 16 Oct 2010 19:45
- Owned TM-games: TMN! TMF
- Location: Germany
Re: [XASECO] Plugin: Records-Eyepiece 1.1.1 (UPDATE)
Hi undef,
would it be possible to get a little update for PHP7.2?
Would be realy nice from you
Thank you
would it be possible to get a little update for PHP7.2?
Code: Select all
[PHP Warning] A non-numeric value encountered on line 11276 in file /[...]/plugins/plugin.records_eyepiece.php
[PHP Warning] A non-numeric value encountered on line 11284 in file /[...]/plugins/plugin.records_eyepiece.php
[PHP Warning] A non-numeric value encountered on line 11102 in file /[...]/plugins/plugin.records_eyepiece.php

Thank you
- undef.de
- Pit Crew
- Posts: 1360
- Joined: 31 Aug 2009 18:38
- Owned TM-games: TMF, TM2C/S/V, SM
- Manialink(s): undef, tmkarma
- Location: Germany
- Contact:
Re: [XASECO] Plugin: Records-Eyepiece 1.1.1 (UPDATE)
Thanks for the report, added to the to do list... but I think that fix will never released, because of freezed development for XAseco1. Anyway, never say never. =)
Developer of various plugins for XAseco/XAseco2 and MPAseco,
like Records-Eyepiece, TM-Karma, Alternate Scoretable...
Visit my Lab: www.undef.name
Get it now:
» TM2 Valley
» TM2 Canyon
» TM2 Stadium
» SM Storm
like Records-Eyepiece, TM-Karma, Alternate Scoretable...
Visit my Lab: www.undef.name
Get it now:
» TM2 Valley
» TM2 Canyon
» TM2 Stadium
» SM Storm
-
- highway camper
- Posts: 3
- Joined: 10 Dec 2015 21:11
- Owned TM-games: tmuf, + all tm2
Re: [XASECO] Plugin: Records-Eyepiece 1.1.1 (UPDATE)
hi!
i got this error message:
[XASECO Warning] [plugin.records_eyepiece.php] Error at GetChallengeList(): [-32700] parse error. not well formed
and the track count 0 in the widget
cant list notfinished, nogold, etc tracks and /elist not working.
but i can use /list command to see the maps
whats wrong?
i got this error message:
[XASECO Warning] [plugin.records_eyepiece.php] Error at GetChallengeList(): [-32700] parse error. not well formed
and the track count 0 in the widget
cant list notfinished, nogold, etc tracks and /elist not working.
but i can use /list command to see the maps
whats wrong?
- undef.de
- Pit Crew
- Posts: 1360
- Joined: 31 Aug 2009 18:38
- Owned TM-games: TMF, TM2C/S/V, SM
- Manialink(s): undef, tmkarma
- Location: Germany
- Contact:
Re: [XASECO] Plugin: Records-Eyepiece 1.1.1 (UPDATE)
It seems one of the maps is making trouble, did you add some shortly? If so, please remove that and post that TMX-Id and its name here.
Developer of various plugins for XAseco/XAseco2 and MPAseco,
like Records-Eyepiece, TM-Karma, Alternate Scoretable...
Visit my Lab: www.undef.name
Get it now:
» TM2 Valley
» TM2 Canyon
» TM2 Stadium
» SM Storm
like Records-Eyepiece, TM-Karma, Alternate Scoretable...
Visit my Lab: www.undef.name
Get it now:
» TM2 Valley
» TM2 Canyon
» TM2 Stadium
» SM Storm