sammy7912 0 Share Posted January 21, 2023 Hey guys, can I get some help formulating a query to show a lis of games that are capable of at least 60FPS but not 120FPS, preferable ordered by metacritic score? I've given it a shot earlier and i wound up with this; anybody got a clue how to fix? Cargo query - PCGamingWiki PCGW - bugs, fixes, crashes, mods, guides and improvements for every PC game Reply (Quote) Link to comment Share on other sites More sharing options...
Aemony 150 Share Posted January 21, 2023 16 minutes ago, sammy7912 said: preferable ordered by metacritic score The reception score is not queriable through Cargo, so that cannot be done sadly. Your issue with the current query is actually a minor one; you haven't properly grouped the WHERE clauses. So the final "AND" clause ends up being a part of the OR clause in front of it. So you're basically querying for all games that fullfil one of these requirements: 60 FPS = true 60 FPS = limited 60 FPS = hackable AND 120 FPS = false The various OR clauses just needs to be grouped together using a pair of parentheses. Here's the query with a fixed WHERE statement: {{#cargo_query: limit=500 |offset=0 |tables=Infobox_game,Video |fields=Infobox_game._pageName,Infobox_game.Developers,Infobox_game.Publishers,Infobox_game.Released,Infobox_game.Available_on,Video.60_FPS=Supported |where=(Video.60_FPS='true' OR Video.60_FPS='limited' OR Video.60_FPS='hackable') AND Video.120_FPS='false' |join on=Infobox_game._pageName=Video._pageName |format=template |named args=yes |intro=<table style="text-align: center; margin: 0 auto; width: auto"> <tr> <td><div title="Native support" class="svg-icon svg-25 tickcross-true"></div></td> <td><big>Native support</big></td> <td style="padding-left:25px"><div title="Limited native support" class="svg-icon svg-25 tickcross-limited"></div></td> <td><big>Limited native support</big></td> <td style="padding-left:25px"><div title="Always on (no native option)" class="svg-icon svg-25 tickcross-always-on"></div></td> <td><big>Always on</big></td> <td style="padding-left:25px"><div title="Hackable" class="svg-icon svg-25 tickcross-hackable"></div></td> <td><big>Requires manual fix</big></td> <td style="padding-left:25px"><div title="No native support" class="svg-icon svg-25 tickcross-false"></div></td> <td><big>No native support</big></td> </tr> </table> <div style="margin-top:10px"><center>Native support may require selecting certain settings in the game or launcher. Refer to the individual game pages for details.</center></div> <table class="wikitable sortable" style="width: 100%;text-align: center"> <tr> <th style="width:195px;">Game</td> <th style="width: 30px;">Developer</th> <th style="width: 30px;">Publisher</th> <th style="width: 30px;">Release date</th> <th style="width: 30px;">Systems</th> <th style="width: 20px;">Supported</th> </tr> |template=Feature/row |outro=</table> }} Reply (Quote) Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.