Marvel's Spider Man
releases on September 26, 2025!

Preorder now on CardKingdom Preorder now on TcgPlayer

Marvel's Spider Man
releases on September 26, 2025!

Preorder now on CardKingdom Preorder now on TcgPlayer
21 total results       Page 1 of 1
You must login or register to post a new reply
Posts [ 1 to 21 ]
Trade score 13 (100%)
Administrators
Registered: 18-May-2009 18:29
Posts: 3444
Hello everybody,

We've imported the newest Magic and Warhammer sets!
Izzet vs Golgari - http://deckbox.org/games/mtg/cards?f=53109
From the Vault: Realms - http://deckbox.org/games/mtg/cards?f=53110

Vessel of the Winds - http://deckbox.org/games/whi/cards?f=4332


In other news, the next release is coming along, after much delay we're getting closer. To prove we're almost here, here are a couple of screenshots from our development branch :)

Login dialog with facebook support:





Importing many cards with detailed information, and a look at the new inventory listing:





Intersection of a users' wishlist with anothers' tradelist, featuring more details:






We're excited to be close to this one, it will be our biggest release yet, with many other surprises to be discovered :P
Trade score 62 (100%)
Members
Registered: 20-Jun-2011 01:11
Posts: 848
It all looks great, Sebi! Many thanks to you and the team!
Trade score 21 (100%)
Members
Registered: 07-Feb-2012 17:58
Posts: 63
Trade score 302 (100%)
Members
Registered: 24-Aug-2011 20:55
Posts: 501
Okay, this looks amazing. Keep up the great work!
Trade score 63 (100%)
Members
Registered: 05-Feb-2012 00:21
Posts: 1406
Trade score 1214 (100%)
Members
Registered: 26-Jun-2012 15:49
Posts: 1161
You guys are making my heart melt. Truly amazing work. Keep it up!
Trade score 62 (100%)
Members
Registered: 20-Jun-2011 01:11
Posts: 848
You guys should really look at some sort of reply-required verification system for new accounts. The spam problem is starting to get out of hand.
Trade score 33 (100%)
Members
Registered: 12-Sep-2012 19:18
Posts: 21
Awesome looking changes incoming!

Thanks guys :)


A little question: Me and a friend share a collection, what would be the best way of keeping our collections in sync?
Trade score 13 (100%)
Members
Registered: 29-Aug-2012 20:03
Posts: 91
It really does look great :) Although I'm a little confused by trading opportunities part :/ I'm sure I'll figure it out.

Also the "Approximate price of cards you need from"... says the same thing under both sections in trading opportunities. Not sure if you noticed that yet or not.
Trade score 302 (100%)
Members
Registered: 24-Aug-2011 20:55
Posts: 501
Wait one second...... I just noticed this........



Does this actually list how many of each card that you are getting in other trades, right alongside how many you want in total?!
Wow. I am looking forward to this update more and more each day.


On an unrelated note about the multiple card import, would it be possible to add a "same as above" option.
For example, when RTR comes around I'm going to be importing a lot of cards, and it would be nice to not have to worry too much about the set, so being able to type something like this instead would be nice:
2, Acidic Slime, M13
3, Ajani's Sunstriker, "
1, Angelic Benediction, ", , , Foil
(Where the quote obviously means to copy the one above it)

Or, another possible option could be to have the ability to set a global value that would override all values under it, but I'm assuming that would be a lot more difficult and outside the scope of current work since you're probably just doing some standard CSV type parsing. For example:
EDITION=M13
2, Acidic Slime
3, Ajani's Sunstriker
1, Angelic Benediction, , , , Foil

EDITION=M12
1, Acidic Slime
2, Aether Adept
Trade score 13 (100%)
Members
Registered: 29-Aug-2012 20:03
Posts: 91
NullParameter wrote:Or, another possible option could be to have the ability to set a global value that would override all values under it, but I'm assuming that would be a lot more difficult and outside the scope of current work since you're probably just doing some standard CSV type parsing. For example:
EDITION=M13
2, Acidic Slime
3, Ajani's Sunstriker
1, Angelic Benediction, , , , Foil

EDITION=M12
1, Acidic Slime
2, Aether Adept

I like this option a lot and as a PHP developer I know that processing this would be easy if you read it line by line. It might not make it in the release, but this would be nice to have in a patch later.
Trade score 302 (100%)
Members
Registered: 24-Aug-2011 20:55
Posts: 501
Sillvva wrote:I like this option a lot and as a PHP developer I know that processing this would be easy if you read it line by line. It might not make it in the release, but this would be nice to have in a patch later.
Yeah, the coding definitely wouldn't be too difficult if they're doing all of their own inline parsing line by line, but I guess it depends upon how everything is setup. If each CSV line is just passed into a Card constructor or factory and that is where all of the parsing is done, then that makes it a bit more difficult. But I guess you could also just pass in a map of all currently overridden values and just take it from there.

Oh well, either way, I guess that decision and work is up to you guys sebi. :D
Trade score 13 (100%)
Administrators
Registered: 18-May-2009 18:29
Posts: 3444
NullParameter wrote:Wait one second...... I just noticed this........



Does this actually list how many of each card that you are getting in other trades, right alongside how many you want in total?!
Wow. I am looking forward to this update more and more each day.

Actually that's not exactly what it says, maybe the listing is a bit confusing and we need to clarify the table a bit. It says that the guy has 2 Absolute Law in his tradelist and you have 3 in your wishlist.

EDITION=M13
2, Acidic Slime
3, Ajani's Sunstriker
1, Angelic Benediction, , , , Foil

EDITION=M12
1, Acidic Slime
2, Aether Adept

This looks like an interesting option. I had intended to just have a standar CSV parser for the textarea, and also a possibility to upload a CSV file. But I like your ideea of a smarter input with some "meta" lines in there. Will try some things over the weekend and I'll post back :)
Trade score 302 (100%)
Members
Registered: 24-Aug-2011 20:55
Posts: 501
sebi wrote:Actually that's not exactly what it says, maybe the listing is a bit confusing and we need to clarify the table a bit. It says that the guy has 2 Absolute Law in his tradelist and you have 3 in your wishlist.
Hmmm..... yeah, then it is a little bit confusing, because I assumed that the "1" next to the the person's haves was how many they had.
So if the first number in the yellow column is how many the other person has, then what is the number in the blue column?


sebi wrote:This looks like an interesting option. I had intended to just have a standar CSV parser for the textarea, and also a possibility to upload a CSV file. But I like your ideea of a smarter input with some "meta" lines in there. Will try some things over the weekend and I'll post back :)
I look forward to an update. :)
Trade score 0 (100%)
Members
Registered: 18-Jun-2012 02:57
Posts: 62
Trade score 13 (100%)
Members
Registered: 29-Aug-2012 20:03
Posts: 91
corvair64 wrote:Eagerly awaiting RTR entry. :D

Same :)
Trade score 302 (100%)
Members
Registered: 24-Aug-2011 20:55
Posts: 501
Sillvva wrote:
corvair64 wrote:Eagerly awaiting RTR entry. :D

Same :)
Unless something changed, right now all of the card listings come from Gatherer. And sadly, Wizards doesn't usually add the new set to Gatherer until a day or two before the pre-release, so they will most likely be available between Thursday and the weekend at some point.
Trade score 0 (100%)
Members
Registered: 18-Jun-2012 02:57
Posts: 62
NullParameter wrote:
Sillvva wrote:
corvair64 wrote:Eagerly awaiting RTR entry. :D

Same :)
Unless something changed, right now all of the card listings come from Gatherer. And sadly, Wizards doesn't usually add the new set to Gatherer until a day or two before the pre-release, so they will most likely be available between Thursday and the weekend at some point.

It's here! It's here! RTR is in Gatherer :D
Trade score 302 (100%)
Members
Registered: 24-Aug-2011 20:55
Posts: 501
corvair64 wrote:It's here! It's here! RTR is in Gatherer :D
Well then, very nice! Wizards decided to be quick this time around. I'm guessing that sebi still has to trigger a regathering of the data, which may just happen automatically at night.
Trade score 0 (100%)
Members
Registered: 18-Jun-2012 02:57
Posts: 62
Trade score 0 (100%)
Members
Registered: 18-Oct-2012 00:20
Posts: 2
Very cool additions- actually, very cool site just found out about it!

Is there an ETA for these updates- specifically the importer one?

I have all my cards already on a spreadsheet (yep, crap) so I just want to bulk import them properly and the new import features is just what I want so I don't want to start adding cards and then two days from now all my effort goes down the toilet :(

Other than that amazing website :)
Posts [ 1 to 21 ]
21 total results       Page 1 of 1
You must login or register to post a new reply