Archived Comments (locked)
|
|
The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008) |
|
|
The Israeli Server got the new version! now I can use this one... Luca, At my server it doesn't sort by points by default... can u add an option to sort it? or should I again install the old version? |
|
|
NOTE: you'll have to uninstall AllySorter, Member Last On Line and Ally's Members Info or you'll have a complete mess! Hmm, ok. I had AllySorter running when I ran this script, so it only worked once for me :-S
Edit: Ahh, fixed it myself. Deinstalled the script with the option: Also uninstall associated preferences. Then reinstalled the script again. Works like charm now. |
|
|
Oh thanks! I hope the Israel server will update too so I could use this one! You can also remove the 'co', only the 'il' works... |
|
|
Yep! It's here: http://userscripts.org/scripts/versions/35189 |
|
|
Lol, so can u give to me again? Cuz I removed it... |
|
|
I'm not sure this one will work with 0.2.8... maybe is better to continue using the 0.8 version! |
|
|
Oh... In the Israeli version it is still 0.2.7 XD |
|
|
Because, in 0.2.8 members are already sorted.... or is it only in the italian version ? |
|
|
Why did u remove the AllySort? And thanks! Edit:
|
|
|
Thanks MindTwister! Fixed with the new version! |
|
|
Nice! I checked the Hebrew lang and found out the right domain... it is 'il' so the new is: il: {'newAlert': 'חברים חדשים', 'newTotal': 'סך הכל חברים חדשים', 'aband': 'עזבו', 'totAban': ,סך הכל עזבו', 'confirm': 'האם אתה בטוח שבירצונך לאפס את המונה?'} |
|
|
Ok! I made all the changes. I'm not sure about the "new entry" image.... it doesn't fit very well with the ikariam layout... sorry. |
|
|
Ok, I've found a problem with the Hebrew lang... I don't know what is the domain, it can be one of these: 'co' , 'co.il' , 'il' and when I'm trying to add one of them, the whole script doesn't work... |
|
|
Thanks. This weekend I'm going to publish the new version! |
|
|
Ok no problem! co: {'newAlert': 'חברים חדשים', 'newTotal': 'סך הכל חברים חדשים', 'aband': 'עזבו', 'totAban': ,סך הכל עזבו', 'confirm': 'האם אתה בטוח שבירצונך לאפס?'} I also changed the text 'New Entry' to an image...
|
|
|
@MindTwister: the anguage is chosen based on the domain of the server .it, .fr, .de etc. When a language is not present, the script will use the default en.
|
|
|
i installed this im on .pt and it wont work , can anyone help? all i get is the light bulbs with numbers 1 , 2 ,3 ,4 and so on |
|
|
Thanks, and can u try and add another lang? I want that others from Israel can also fully understand the script, I just edited the Italian lang, but I can't change the script that is here... |
|
|
Great! I'll put it right now! |
|
|
nvm, I found the problem.... it was with one of the other scripts! thanks for trying to help me! and the script is really faster! Check this out... I changed the words to status pics:
function setOnlineStatus($tRow)
{
if($tRow.cells[1].getAttribute('class') == 'online')
{
$tRow.cells[1].innerHTML="
|
|
|
If I get your point, you would like to see OFFLINE as strong as ONLINE. In this case, you also have to add the < b > element at line 212 (as it is on line 210). Let me know if it works! |
|
|
No sorry I'm not... I wrote the real one there... I just added it so others could use it also! but I'm trying to improve it also! and I removed the size, but the opacity didn't change... still faded... |
|
|
I had to lower the font size because data was enlarging tabel cells too much... If you want, you can change the source.
|
|
|
Thank u! finally! The log in time works! But I have a problem, I see the Red and Gray colors with a lower opacity... how come? |
";
$tRow.cells[1].style.backgroundImage = "none";
}
else if($tRow.cells[1].getAttribute('class') == 'offline')
{
var nowDateStr = document.getElementById('servertime').innerHTML.split(" ")[0].replace(/^\s+|\s+$/g, '');
var nowDate = convertIkariamDate( nowDateStr );
var inactiveDate = new Date();
inactiveDate.setDate( nowDate.getDate() - 7 ); // accounts generally go inactive after seven days
var lastOnline = $tRow.cells[1].title.split(":")[1].replace(/^\s+|\s+$/g, '');
var lastDate = convertIkariamDate( lastOnline );
if( lastDate < inactiveDate )
$tRow.cells[1].innerHTML = "<font>("+lastOnline + ")</font>
";
else
$tRow.cells[1].innerHTML = "<font>("+lastOnline+")</font>
";
$tRow.cells[1].style.backgroundImage = "none";
}
}