User:Eldrin
From Medivia Online Wiki
Revision as of 16:20, 22 September 2025 by Eldrin (talk | contribs) (Created page with "mw.loader.using('mediawiki.api').then(function() { new mw.Api().get({ action: 'cargoquery', tables: 'TestSpots', fields: 'name,level,notes', format: 'json' }).done(function(data) { console.log(data); alert(JSON.stringify(data, null, 2)); }); });")
mw.loader.using('mediawiki.api').then(function() {
new mw.Api().get({
action: 'cargoquery',
tables: 'TestSpots',
fields: 'name,level,notes',
format: 'json'
}).done(function(data) {
console.log(data);
alert(JSON.stringify(data, null, 2));
});
});