Home | Webstore
Latest News: OOTP 25 Available - FHM 10 Available - OOTP Go! Available

Out of the Park Baseball 25 Buy Now!

  

Go Back   OOTP Developments Forums > Out of the Park Baseball 21 > Perfect Team 21
Register Blogs FAQ Calendar Today's Posts Search

Perfect Team 21 Perfect Team 21 - The online revolution! Battle tens of thousands of PT managers from all over the world and become a legend.

Reply
 
Thread Tools
Old 03-20-2020, 06:09 PM   #1
Chris Marquardt
OOTP Developments
 
Chris Marquardt's Avatar
 
Join Date: Jan 2016
Location: Germany
Posts: 455
Post Auction House Search Guide

Reposting my auction house search guide from OOTP20.
The only thing that changed is that the "Record Breaker" category was changed to "Snapshot".

First of all some technical notes.
The server is using so called regular expressions (or regex) to match cards. For a "full" regex guide just google it or use the wikipedia article.
This expression is matched against the full card title (like "Hardware Heroes, 3B Wade Boggs, BOS, 1987") and the team name (like "Boston Red Sox").
The server is ignoring cases, so you find the same results for "BOGGS", "boggs" and "Boggs".

So the obvious things you can search for without understanding regex are
  • from the card title:
    • card type (okay, we have a filter for this)
    • position (again we have a filter)
    • player name (the obvious one)
    • team abbreviation (a unique team identifier)
  • from the team name:
    • team city
    • team nickname

For example we want to search for "Hardware Heroes" from 1984.
Simple thing set type filter to "Hardware Heroes" and search for "1984".
The result is a short list of 3 players.



Another simple example is to search for a specific card.
Just enter the complete card title like "all-star, lf jose cruz, hou, 1980".



Now something a little more complex, all "Jose Cruz" cards from 1984.
Unfortunately when you try to combine those two information into something like "jose cruz 1984" you get no results.

So the first thing to learn is how to combine them and to know the limits.
First you can either search for parts of the card title OR the team name, not both.
Something like "hardware heroes boston" will not work.

"jose cruz 1984" does not work because the server tries to match the complete text with the card title.
Unfortunately for us between type and year stands the player name and some other data.
So to say to the server to ignore that part in the middle we add ".*" (the dot stands for any character, the * means 0 or n times the thing before it) between the type and the year.
"jose cruz.*1984" will now correctly return those cards.



With this information we can create some searches like this "2b.*jose.*2019", resulting in all second base cards from 2019 whose players name contain "jose".



To remind you something like "2b.*houston" will not work as the server can not search in the card title and the team name at the same time.

Now something different, we want to search for cards from specific years.
First thing all cards from the 1980's.
No problem we just enter "198".



Okay, what about all cards from the 1981 and 1982.
Hmm, we can not search for this or that, so we need a way to tell the server to search for either one.
The answer is "|" (next to enter on the keyboard).
It tells the server to search for either the text before or after the separator.
Additionally we can add multiple "|" to search for all possible variants like "1b|2b|3b".
So for this example we enter "1981|1982" and get all cards from those two years.



You can use this to search for either "Boston Brave" players or all players from 1962 "bsn|1962".



But that seems rather useless, so how do I search for all "Boston Brave" players from 1947 and 1948?
"bsn.*1947|1948" returns all "Braves" players from '47 and all players from '48.



That's not what we want.
Instead we could enter this "bsn.*1947|bsn.*1948".



But we are lazy and don't want to type so much so we use another part of regex.
We need to add brackets "()".
"1947|1948" is the same as "(1947|1948)", but in combination with a prefix like "bsn.*" we need the brackets to let the server know that we want that prefix on both variants.
So instead of "bsn.*1947|bsn.*1948", we can use "bsn.*(1947|1948)" or even "bsn.*194(7|8)".



With the help of ".*", "|" and "()" we can search for almost everything.
We want a Historical All-Star or Hardware Hero on 2nd or 3rd base from the 90s? "(all-star|hardware heroes), (2|3)b.*199"



We want an Outfielder from the Chicago Cubs or White Sox? "(lf|cf|rf).*(chc|cws)," (adding a comma behind the team abbreviations, so the server does not think it's part of the player name)



I hope this guide was useful and my English was not that bad.
Have fun in the auction house!
Chris

All images: https://imgur.com/a/RYIIWil
Chris Marquardt is offline   Reply With Quote
Old 04-02-2020, 04:23 PM   #2
wualumni
Minors (Rookie Ball)
 
Join Date: Nov 2010
Posts: 25
Are there plans in the future of the AH search screen to have an option to not show cards that you already own?
__________________


wualumni is offline   Reply With Quote
Old 04-05-2020, 05:05 AM   #3
RoteLaterne
Major Leagues
 
RoteLaterne's Avatar
 
Join Date: Jun 2009
Location: Germany
Posts: 387
Would be awesome to have a filter to search for LHB and RHB (maybe switch hitters)!

Another useful pre-defined filter might be to search for "infielders" and "outfielders", instead of typing in desired positions

Last edited by RoteLaterne; 04-05-2020 at 07:57 AM.
RoteLaterne is offline   Reply With Quote
Old 04-13-2020, 08:31 PM   #4
Chuck
Minors (Rookie Ball)
 
Chuck's Avatar
 
Join Date: May 2002
Location: Louisville, KY
Posts: 33
I would love an easier way to search for card in a specific mission. Not sure how to do it in the current format.
Chuck is offline   Reply With Quote
Old 04-16-2020, 06:38 AM   #5
mrbucket
All Star Reserve
 
mrbucket's Avatar
 
Join Date: Nov 2013
Location: New Zealand
Posts: 860
Quote:
Originally Posted by Chuck View Post
I would love an easier way to search for card in a specific mission. Not sure how to do it in the current format.

Obviously that'll be great but I will admit I've had a fair bit of fun trying to use the above techniques to come up with some quick search terms that'll give me a bunch of cards in a collection and nothing else. For most collections I've been able to boil it down to 2 search terms that I keep on a text file on my desktop. Has definitely made bargain hunting for collections a lot easier.
__________________
My Dynasty Report: A Minor Dose of Chaos: A Random Debut League
mrbucket is offline   Reply With Quote
Old 06-09-2020, 11:14 PM   #6
Azagoth
Minors (Rookie Ball)
 
Join Date: Jun 2020
Location: Port Townsend, WA
Posts: 38
Quote:
Originally Posted by RoteLaterne View Post
Would be awesome to have a filter to search for LHB and RHB (maybe switch hitters)!

Another useful pre-defined filter might be to search for "infielders" and "outfielders", instead of typing in desired positions

LHP and RHP too.
Azagoth is offline   Reply With Quote
Old 07-04-2020, 07:38 AM   #7
Parkstar
Bat Boy
 
Parkstar's Avatar
 
Join Date: Jun 2020
Location: USA
Posts: 9
Can you please add individual player notes? I have to write down notes on a piece of paper about a player, and I'd like to just click on his profile and add any notes about him myself (reminders, auction, stat notes, etc).. and maybe for my notes to appear upon hovering my cursor over his name when the small basic profile appears!
Parkstar is offline   Reply With Quote
Old 10-11-2020, 08:46 PM   #8
daves
Hall Of Famer
 
daves's Avatar
 
Join Date: Dec 2007
Posts: 3,634
Like an easier way to search for certain missions besides one card at a time? Live cards were easy, but others are not.
__________________




daves is offline   Reply With Quote
Reply

Bookmarks


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 02:32 AM.

 

Major League and Minor League Baseball trademarks and copyrights are used with permission of Major League Baseball. Visit MLB.com and MiLB.com.

Officially Licensed Product – MLB Players, Inc.

Out of the Park Baseball is a registered trademark of Out of the Park Developments GmbH & Co. KG

Google Play is a trademark of Google Inc.

Apple, iPhone, iPod touch and iPad are trademarks of Apple Inc., registered in the U.S. and other countries.

COPYRIGHT © 2023 OUT OF THE PARK DEVELOPMENTS. ALL RIGHTS RESERVED.

 

Powered by vBulletin® Version 3.8.10
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Copyright © 2020 Out of the Park Developments