RuneScape Wiki
RuneScape Wiki
Advertisement
Acorn 5
This page in a nutshell:
When the official Grand Exchange Database fails, admins need to enable manual updates in the Exchange namespace.

On rare occasions, the official Grand Exchange Database (GED) will stop working (either partially or completely) resulting in prices not being updated on the wiki's Grand Exchange Market Watch. When the official database works correctly, our bots (User:TyBot or a backup bot) automatically update the Exchange namespace using prices obtained from the GED.

If these prices are not being updated automatically, then the updating process needs to done manually by users. And to facilitate manual updates, administrators need to make several changes to the JavaScript to enable users to update manually. For instructions on how to actually update Exchange prices manually, see here.

Instructions for admins[]

The instructions below are to be followed when the official database fails to update automatically, per discussion. Please note that the instructions below may be confusing if you do not have much experience of JavaScript.

General steps[]

Additional steps[]

When ALL items are affected:

 -     manual = false,
 +     manual = true,
       manualPages = [],

When ONLY certain items are affected (usually when new items are missing from the GED):

  • In MediaWiki:Common.js/gemwupdate.js, set manual to true and populate manualPages with the affected pages.
  • Note that underscores(_) need to be replaces with spaces ( ).
  • Note that apostrophes (') need to be replaced with its equivalent code (%27).
 -     manual = false,
 +     manual = true,
 -     manualPages = [],
 +     manualPages = ['Acorn', 'Weird gloop']

Reverting to automatic updates[]

When the official GED is fixed and our bots are updating correctly, reverse whatever changes that have been made and close the Yew Grove thread.

Advertisement