Bestworld
MBA
Let's say I am getting real tired of checking every server individually on the TSM website for the Black Market Auction House. If I were to make a quick look-up where you just search for the individual item, would that be something you are willing to implement on the website? Mainly asking because I cba hosting that on my own servers.
The entire thing will be coded in PHP with some added JS/jQuery, which shouldn't be an issue, but I am also not going to style it or anything to make it fit the website design. I literally just want the functionality of looking up items without having to click through a million servers. Can add the functionality for all regions if so desired.
It's going to be insanely simple, since every server is basically just GET value. Here's one server for example:
https://www.tradeskillmaster.com/black-market?realm=EU-arathor
The GET variable here is realm, which contains the string EU-arathor, which indicates the server. The items are basically displayed in a table.
The super easy method would be to just have a search query, let the JS loop through each server, print a table that could look like this:
Basically just have to see if(table.html.includes(searchQuery) {
//print - append table
}
Ofc. this is very simplified, but the general idea of it should be doable.
The entire thing will be coded in PHP with some added JS/jQuery, which shouldn't be an issue, but I am also not going to style it or anything to make it fit the website design. I literally just want the functionality of looking up items without having to click through a million servers. Can add the functionality for all regions if so desired.
It's going to be insanely simple, since every server is basically just GET value. Here's one server for example:
https://www.tradeskillmaster.com/black-market?realm=EU-arathor
The GET variable here is realm, which contains the string EU-arathor, which indicates the server. The items are basically displayed in a table.
The super easy method would be to just have a search query, let the JS loop through each server, print a table that could look like this:
Basically just have to see if(table.html.includes(searchQuery) {
//print - append table
}
Ofc. this is very simplified, but the general idea of it should be doable.
Last edited: