Runescape Sorry There Was an Error Processing Your Request Please Try Again
Feedback abuselog [edit | edit source]
Why was it hidden from public over again? How would willing editors know what to improve on the page, if the feedback for said page is offlimits? --Jlun2 (talk) 02:16, September 27, 2014 (UTC)
RSHiscores Update [edit | edit source]
Hullo, I am TehKittyCat, or well Catcrewser until the renaming finishes and the account is unlocked then I can answer to this to confirm it is indeed me (although an IP lookup would confirm). I'm in the process of condign active again and noticed RSHiscores is working again, which ways Wikia finally fixed their firewall (the debug lawmaking was temporary to confirm information technology was on Wikia'due south side and not a block past Jagex). Every bit such, I would like to remove that debug code, cleanup RSHiscores (I went blind when I saw my coding style on information technology yesterday) and fix its design shortcomings that exist in the age of Lua and (in-hindsight) for the JS calculators information technology was primarily designed for. I saw in Forum:Scraping hiscore data for calculators that you lot were most familiar with the lawmaking, so I idea I would it exist best to collaborate with you lot. I agree with adding a data parameter, in-fact that's what I should have made the extension output by default, only I was focused on reducing processing time for template usage past doing everything in-code rather than with parser functions, that I neglected that JS could just do a unmarried call for the raw data and parse everything itself. Do you think the parsing on the extension-side is even so beneficial in this Lua/JS age? Given its purpose for all-things hiscores I am considering calculation support for the 2007scape hiscores and the new JSON-based apis also, merely haven't decided on the interface. In context of that thread, I would like to confirm the limit is two users (for comparisons), non two calls, since I was concerned of the possibility of abuse and before I wrote the extension attempts to use YQL(meet the existing calc.js) and other sites like anyorigin were fabricated, simply they were unreliable and subject area to limiting. Ultimately the all-time solution is for Jagex to add CORS headers to their APIs, for which the Origin header would prevent the abuse of. At the fourth dimension, support for that wasn't widespread so didn't pursue suggesting that (although I did propose the GE APIs that at present be). Do we still have contacts to suggest this, such as the fansite email? In the meantime I'll fix RSHiscores. Btw, the lawmaking is now at [1] and I've added the full history, including Wikia'due south changes, please feel free to submit any changes there. -- 71.31.104.lxx 17:50, September 30, 2014 (UTC)
- How-do-you-do :) I saw your userpage update the other day and have been meaning to enquire you about it, only sadly haven't found the time to sit down down and work out what nosotros need. I have to say I was pleasantly surprised to observe it even so worked, I was expecting it to only work with the API as you'd terminal seen it which didn't reflect new skills/minigames being released. If you're looking to redo some of it, information technology might exist worth taking a look at the current standard of parser functions set out past mediawiki. I'm not sure if they've inverse all that much merely they've made a number of big calibration changes since RSHiscores was originally written, so information technology'due south probably worth checking just in case.
- With regards to lua, information technology's not possible to convert the extension to pure lua at the moment, due to mediawiki'south stripped downwards version of lua non having whatever way to make http requests. I think LuaSocket adds this functionality, only I haven't got around to exploring how probable it is for us to get that. In the mean time, an extension is probably the best way to go about getting the data. Every bit for the parsing, lua could do the chore but I don't think in that location'southward much deviation most where information technology happens every bit long as we can update it when we need. Unfortunately, code updates made by tertiary parties to the wikia codebase can accept weeks, or even months, to exist merged so perhaps we should factor that in when because any updates or relocation of parsing.
- As for the fansite contacts, I'm not sure what's going on with that at the moment. There were a few incidents recently, last I heard we're waiting on a respond to an email discussing a number of issues. However, every bit this is more technical I don't meet why information technology would disharmonize with that discussion and it's certainly worth a endeavor. cqm 00:07, 1 Oct 2014 (UTC) (UTC)
-
- Thanks for replying hither, I don't know where best to reply is either, it has been two days for far. Yeah, I specifically fabricated certain to relatively future-proof the extension after Jagex inverse the API to add minigames and knowing Wikia'due south dull updates I left the skill naming to templates. I didn't mean convert the extension to Lua, but I can add extensions to the Lua side or at least make it native (otherwise the returned numbers are Lua strings), for example ParserFunctions does this, though for at present something similar frame:callParserFunction( '#hs', { 'TehKitty-True cat', 0 }) should piece of work. I know the slow update routine, information technology took ii months to get the extension added the kickoff time and about a month for every update to information technology. I'll try an email. Just allow me know any suggestions y'all take, I'll try to add a plan to wiki folio or perhaps runway information technology on Github. If IRC would be a ameliorate place to talk over this, just let me know. -- 71.31.104.70 00:59, October 1, 2014 (UTC)
-
-
- Hither is my draft email for proposing adding CORS headers to the Hiscores API, I'chiliad going to call back it over a bit more before sending, and so feel free to suggest whatever changes earlier I transport information technology. -- 71.31.104.70 03:12, October 1, 2014 (UTC)
-
-
-
-
- I'd suggest expanding the CORS headers scope to the GED API likewise as the hiscores api and whatsoever other jagex might have such as the bestiary. I'thousand not sure if the GED API actually returns awarding/json as the content type either (YQL, Anyorigin and Whateverorigin all return something slightly different) and then maybe we could get them to cheque that at the same time?
- I am curious why you added both a parser function and a magic give-and-take in the extension. Bold the parser function returns either the parsed data or the entire data cord (in a sort of .csv format), adding a magic word would prevent the template from working removing the local level of control. Or have I misunderstood something? Incidentally,
{{hs}}isn't a magic word, so I got a bit dislocated when I was looking at information technology cqm ten:03, i Oct 2014 (UTC) (UTC)
-
-
-
-
-
-
- Okay, I'll expand the scope of the request, I meant to, merely I overly focused on the hiscores API. Incidentally, information technology doesn't matter the content type, all cantankerous-origin requests through XMLHttpRequest are blocked by default. It turns out the restriction can be disabled for testing using '--disable-web-security' in Chrome. Unfortunately, with my business relationship locked (I decided 3 days was long enough before requesting a status update, then I only sent Wikia an e-mail) I can't double check at the moment what I'g maxim is true in practice. I'll get a calculator working with that disabled before sending the electronic mail though. Yep, when I reviewed my lawmaking I was thrown off past the magic word as well, just removing information technology causes an exception, it turns out there are two types of magic words -- variables and parser functions. That said, the machinery has been deprecated since I wrote RSHiscores, unfortunately that is what allowed me to use a single file, then since I accept to add together a i18n file for the magic word anyways, I'll brand my extension laid out properly as required for use on Wikimedia wikis. The magic word is actually '#hs', because unless it'southward added with the 'SFH_NO_HASH' flag, the parser office magic word gets a '#' prefix. -- 75.88.125.5 19:33, October ane, 2014 (UTC)
-
-
-
-
-
-
-
-
- Here is an updated draft email, I think it better handles the bug and resolves concern nigh the other APIs. -- 75.88.125.5 20:04, October 1, 2014 (UTC)
-
-
-
-
-
-
-
-
-
-
- That looks skillful :) Let me know what they say, or if the practise at all cqm 18:36, 4 Oct 2014 (UTC) (UTC)
-
-
-
-
-
-
-
-
-
-
-
-
- Every bit of a week ago, it was passed to the web team. I haven't heard anything since, hopefully because of RuneFest. I'll get back to updating RSHiscores and adding commented-out JS back up for if/when Jagex implements the CORS changes. - TehKittyCat Talk Wikian-Book 14:49, October xiv, 2014 (UTC)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Yep, Wikia never replied dorsum after determining the trouble was the rename job stalled, so I decided plenty was enough and moved the pages myself. I merged the pull request, the repository is already much better than the wiki page. That'southward fine, eventually I planned to do that anyhow as role of code style, though currently I'one thousand trying to get a local instance of Wikia running for ameliorate testing. I managed it 3 years ago, hopefully Wikia hasn't broken things too much more. - TehKittyCat Talk Wikian-Book 17:46, October 14, 2014 (UTC)
-
-
-
-
-
-
-
Resetting indentation level. Sorry for not responding here sooner, merely I saw your replies and piece of work on GitHub, then ended up carried away coding. Please check the latest code for the results of that. I'grand not done, but I think the lawmaking is in much better shape, particularly subsequently your restructuring and cleaning, forth with my initial conversion to OO-style. To-do is yet support for raw data, double-checking Lua handling, support for other hiscores, and general reusability (aka splitting render). I don't like how I had to initialise ringlet, simply unfortunately PHP lacks static constructors. I've seen MediaWiki'southward vagrant, simply oasis't gotten around to setting it up however, however, I am using MediaWiki with total debugging enabled. I hit a dead-end on the Wikia setup and didn't experience like digging through backups to find how I stock-still the code and setup the tables years agone, and then I'll just copy over as needed for testing. - TehKittyCat Talk Wikian-Book 17:23, Oct 17, 2014 (UTC)
- Adding OS hiscores support at this bespeak is simple, only before I exercise anymore changes I need to really plan out the interface and test the calculators locally, especially since I only remembered why the original API did what information technology did, merely proving the reasons right or wrong will require some testing. Looking at the existing calculator JavaScript, I am really rethinking how the calculators work for reflow and caching purposes, but that shouldn't cause any changes to my work hither. The other APIs will require a different interface, if supporting existing parser role usage is wanted, I could default to the old interface when the beginning parameter is an int, though the only usage I know of are the hiscores on my user page. I'grand also a bit leery of using the PHP JSON support because of memory leaks and security issues years back, and then I'thou going to brand sure that is all fixed first. - TehKittyCat Talk Wikian-Book 01:08, October 18, 2014 (UTC)
Past the fashion, checkout User:TehKittyCat/Litterbox/3. It turns out what I but remembered served well, all that is needed is mostly cleanup to get good working hiscores calculators. It seems some have been poorly copy+pasted, which works fine when hiscores aren't looked upward, but in the case of the fletching calculator it looked-up firemaking's experience in one case I added the name field. That said, I'thou sure the RSHiscores changes could however be helpful and I'll add falsed-out code for if Jagex ever adds the CORS headers. - TehKittyCat Talk Wikian-Book 03:39, October 21, 2014 (UTC)
I added support for old-schoolhouse to RSHiscores, then somewhen 2007scape can have calculators. In doing so, I went ahead and broke existing usage, and then it won't be a problem to support other APIs. Ironman adds different hiscores, but the only divergence is rank, so I didn't bother. I didn't add other APIs since in IRC no i saw much use for them. Let me know if it all looks good, if and then I'll transport information technology to Wikia. I have really familarised myself with the JS Calc code and its existing usage, so I'yard converting it to Lua, making the hiscores changes, templating it, and working on fixing some deficiencies in the procedure. - TehKittyCat Talk Wikian-Volume 00:34, November 10, 2014 (UTC)
- Expert bespeak and done. I noticed yesterday Scribunto has a category for pages with errors and thought it was peachy then. The category I added is used for the specific onetime-usage example, simply I named it generically then we can add other errors to information technology as needed. Likewise bad Wikia'south tag report doesn't report parser functions anymore. - TehKittyCat Talk Wikian-Book 02:03, November 10, 2014 (UTC)
Provided everything looks good to you, then go for information technology. I meant to send the update sooner, but life got in the fashion. - TehKittyCat Talk Wikian-Volume 03:16, November 30, 2014 (UTC)
- I just added your change to the GitHub repository, hopefully information technology'south the right ready. At some indicate, equally an do in learning unit testing, I might add some unit tests to verify the error cases and handling of unexpected input, but that is for another twenty-four hours. - TehKittyCat Talk Wikian-Book 04:43, January twenty, 2015 (UTC)
wait when did you archive um um THIRD [edit | edit source]
what is [[Figurer:Mainpage-new|this]]? practice you still need it? Matt (t) 23:40, September 30, 2014 (UTC)
asafsadwecfawxfasdfz [edit | edit source]
Special:AbuseLog/66443 MolMan twenty:57, October 1, 2014 (UTC)
Theme [edit | edit source]
Is it possible to adjust the highlighting/choice colour, or is that chosen by the browser? Because it is currently showing like this for me, which barely stands out compared to the default/original. IP83.101.44.209 (talk) 05:22, Oct 4, 2014 (UTC)
- Estimate I'll go and blame FireFox then. The selection works fine on your talk page text, btw; not elsewhere. Now to effigy out how to add that CSS override. Thanks, IP83.101.44.209 (talk) 09:25, Oct four, 2014 (UTC)
- On another annotation, I believe the CSS class "messagebox" still needs to have its colours changed to the new theme; as seen on Template:FromGame. IP83.101.44.209 (talk) 11:52, Oct four, 2014 (UTC)
Mol told me to tell you virtually RuneScape:Active discussions still looking like the old theme
Oil4 Talk 17:27, Oct 4, 2014 (UTC)
Sortable Tables [edit | edit source]
Hullo Cqm, I'm having problems with sortable tables on certain pages that I edited and was wondering if y'all could help fix them and let me know what was causing this trouble. I previously asked both IP83.101.44.209 and User:The Mol Homo only sadly they doesn't know the answer to this and redirected me to you lot.
The issue seem to be that they do not follow alphabetical/numerical orders when sorted ascending/descending. I looked upwardly various guides on the Net, and constitute out that they are sorted in ASCII order, in which it unremarkably is fine but sometimes get mixed up with large number values. Thus, I added the attribute "information-sort-blazon" on the column row headers depending on what order it needs to exist sorted past. However, the problem nevertheless persists in which certain columns do not follow alphabetical order, and sometimes even the numbers too even afterward I clearly used the "data-sort-type="text"" and "data-sort-type="number"" respectively. So why is it that it is still not sorting in numerical/alphabetical order?
A clear case is the Solomon'southward General Shop/Animations folio I have been editing for the past few days. I used grade="sortable" only certain numerical (and alphabetical) orders are messed up. Oddly enough, ascending/descending the sortable "Runecoins" column is fine, just when it came to sorting the "Loyalty points" cavalcade that has both number values and the template {{Northward/a}}, the guild was a mess with both ascending and descending! The aforementioned goes for the "Restriction" column which was suppose to follow alphabetical society for easier blazon sorting, but unfortunately the sorting itself is chaos.
I would actually appreciate it if you could expect into this trouble, and inform me about anything that must/mustn't be done in my future sortable table edits to prevent this from happening again. Thanks, J u s t
゠ャ ン デ ã‚£ ー ズ ã‚„ 犬 ? c u t e
- Information technology is fine with me thank you, take your time. Though exercise you think that this might really be a bug? Because if information technology is, I'm quite surprised that this is overlooked.
- Hither is a list of the pages that has sortable tables that are also disarranged when sorted (note that these are probably just few of the pages that I am aware of considering I edited them in the by). Some of these pages already contain the aspect "data-sort-type" on selected columns considering I experimented them myself. Tables of pages:
- Solomon's General Shop/Equipment - Runecoins cavalcade is correctly sorted for both ascending and descending. Loyalty points column is sorted in contrary (ascending is descending and vice versa) with the {{N/a}} template carrying a large value to be at the top when sorted descending.
- Solomon'south General Store/Accessories - Runecoins cavalcade is correctly sorted for both ascending and descending. Once over again, Loyalty points column is in disorder when certain {{N/a}} templates fit themselves before and later selected values, and even the descending/ascending values aren't accurately sorted (bigger value after smaller/smaller after bigger value with numerous odd {{N/a}} template interruptions). Slot cavalcade follows a differently odd order when sorted in both ascending/descending instead of being sorted alphabetical order.
- Solomon's General Store/Combat Gear - Runecoins column is correctly sorted for both ascending and descending. Loyalty points cavalcade experiences the aforementioned problem in sorting with the previously explained Solomon's Full general Store/Accessories page table with values beingness messed up in order with odd {{N/a}} template interruptions. Overriden Weapon Type column follows a differently odd order when sorted in both ascending/descending instead of being sorted alphabetical social club.
- Solomon's General Store/Titles - Runecoins and Loyalty points column is correctly sorted for both ascending and descending. Affixment cavalcade follows a differently odd order when sorted in both ascending/descending instead of being sorted alphabetical order, even with but two distinguishable values.
- Solomon's General Shop/Services - Runecoins column is correctly sorted for both ascending and descending. Loyalty points cavalcade is correctly sorted in ascending/descending values (assuming that due to the lack of number values), with the persisting problem of the odd {{N/a}} template interruptions.
- Solomon'south Full general Store/Animations - Every bit y'all've seen this page yourself, Runecoins column is correctly sorted for both ascending and descending. Loyalty points column once over again experiences the same problem in sorting with the previously explained Solomon's General Shop/Combat Gear (and Solomon'southward General Store/Accessories) page table with values being messed up in order with odd {{N/a}} template interruptions. Restrictions column (all tables except Domicile teleports table) follows a differently odd order when sorted in both ascending/descending instead of being sorted alphabetical guild.
- In conclusion, yous will discover the similarity of having the first few (unremarkably simply the first one) columns being sorted correctly in numerical club (due to having the price coming first before further informations). Consequent problems with these page tables when sorting include the tendency of not following numerical lodge, followed by the odd interruptions {{North/a}} template, and likewise the tendency of not following alphabetical order. Attribute "data-sort-blazon" are only added on selected columns due to experimentation and in general, they seem to bring almost no benefit when sorting (merely the few columns which are sorted in numerical values commonly do good from this).
- This page has sortable tables, just seem to work fine every bit it is, even without any attributes to sort them. Strangely, all values from the following tables are sorted in social club simply tables of the Solomon'southward General Store/Titles (explained before) which are not far off in differences of the table information, seem to feel this issue. Tables include:
- Titles#Runecoins or Loyalty points - Note how when sorting the Titles column, [Name] correctly comes first/final then followed with alphabetical guild depending on ascending/descending.
- Tiles#Loyalty points_only
- Titles#Packs titles (Runecoins_only)
- And just when yous might recollect the problem arises with the rowspan/colspan, I highly doubt that information technology is. Mainly because usually a whole different attribute doesn't affect 1 another, no? The reason why rowspan/colspan is present is to ensure information is conveyed in a easy, digestible way for those who dislike reading the already comprehensive texts on the pages, thus I tried to minimise the information used in a table, focusing more on only the values when possible. Regarding your question, rowspans exists because 2 dissimilar animations (as the example given) tin only exist purchased from a single pack (2 in 1) and can be separately selected in the Animations Customisation interface. Rowspan exists in this example to include two rows because of this similarity. J u south t
゠ャ ン デ ã‚£ ー ズ ã‚„ 犬 ? c u t e
-
- So is in that location anything I could aid around for now as you endeavour to troubleshoot this issue? I'm not really a person who is experienced in coding, I normally merely follow instructions I observe but if there's something I could help with, I will try my best.
- Speaking in which, have you tried tweaking the rowspan/colspan around to substantiate the fact that it is indeed the cause of this issue? Just and so you know, the sorting disorder likewise exists where the template {{N/a}} isn't used (as mentioned in my last post). In actual fact, some columns that experience sorting disorder previously mentioned besides does not apply rowspan/colspan because these attributes are only used selectively. Thus this is why I highly dubiousness that it has any relations to the problem unless they correlate one some other. J u southward t
゠ャ ン デ ã‚£ ー ズ ã‚„ 犬 ? c u t e
RE: Historic volume data [edit | edit source]
replied in my talk folio. az talk 00:49, October 15, 2014 (UTC)
re:gemwupdate.js [edit | edit source]
(What line is that roughly?) What I think I would have washed that for is as a potential fallback for bare pages, where the template had been added merely no prices entered notwithstanding. I'one thousand not sure though, because I didn't quite find what slice of code you meant. Anyhow, I think it might every bit well have been a but-in-case piece of code, as I do commonly build in fallbacks for situations I can imagine happening without seeing any case of it going incorrect yet. J O E Y T J E 5 0 T A L K pull my finger 17:01, October twenty, 2014 (UTC)
- Ah I remember I built that in considering when I wrote this script, the GEDB was having some problems every at present and then, displaying a whole lot of zeroes for some items that didn't have plenty data yet, or something. I'm assuming that GEDB bug has been fixed long agone already, simply I do retrieve there existence some issues with it back when I wrote this (I should have really added some documentation to my scripts
). Anyway, I'chiliad assuming it'south not really needed anymore. I've tweaked information technology a flake to also bank check for unixnow == 0for the reason you lot mentioned, and I've besides added some documentation-comments. - And for the
NaNcheck, I institute that somewhere on the internet (I'm guessing some StackOverflow question), and I decided it was better than anisNaN(ten)exam, considering this exam also discardsfloatinputs, and the GE only usesintsouthward. J O E Y T J E 5 0 T A Fifty K pull my finger 11:19, October 21, 2014 (UTC)- Looks really practiced! Really like shooting fish in a barrel to follow too, with all the comments. I've made a few fixes and/or changes, and added a annotation about the manual submission when the GEDB is down (in a
// @todoannotate). Anyway, it looks bang-up! J O East Y T J E 5 0 T A L K pull my finger 12:08, October 22, 2014 (UTC) - PS: Are in that location whatever updates about Wikia adding [[mw:Extension:Tabs]] to this wiki? J O East Y T J Eastward v 0 T A Fifty K pull my finger 17:00, October 22, 2014 (UTC)
- Well, I changed it considering that'south more than specific. What you're checking is if it's non -1, so it's clearer to make the code represent that. Of course
> -anewill do exactly the same in this case, and it'southward even exactly as fast equally!== -1, but with!== -oneit'southward more than obvious what you lot're doing. If y'all think> -oneis improve, yous tin can change it back of grade, information technology just seems more than obvious what you're doing if you use!==. J O Due east Y T J East five 0 T A L Yard pull my finger 15:03, October 23, 2014 (UTC)
- Well, I changed it considering that'south more than specific. What you're checking is if it's non -1, so it's clearer to make the code represent that. Of course
- Looks really practiced! Really like shooting fish in a barrel to follow too, with all the comments. I've made a few fixes and/or changes, and added a annotation about the manual submission when the GEDB is down (in a
Exchange modules [edit | edit source]
But a few questions... Is it possible to:
- Add commas for the numbers? Prices, value, limit, etc. (except itemID of class). Information technology is hard to differentiate between 10000000 (10m) and 100000000 (100m). This was discussed earlier, I believe, and the determination was to add commas to the prices (and other info) for user-friendly-ness. I know some would say that simply bots do the updates, but let'southward assume that people need to be able to see/decipher the Module pages as well.
- Remove all the "--" comments?
- Rearrange the parameters? "Usage" tin be placed last, after "Examine". And "itemId" should come up beginning, before "cost".
And, does the GEMW graphs piece of work with the new format in "Module:Exchange/Item/Data"? If I'm non mistaken, yous need a "proper name" parameter to display the title for the graphs. az talk 02:55, October 23, 2014 (UTC)
Module:Commutation [edit | edit source]
Can you write a short part that tin get the price of a specified item, for use in other modules? e.g. cost = require('Module:Substitution')._price would let me to get the cost as a raw, unformatted number with cost('Abyssal whip'). MolMan xvi:26, October 23, 2014 (UTC)
Why monobook no border? [edit | edit source]
sad for taking up then much space! az talk 08:34, October 31, 2014 (UTC)
http://i58.tinypic.com/1qreqo.jpg
pls set [edit | edit source]
https://runescape.wiki/west/User_talk:The_Mol_Man?curid=368802&diff=11764048&oldid=11762766
https://runescape.wiki/w/User_talk:ThePsionic?curid=487735&diff=11764060&oldid=11748743
InvalidCards
00:34, November 8, 2014 (UTC)
- All right, and then I at least know it's Wikia being slow again :P
InvalidCards
08:37, November eight, 2014 (UTC)
hullo Cam [edit | edit source]
I chose to use hashes, because that makes it much easier to dynamically update the url when you're on a page, and then that any changes to the charts will automatically alter the URL, which would make linking to the page automatically link to the same chart settings. Besides, url hashes work just fine too right?
I didn't really empathise what you meant with that resp.parse.links thing. I couldn't ctrl+find it anywhere on the electric current or previous versions of the script.
About reviewing the lawmaking, and calculation comments, I've only got ane thing to say: Yous use Object.keys(), which is not supported past IE8-. Is information technology intended to support this for modern browsers but, or is it actually unintended to driblet IE8 support altogether?
The averages practise seem to have a quite some weird stuff in the GEMW/C interface, yes. That's probably because of the different way the charts piece of work on GEMW/C, indeed. The GEMW/C page has no 'default' item listed, to make sure any items tin be removed from it (on the popup chart, the default items are always listed). So, since the popup chart uses the original listing of prices (in the HTML code; the list of prices that's used to generate the nautical chart initially), it works fine on popups, but not on the GEMW/C page, considering that page has no meaningful prices in its HTML code. I tried to fix this in my previous edits to the script, but those didn't actually seem to work. I think perhaps the code that generates the averages needs to be changed to use something other than the prices listed in the HTML. I am quite decorated with my homework again at the moment, only I might be able to help with a few $.25. Similar you said, if you don't get to it, I'll probably become to information technology if you don't. The code is much easier to read at present (nice work btw), so it should exist easier now, at to the lowest degree.
Good luck with the further changes to the script. J O East Y T J East 5 0 T A L Thou pull my finger 15:29, November viii, 2014 (UTC)
- I don't remember what that code is for, only below it was another function of the script to which I've added an explanation. J O E Y T J E 5 0 T A L K pull my finger 17:45, November eight, 2014 (UTC)
Jadinko seed logs [edit | edit source]
Hi, I've just finished getting information to update the logs for the types of seed you get when hunting jadinkos (User:IsobelJ/Jadinkos). I would ideally like the data to be turned into logs similar to the ones that are currently on the jadinkos' folio just updated to reflect the new seeds they drib, and working more than like the charm drop logs where information technology is easier for editors to add to them. I have no thought to make logs for myself though. I have already asked Joey if he would make something like this merely he doesn't want to. Looking over the thread about making the logs once more, I saw yous said you could have a get at doing this. Would you all the same consider doing this? Thanks,
Isobel
sixteen:xvi, November x, 2014 (UTC)
RfB [edit | edit source]
I'chiliad pleased to inform y'all that your request for bureaucratship was successful. You can now grant and revoke sysop and bot flags, too equally brand other users bureaucrats. Please exist sure to follow the applicable policies and look for community consensus where necessary. I'chiliad sure yous will practise a fine job, and experience gratis to contact me if you have whatever questions or concerns. Dtm142 (talk) 05:09, November 12, 2014 (UTC)
- Congrats on the kickoff successful RfA in 537 days, and the start successful RfB (in particular) in 1438 days!
05:55, November 12, 2014 (UTC) - Skilful cheerio, cam. I'll miss you. MolMan 13:31, November 13, 2014 (UTC)
Sortable tables [edit | edit source]
Hey, I've had problems with sortable tables recently, by which I mean they sort once (descending), and the cavalcade freezes after that, resulting in nada happening when you try to sort the table ascending. Sorting another column descending does work, but can afterwards also not be sorted ascending. Cook said that Tylio has too been noticing issues with the tables and that you might exist the person to ask about this. Any ideas about what is going on?
InvalidCards
xvi:29, November 17, 2014 (UTC)
gemwupdate (and whatsoever other scripts you're working on) [edit | edit source]
Remember you lot wondered near why we had a "failsafe" for zero prices? Just to give an thought, for this item (and other similar items, 48 items in all), in that location are naught values for the prices between 12 November and 17 November (merely there are prices earlier and subsequently these dates). Thought you might y'all run into it for yourself, and update the scripts if required. az talk 03:39, November 20, 2014 (UTC)
RuneScape:Lua/Helper modules [edit | edit source]
Even if only ii or 3 of us do whatsoever coding, I experience this page could show helpful. MolMan 22:18, Nov twenty, 2014 (UTC)
- Template:Helper module c: MolMan 16:12, November 22, 2014 (UTC)
Template:Articulate [edit | edit source]
Are the clear classes plenty for the intended purpose? Or should the inline styling exist kept as a fallback? I just enquire because I need that function for [[Module:Infobox Bonuses|a messy module you shouldn't non look at ;(]] and I'yard just adding the grade instead of expanding a template. MolMan 02:18, November 22, 2014 (UTC)
Here [edit | edit source]
Was trolling through some old files o' mine, and found this. Hither, you lot tin have it: Cresbot plopped on his Cresbutt MolMan 02:18, December ane, 2014 (UTC)
[edit | edit source]
I replied on my talk page.
Salix (Talk)
00:l, December five, 2014 (UTC)
Re: Mobile [edit | edit source]
Well I honestly don't remember how. It was either while reading Trac, pre-GitHub, or was something I thought would work at the fourth dimension. It has been 3 years since I did that though. Ryan PM 01:23, December 5, 2014 (UTC)
uhm [edit | edit source]
what?
Oil4 Talk 10:28, December v, 2014 (UTC)
- Yeah, I saw information technology right subsequently I posted here that I updated it twice. As far every bit I'yard aware, I only clicked once.
Oil4 Talk 12:29, December five, 2014 (UTC)
Re: Common.css [edit | edit source]
I like it with the exception that it does take a single bug. See this diff if you lot oasis't noticed information technology by this talk message. I'm not certain how much of CSS3 LESS supports, merely it was odd to see the pixels turning into percentages and the original percentages being removed. There is also the bit in the same edit that I think a item already in a nest shouldn't take to have a interruption betwixt both } brackets or for consistency, a pause betwixt the outset element and the second ane. Cheers, Ryan PM 07:21, Dec x, 2014 (UTC)
Venus [edit | edit source]
You caught my attention, what is it if I may ask
InvalidCards
xiii:43, December x, 2014 (UTC)
Module:Family unit tree [edit | edit source]
I have no fucking clue what'south wrong. The info on the script fault matter isn't helping me at all. MolMan 23:00, December xiii, 2014 (UTC)
CSS [edit | edit source]
Can you restore the hasdialogue course removed in this edit? Information technology needs to be split up from normal bulletin boxes considering the width tends to button it to the lesser of infoboxes on small pages. MolMan 15:51, December 14, 2014 (UTC)
Re: need your aid [edit | edit source]
Hi Cam. I only only saw your message. I assume you mean that the change I made before has been broken by Wikia's shiny new global navigation. However, that functionality yet seems to work for me no problem, even when I'm not logged in. I may just exist misinterpreting your deliberately vague message though. I'm happy to lend my obfuscation services to whatever needs doing. I'll make a conscious attempt to check my talk page regularly so that I run across your replies and can help you out with this. Matt (t) 09:57, December 19, 2014 (UTC)
- I'thou pitiful. I deliberately bullshitted that as much every bit I could. Information technology wasn't supposed to exist usable or maintainable in any capacity at all. I'thou pitiful I wasn't around when you needed this. In the future if you lot demand me, emailing me at
[email protected]will make my iPad beep pretty much instantaneously. Matt (t) 01:57, December 20, 2014 (UTC)
[edit | edit source]
Example issue here: User:Riblet15/Sam This has been happening in navboxes more recently, where in that location are items and a subgroup inside the same grouping. In the starting time example the items outside of the subgroup don't have enough padding in all directions, and in the second navbox there is too much padding on the left side. Any manner to fix this? Riblet 15 22:48, Dec 21, 2014 (UTC)
Hey [edit | edit source]
Can we talk in private some time? Either southward:c or in-game pm would be nice. Let me know when you're available.
Oil4 Talk 11:55, December 23, 2014 (UTC)
small ge graphs not loading... [edit | edit source]
here: RuneScape:Grand_Exchange_Market_Watch az talk 02:17, December 24, 2014 (UTC)
[edit | edit source]
Hi in that location, I was wondering if y'all could tell me how you coded the search bar in global navigation to take you to a page event instead of a search result when you hit enter? Thanks, would be much appreciated. —[[westward:c:halofanon:User:Sonasaurus|Sonasaurus]] 18:28, December 24, 2014 (UTC)
Main page images [edit | edit source]
Here you become: {| fashion="text-align:heart" |[[File:Main Page Grid Items.png]] |[[File:Main Folio Grid Skills.png]] |[[File:Master Folio Filigree Bestiary.png]] |- |Items |Skills |Bestiary |- |[[File:Chief Page Grid Quests.png]] |[[File:Master Page Grid Areas.png]] |[[File:Chief Folio Grid Guides.png]] |- |Quests |Areas |Guides |} Bonus image for events: [[File:Main Folio Grid Events.png]]
The font is white size 30 League Spartan Bold, with a blackness drop shadow. See [[w:c:iiiiiii]] for reference -- Iiii I I I 07:15, December 27, 2014 (UTC)
Your userpage redlinks to User:Cqm/wikia.css [edit | edit source]
Just in instance it had slipped your mind
Oil4 Talk 18:31, December 28, 2014 (UTC)
Clan chat rank [edit | edit source]
Hi, y'all're at present an overseer in the clan chat. At that place is a rank guide that is worth reading since you were previously a corporal. You tin can refer to the admin sections since the deviation between admin and overseer is largely cosmetic (note that overseer does not have citadel editing rights). There is 1 "glitch" (I hesitate to call information technology that because information technology isn't really a glitch) that an overseer can use to edit the citadel. If you find out the sneaky way and use it to screw up the citadel I will find yous and strangle yous ;).
Have fun! --Liquid Talk 19:32, January 1, 2015 (UTC)
Commutation modularisation and redirects [edit | edit source]
Cqm, should the newly created redirect (such as https://runescape.wiki/w/Module:Commutation/Dragon_platelegs/skirt_ornament_kit_%28or%29/Data?redirect=no) be categorised using {{R}} as well (to put them into Category:GEMW_redirects)? IP83.101.44.209 (talk) 05:08, January 13, 2015 (UTC)
Sortable Lighttables inside Wikitables [edit | edit source]
How-do-you-do in that location Cqm. I seem to have succeeded in breaking my autosorting light table. I wanted a tabular array I could utilise to track spawn locations that were being watched by other people, and I wanted to have it sortable by the lodge I want people to check, but also exist able to sort it by name then I could observe and marking locations quickly when needed aswell... This naturally lead me to using both the sortable wikitable, and the lighttable function together, but when they are both used together every time yous sort a column the reset push is sorted also, instead of remaining stationary at the bottom. I fixed that problem previously past adding the autosort function, which worked fine for awhile, then stopped working mayhap half dozen months ago. The table at present sorts fine when the page is loaded, simply the first time the tabular array is sorted once more, the reset button volition stick to the very summit of the table. Could you lot look into calculation a sort social club exclusion for the reset button? Thanks for your time, and any feedback you can give me. Heaven Sent (talk) 05:13, January 14, 2015 (UTC)
- Thanks! It's working perfectly now. Sky Sent (talk) 18:17, January 16, 2015 (UTC)
Template:GEP [edit | edit source]
I don't know what you did but it made MMGs unable to read fractions correctly. <.< [ii] [iii] [4] All three of these had 22m/hour profits in fraction form.
05:17, January sixteen, 2015 (UTC)
- kK broski
10:48, January 16, 2015 (UTC)
ExchangeItem2 [edit | edit source]
Tin Template:ExchangeItem2 exist deleted? I can't seem to find a utilize for it; but it uses Module:ExchangeDefault2, which you deleted recently. IP83.101.44.209 (talk) 04:56, January 17, 2015 (UTC)
Some other GE toll talk page message [edit | edit source]
After I updated the Bonds toll, neither the Price: on the Substitution: folio, nor the price on the article page, were updated to the new toll. The price was showing the correct price earlier, then I'one thousand wondering, is this caused by a cache that can't be ?action=purged? Information technology'south been roughly 15 minutes since the update and it'southward still not updated. J O E Y T J Due east 5 0 T A Fifty K pull my finger 15:47, January xviii, 2015 (UTC)
- Okay, I guess that explains it. Thanks! J O Eastward Y T J Eastward 5 0 T A L K pull my finger 22:05, January 18, 2015 (UTC)
RE: Index Information [edit | edit source]
the calculations are there in each template. i.e. Template:GE Nutrient Index, Template:GE Rune Index, etc... to messy to actually explain in words (see RuneScape:Grand Exchange Market Sentry/FAQ if y'all haven't already, its all at that place). occasionally, the indices are updated when new items are added, per RuneScape:Yard Exchange Market Watch/Adjustments.
for the index data to be updated every day, the bot should fleck the output values from the corresponding index templates on that 24-hour interval, afterward all items take been updated... az talk 02:34, January 19, 2015 (UTC)
Module:ExchangeData [edit | edit source]
Couple things:
- Is there any reason you lot're splitting the title with mw.text instead of using .subpageText, etc?
- How come yous're nonetheless using frame:preprocess?
MolMan 23:14, January 21, 2015 (UTC)
- I was thinking it wasn't finished, but it was in utilize. Also, I see why I thought subpages were enables you tricky onei you. The template has a < BASEPAGE. MolMan 23:19, January 21, 2015 (UTC)
explosion [edit | edit source]
You broke RuneScape:Chiliad Commutation Market Watch/General Store :(. — Jr Mime (talk) xx:04, January 22, 2015 (UTC)
Switch infobox module [edit | edit source]
Cqm, could you take a look at the CSS to figure out why, since its modularisation, the switch buttons no longer seem to have a margin in between them? Buttons now stick together. IP83.101.44.209 (talk) 19:29, Jan 25, 2015 (UTC)
GE smallcharts [edit | edit source]
hey... i don't know the progress of the module conversion, but my bot has started updating the new module/data pages. i question i have is this: with the data now in the module/data pages, whats the syntax for me to see the smaller version of the charts? like the ones in Chiliad Substitution Marketplace Spotter or AzBot's folio?
currently information technology is {{Commutation:Basic/Information|size=small-scale}} which displays the small nautical chart. but with the deletion of the exchange data pages, it won't work.
{{Module:Exchange/Bones/Data|size=pocket-sized}} just gives me the text. lol. az talk 00:54, January 29, 2015 (UTC)
Infobox Bonuses [edit | edit source]
Something seems to take gone wrong at Faithful shield... IP83.101.44.209 (talk) 05:37, Feb ane, 2015 (UTC)
- I think I [https://runescape.wiki/w/Module:Infobox_Bonuses?diff=12716533&oldid=12712921 fixed] information technology; sorry if that was the incorrect way of going about it. IP83.101.44.209 (talk) 08:09, February 1, 2015 (UTC)
HighAlchTable [edit | edit source]
What was this template replaced with? At that place are yet 2 user pages using it (unsuccessfully): User:MarkGyver/Alching and User:Azns0ulz/merchtable. IP83.101.44.209 (talk) 16:12, February three, 2015 (UTC)
CC thread [edit | edit source]
Since you closed the thread, I'll post this on your talk:
I've left the RSW clan. For completely unrelated reasons. I've joined PSO because I desire to be function of a clan that'southward a piddling more than action-oriented. I have no hard feelings against RSW, and I all the same plan to invitee in there regularly, because I do like the clan. My new clan literally requires high level bossing to retain membership, and that's but something I think I tin bask.
I really merely want to make it clear that the thread and its upshot had little to do with me leaving. It certainly didn't help, but information technology wasn't a deciding factor. I'd too like to make articulate that I don't think quitting the clan is going to magically erase the past. Whether I am a member of the association or just a guest, I am still responsible for my behavior. It'southward best to admit at present that my "final" alert volition, and should, still utilize.
Anyways, again, no difficult feelings. I'm not angry at the clan or anything, I just needed some new and exciting scenery. Hopefully we can all become along with me as a invitee. And I really just need something to cite, just in instance someone tries to plough the timing of the thread endmost and me leaving into a knot of lies. Ya never know.
RIP clan XP MolMan 13:59, February 4, 2015 (UTC)
- PS you said full general warnings for pt5 and final warnings for pt6; should exist the other way around.
Re:Oggs [edit | edit source]
Well, ew. I can redo them somewhen I guess. PS. If I don't, information technology's very easy; download Audacity, record stuff, so export equally ogg. But I'll go round to it some time.... User_talk:Fswe1 Fsw e1
xvi:15, February 4, 2015 (UTC)
CC thread [edit | edit source]
You didn't shut it the fashion I wanted. Bad oneion bad! RABBLE RABBLE RABBLE RABBLE
Archmage Elune Talk HS
fetus is my son and I love him. 03:28, February 7, 2015 (UTC)
- Arrive the Citadel Raffle by donating your "oneion"s! — Jr Mime (talk) 03:33, Feb 7, 2015 (UTC)
High CPU usage [edit | edit source]
Cqm, could y'all take a look at Treasure Hunter/Rewards and perhaps figure out why opening that page, both in IE10 and FF34.0.5, volition use a full CPU for a good thirty-60 seconds, freezing my browser every bit a consequence? Both while being logged in and out. The folio loaded without problems before; prior to this week, at to the lowest degree, I can't remember ever having this problem. The article hasn't grown in any significant style equally of late, which otherwise could serve as a possible explanation. IP83.101.44.209 (talk) 18:04, February 7, 2015 (UTC)
- Hmm, I just had the aforementioned thing happen on List of books (albeit for a shorter elapsing). Has something changed to how the Template inclusions / LUA modules are handled/run recently? Perchance locally instead of caching the generated wiki code? IP83.101.44.209 (talk) 05:36, Feb 8, 2015 (UTC)
- The effect may end up being a local problem later all; although I have no thought what information technology could exist. I tested it on another reckoner, likewise logged in and also using FF34.0.5, and the issue did not nowadays itself. While the other computer does have a CPU spike while the page is loading, nix freezes and it doesn't last. Disabling either (or both) the site and personal js did not solve the freezing. I don't think the problem is related to the lazy-loading of images; if I roll down (quickly) once the page is done freezing and loading, as expected images are lazily loaded. Just the images load so fast it's hard to be sure; I don't even see the fade-in (same on the other computer).
- Both this and the other estimator have the GreaseMonkey addition installed (inserting local js into webpages), but without whatever scripts enabled for wikia. Disabling that add-on changes nothing. As I'm logged in, wikia shows me no ads; just fifty-fifty if information technology were to, I have not installed Flash, and then at worst I'd become to see a few gifs...
- Interesting to note, when the page freezes, based on the scrollbar size, the full article HTML has been loaded. The "Recent Changes" activity on the right paw side (and later on chat and "rate this page") is showing the loading icon while frozen.
- I've tried opening the Spider web Developer Performance monitor in FF while loading the Th article, but that merely generated a five.47MiB .json file, which plainly FF fails at parsing (it just keeps proverb "Loading..." and nothing happens). I'm out of ideas, I'm agape. IP83.101.44.209 (talk) eleven:49, February 8, 2015 (UTC)
Re: AmauriceBot tasks [edit | edit source]
I can't call up of any other issues/catches, and your questions seem to encompass most of the areas I tin retrieve you might want information on. If you do think of whatever other questions, so please continue ask.
15:45, Feb 8, 2015 (UTC)
Amuse logs [edit | edit source]
Vandalism when merging the logs was partially tailored to the type of vandalism that was occurring at the time. Some of it might not exist and then appropriate now. I'll describe it in case you want to use any of the ideas.
The bones algorithm was to generate a "mismatch" score, which was roughly based on the average difference betwixt the percentage drops in the logs against the "proficient" results previously recorded. The algorithm was doubly sensitive to differences in the blueish charms (considering that got vandalised more).
In some cases of vandalisms, the number of dropped charms was often reported as multiples of 10. The bot treated each drop that was a multiple of 10 (or 100 if the monster dropped 10 at the fourth dimension anyway), as existence a bit more suspicious.
I then defined 2 threshold levels, a "warn" level, which would just log suspicious but accept it (and so I could adjust the code accordingly), and a "bad" where the change was rejected. The thresholds used varied according to the following cases:
- If the "good" sample size is less than 250 kills, so the thresholds were fix to warn about most stuff, and reject very little (as information technology was assumed the wikia was still learning what was a practiced drop rate).
- If the "good" sample size was more than 250 kills, and the log entry kills was less than 10% of the previously recorded "good" results, and then information technology would warn if the average difference was more than 5% and reject if more than ten% divergence.
- If the "good" sample size was more than 250 kills, and the log entry kills was more than than x% of the previously recorded (i.e. could more significantly modify the reported percentages, but should exist closer matched due to increased sample size), then the warn threshold was set to 2% and reject at 5%.
In addition to the check against variation, the bot checked that the logged changes were a correct multiple of the number of charms supposed to be dropped. The trouble with Vorago was that the charm driblet rate was initially gear up to 25, simply drops were actually in any multiple of 5. The problem was resolved by changing the Amuse:Vorago folio to say the driblet rate was multiples of 5.
Another check that the Bot did was to warn if more 10 log entries had been created since the log file was last consumed. This was to protect against vandalism where someone submitted lots of small changes in an attempt to misconstrue the figures without detection. However, I don't think I ever recalled a case of this attempt being made.
User Hiscore Data [edit | edit source]
This was created when QBot started to neglect to update user highscore information pages. The parameters recognised to the Template:Hiscore_autoupdate are as per the documentation for the template. I'1000 not sure many people make employ of the "history" option, and then I suspect that RSHiscores is all that is needed.
The AmauriceBot currently updates highscore data pages for well-nigh 100 users a 24-hour interval at the moment. If you want, I could modify AmauriceBot to report the list of users/pages information technology updates, and so that (if necessary) people can be informed to use the RSHiscores instead (or just update appropriate templates).
The charge per unit limit was something I hit when Jagex must of changed their services and added some rather strick DoS protection. What I found was that I could request the highscores for 20 users okay, merely then after that requests would fail. It seems that requests were express to 1 per minute after the first 20 requests from the same IP address. This might not be the example anymore, but I kept it to simply requesting one page per seventy seconds merely in case.
User Adventure Logs [edit | edit source]
This was created when QBot started to neglect to update user adventure log pages. The RSS feed for some reason was proving unreliable at the time, but I suspect it is okay now and can probably exist used instead.
The AmauriceBot currently updates gamble log pages for about twenty users a twenty-four hour period at the moment. If yous want, I could modify AmauriceBot to report the listing of users/pages it updates, then that (if necessary) people can exist informed to use the RSS feed used instead.
Level 99's, etc. [edit | edit source]
This gets the data by scraping the html pages and processing the content.
The general approach when searching the highscores for the lowest player with a 99, was to load in the previous results (so it knew roughly where to outset). And so, if lowest thespian with a 99 tin can exist identified on the appropriate Jagex HS folio (i.east. need players with scores below 99 too as some with 99 to know have correct entries), then this is used.
If the lowest player with a 99 cannot be identified, and so a search is washed to discover at least ane folio with players having 99, and one folio with players not having 99. Depending on which is needed, the Jagex HS pages are checked by jumping to pages with increasing or decreasing HS folio numbers.
To avoid loading lots of pages (particularly if the previous level 99's page is vandalised), AmauriceBot would browse the pages with larger jumps (e.k. jump 1 page, and then 2 pages, then 4 pages, then viii pages, etc.). Once a folio is plant with player having 99 and a page found with players non having 99, then the right page is narrowed downwards using normal binary chop.
- RE:Vorago: Vorago drops 5 charms at a time 5 times. So if at that place were xx charms in i kill, it should actually exist counted as 5 drops, with four sets of charms dropped. The real problem would be Araxxi, who actually does drop variable amounts. In my stance, the best way to handle Vorago would be to elaborate his drop mechanics on the charms page (merely to exist safe, anyone who can get enough kills to make a submission should already know how his drops work), request basically for the kill count to be multiplied by 5, one for each drop, and charms to be treated as normal (and leaving the per kill at 5). For Araxxi, I would have to think of setting something upwardly differently because I believe the charm count is completely random. I'grand thinking something like nosotros use i charm is dropped at a time for submission purposes so that instead of actually logging the number of charms yous get, yous log the number of times you get it. MolMan 15:53, February 8, 2015 (UTC)
Forum [edit | edit source]
Thanks for this; indeed a mistake on my part. IP83.101.44.209 (talk) 10:13, February x, 2015 (UTC)
Re: AmauriceBot tasks [edit | edit source]
As for the charms, I agree, using the existing js vandalism checks, etc, seems the advisable manner to go.
Also, I have updated AmauriceBot to tape the good highscore asking pages and good advlog request pages. Possibly y'all could update the Template:Hiscore_autoupdate and Template:Advlog_autoupdate pages documentation to say they are beingness deprecated and give information on how to utilize the alternatives.
Perchance we could pick a cut-off date, like the 31 March, after which the Bot will no longer action the automobile templates. Either you could mail service something on the relevant user talk pages, or maybe I could practise a temporary modification to the Bot to post on the user talk pages that the auto updates will finish on the 31 March and give them a link to the relevant autoupdate page for details on the alternatives. What do you think? Amaurice talk x:43, Feb 10, 2015 (UTC)
- Looks like y'all have made proficient progress. As for the highscore scrapper, I think the category_type determines whether information technology is skills (category_type=0) or activities (category_type=1). In AmauriceBot, I merely specify the category_type=0 to be certain. The time_filter is whether it is the all fourth dimension, weekly or monthly. In AmauriceBot, I did non even bother adding this to the url as information technology does default to all time. Every bit for the overall scores, I've actually turned that off in the bot, because it was actually using the overall count of players with total score of 2595, which is all the players with 120 in DG and 99 in other skills. I don't have a solution for the overall scores, so currently this has to be done manually by people. Amaurice talk xi:25, February 13, 2015 (UTC)
-
- I have updated AmauriceBot to also tape in the skilful highscore request pages the history requested, and record in the good advlog request pages the format requested. Looking at the highscore pages, although several users request history, just ii users actually employ the history (in User:Quarenon/Stats and User:SandroHc/Stats) to show the change. Neither of these users look active whatsoever more. In fact, Quarenon was the creator of the autoupdate template when it was his QBot that used to practise the updates. So it looks like you tin can safely drop any requirement for highscore history option.
Amaurice talk 12:39, February 13, 2015 (UTC)
- I have updated AmauriceBot to also tape in the skilful highscore request pages the history requested, and record in the good advlog request pages the format requested. Looking at the highscore pages, although several users request history, just ii users actually employ the history (in User:Quarenon/Stats and User:SandroHc/Stats) to show the change. Neither of these users look active whatsoever more. In fact, Quarenon was the creator of the autoupdate template when it was his QBot that used to practise the updates. So it looks like you tin can safely drop any requirement for highscore history option.
It is quite possible that the rate limits aren't there in the same way now, as I think Jagex did install a new (perhaps smarter) DoS protection organisation since then. For the 99'due south, the just thought I have is whether it would aid to become the listing of players with 99+ in two or three of the least popular skills (e.g. agility, construction, divination) and filtering on those lists to reduce the number of players to check. Otherwise I don't accept any other ideas. Amaurice talk 09:31, February xv, 2015 (UTC)
- I have updated Template:Hiscore_autoupdate to suggest using Template:Hiscore instead. I take modified AmauriceBot to supplant existing user's hiscore information pages with advisable Template:Hiscore calls, and have now disabled the user hiscore data updating. Bold at that place are no issues with this over the adjacent few days, I will then move onto doing a simliar shutdown of the user adventure log updating likewise (suggesting the RSS feed instead). How'due south the highscore scraper with the level 99'due south, etc, pages going? Amaurice talk ten:54, February 21, 2015 (UTC)
-
- Looks like y'all're almost there then. I've turned off the updating of the Module:Hiscore counts in AmauriceBot so it won't get in the way of Cresbot updates.
Amaurice talk 00:25, March 3, 2015 (UTC)
- Looks like y'all're almost there then. I've turned off the updating of the Module:Hiscore counts in AmauriceBot so it won't get in the way of Cresbot updates.
-
-
- The update of the highscores module generally took virtually 20 or 30 minutes, just that did not include updating the "overall" scores. Amaurice talk xix:eleven, March iii, 2015 (UTC)
-
Infobox Item and exchange graphs [edit | edit source]
I've noticed that exchange graphs for potions, such as perfect juju herblore potion and prayer potion now just testify a single toll series, instead of a differently coloured series per dose-variant of that potion. Was something left forgotten in the Template/js to Module migration? IP83.101.44.209 (talk) 16:02, Feb 13, 2015 (UTC)
jenkinsfidlen1938.blogspot.com
Source: https://runescape.wiki/w/User:Cqm/Archive_7
0 Response to "Runescape Sorry There Was an Error Processing Your Request Please Try Again"
Post a Comment