Project 1999

Go Back   Project 1999 > Blue Community > Blue Server Chat

Closed Thread
 
Thread Tools Display Modes
  #1  
Old 02-29-2012, 08:02 PM
awimer01 awimer01 is offline
Skeleton


Join Date: Jan 2012
Location: ALT, GA
Posts: 17
Default Buyer/Seller Rep

I don't know if any of you do this or have done this or even knew this happened. It happened to me today, an I'll be honest, I was pleasantly surprised. I sold someone a Ikky B Club, and part of the deal was helping my buyer find another item. Didn't see any harm in it, so about 30 minutes later I saw one flash in EC, I contacted both the seller and the buyer, arranged a meet, and in a flash I had helped 2 people get what they wanted. The buyer tipped me 100pp!

I was floored. I hadn't really thought about that being a relatively low risk yet somewhat lucrative thing. Granted it was a simple donation (a most appreciated one!) but I was just wondering if this kinda thing happens a lot?

Akkarin
  #2  
Old 03-01-2012, 03:39 PM
Slave Slave is offline
Banned


Join Date: Mar 2011
Posts: 2,339
Default

A lot of people spend a lot of their time in EC. Their activities range from market speculation to casinos. If you can find a niche for your services, and there are a lot of people who would rather fight monsters, have fun and make your fortune doing it!
  #3  
Old 03-01-2012, 09:52 PM
Swish Swish is offline
Planar Protector

Swish's Avatar

Join Date: Nov 2010
Posts: 19,432
Default

Add in the use of that auction tracker and the EC forum here, and there's a lot of potential ways to source items for people - good luck with it, I wish I had the time and patience I'd love to give that kind of thing a try [You must be logged in to view images. Log in or Register.]
  #4  
Old 03-02-2012, 09:44 AM
username1337 username1337 is offline
Aviak


Join Date: Feb 2012
Posts: 73
Default

Quote:
Originally Posted by awimer01 [You must be logged in to view images. Log in or Register.]
I don't know if any of you do this or have done this or even knew this happened. It happened to me today, an I'll be honest, I was pleasantly surprised. I sold someone a Ikky B Club, and part of the deal was helping my buyer find another item. Didn't see any harm in it, so about 30 minutes later I saw one flash in EC, I contacted both the seller and the buyer, arranged a meet, and in a flash I had helped 2 people get what they wanted. The buyer tipped me 100pp!

I was floored. I hadn't really thought about that being a relatively low risk yet somewhat lucrative thing. Granted it was a simple donation (a most appreciated one!) but I was just wondering if this kinda thing happens a lot?

Akkarin
This is essentially what all the mules/vendors in EC are doing. They buy many items at low-ball prices then spend time in EC selling those items at higher prices - essentially acting as the middle man for buyers and sellers. The "tip" is more of a "fee" and it's the difference between the cost of buying and price of selling. The plat made per hour is this case is the total platinum earned from sales minus the total platinum earned from purchase of stock divided by the number of hours of playing in that session. In this case, just like in real life, being connected with the right players to provide you with cheap goods to resell is key to success when playing the P1999 market.

The hardcores also do stock-like analysis of the prices of goods, forecast change in price based on known upcoming changed/nerfs to items, generate supply/demand curves, collude with other major hardcores to price fix, etc.
Last edited by username1337; 03-02-2012 at 09:56 AM..
  #5  
Old 03-02-2012, 09:59 AM
username1337 username1337 is offline
Aviak


Join Date: Feb 2012
Posts: 73
Default

With the simplicity of writing mouse/keyboard input bot programs, I wouldn't be surprised if some of the hardcores were entirely automated and responding to parses of the log file. The only minor complications are implementing intelligent enough NLP algorithms to handle players sending tells trying to buy a good and being able to recognize what they're interested in and how much they're offering (and generating appropriate responses) and then implementing a character recognition from image algorithm to handle decisions on where to click the mouse based on this information. Quite an interesting machine learning application.
Last edited by username1337; 03-02-2012 at 10:04 AM..
  #6  
Old 03-02-2012, 02:56 PM
tristantio tristantio is offline
Fire Giant

tristantio's Avatar

Join Date: Nov 2010
Posts: 888
Default

Quote:
Originally Posted by username1337 [You must be logged in to view images. Log in or Register.]
With the simplicity of writing mouse/keyboard input bot programs, I wouldn't be surprised if some of the hardcores were entirely automated and responding to parses of the log file. The only minor complications are implementing intelligent enough NLP algorithms to handle players sending tells trying to buy a good and being able to recognize what they're interested in and how much they're offering (and generating appropriate responses) and then implementing a character recognition from image algorithm to handle decisions on where to click the mouse based on this information. Quite an interesting machine learning application.
I hightly doubt that is happening, but I could be wrong.

While parsing the text is easy (my auction tracker does it from the log files to add the item links - the wiki one does it to pull prices related to items) having an image algorithm as you mentioned sounds like it would be nearly impossible to write since some items share the same icons when put in trade windows - although someone writing those "easy" mouse/keyboard input programs to detect where to click on the screen could probably just mouse over the icon area, run OCR over the item hover tip and approve/deny the trade based on what else is in the window, amirite?

Edit: A simple implementation to avoid having to stare at the screen however would be to turn on /log and have something (grep) parse for messages to you and when encountered send off an alert via text, IM or email - although repeating your /auc would require external macroing which is illegal in p99 tos.
__________________
Realtime auction logger: http://ahungry.com/eqauctions/
Last edited by tristantio; 03-02-2012 at 03:00 PM..
  #7  
Old 03-02-2012, 03:59 PM
Grozmok Grozmok is offline
Fire Giant

Grozmok's Avatar

Join Date: Jan 2012
Location: Left Coast
Posts: 826
Default

lol

I log on my mule when I can't give the PC 100% of my attention. I hit the WTB macro button in the UI every so often. If I see an item I want/need or an item that is a blow out price, I'll scoop it up.

Simple as that, really.
__________________

Quote:
Originally Posted by Milo Cooper, Senior Artist, SOE
Shut up and give me my ten bucks per month, little man. My Porsche needs some performance upgrades.
  #8  
Old 03-03-2012, 09:17 PM
username1337 username1337 is offline
Aviak


Join Date: Feb 2012
Posts: 73
Default

Quote:
Originally Posted by tristantio [You must be logged in to view images. Log in or Register.]
I hightly doubt that is happening, but I could be wrong.

While parsing the text is easy (my auction tracker does it from the log files to add the item links - the wiki one does it to pull prices related to items) having an image algorithm as you mentioned sounds like it would be nearly impossible to write since some items share the same icons when put in trade windows - although someone writing those "easy" mouse/keyboard input programs to detect where to click on the screen could probably just mouse over the icon area, run OCR over the item hover tip and approve/deny the trade based on what else is in the window, amirite?

Edit: A simple implementation to avoid having to stare at the screen however would be to turn on /log and have something (grep) parse for messages to you and when encountered send off an alert via text, IM or email - although repeating your /auc would require external macroing which is illegal in p99 tos.
Your EDIT solution is a good legal alternative. Use data for average sale prices and send e-mail or text message if parse of log detects item being sold for a certain number of standard deviations from that average.
Closed Thread


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 06:46 AM.


Everquest is a registered trademark of Daybreak Game Company LLC.
Project 1999 is not associated or affiliated in any way with Daybreak Game Company LLC.
Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.