Page 2 of 3

Re: Avacyn Restored

PostPosted: 09 May 2012, 11:11
by extreme
please push a little bit the black slider, the blacks are way too grey. Other than that it's all ok.

Re: Avacyn Restored

PostPosted: 10 May 2012, 08:24
by extreme

Re: Avacyn Restored

PostPosted: 10 May 2012, 16:03
by woogerboy21
How do you make the card tags work in the forum? Do you need to put something special around the card name for it to show up like they do in extreme's post?

Re: Avacyn Restored

PostPosted: 10 May 2012, 20:40
by extreme
it's automatic, I don't do anything, GH implemented a script or something searching for card names and recognizing them I guess. It's probably not foolproof, eg the Angel of glory's rise doesn't work.

Re: Avacyn Restored

PostPosted: 11 May 2012, 18:04
by woogerboy21
extreme wrote:it's automatic, I don't do anything, GH implemented a script or something searching for card names and recognizing them I guess. It's probably not foolproof, eg the Angel of glory's rise doesn't work.
Ah ok, I know some of the other forum's I have gone to you have to use card tags to have the card information show up. Thanks.

Re: Avacyn Restored

PostPosted: 12 May 2012, 15:43
by raphael75
Thank you guys so much for doing the HQ scans! You always do such an awesome job. Looking forward to AVR! :)

Re: Avacyn Restored

PostPosted: 12 May 2012, 15:56
by woogerboy21
raphael75 wrote:Thank you guys so much for doing the HQ scans! You always do such an awesome job. Looking forward to AVR! :)
It's almost done. Just a few more cards to track down. If no one else contributes I know I will have the missing cards probably around the end of next week or so.

Re: Avacyn Restored

PostPosted: 13 May 2012, 19:06
by mark
mark wrote:I bought a display and will unpack it in the next days. If nobody is faster than me and if missing cards are inside, I'll scan them.
no luck, so no scans from me

Re: Avacyn Restored

PostPosted: 14 May 2012, 14:29
by extreme
woogerboy, u sure those are all the tips/backs ? 11 tips and 9 backs ? They don't appear on Abugames yet.

Re: Avacyn Restored

PostPosted: 14 May 2012, 16:55
by woogerboy21
extreme wrote:woogerboy, u sure those are all the tips/backs ? 11 tips and 9 backs ? They don't appear on Abugames yet.
I have no idea how you guys calculate what all tips / backs are there but thats al the images for all the "extra" cards I pulled from the 2 boxes I opened. I can double check I didnt miss any when I get home to make sure.

Re: Avacyn Restored

PostPosted: 14 May 2012, 19:55
by JuanSolo
Is there a link where I can see or download some Avacyn Restored HQ pictures? I'am interested in a few cards that I see you are already scanned.

Thank you so much for doing this job, it's amazing!

Re: Avacyn Restored

PostPosted: 14 May 2012, 20:34
by woogerboy21
JuanSolo wrote:Is there a link where I can see or download some Avacyn Restored HQ pictures? I'am interested in a few cards that I see you are already scanned.

Thank you so much for doing this job, it's amazing!
No download location specifically but if you would like a raw scan of a particular card and have an FTP site I could put them on send me a pm and I would be willing to upload them to you. The missing cards that I had on order came in today so I should have every card in the set now.

Re: Avacyn Restored

PostPosted: 15 May 2012, 17:29
by JuanSolo
Great! =D>

I wrote you a PM with the 5 cards I'm looking for. Thank you again!

Re: Avacyn Restored

PostPosted: 15 May 2012, 22:47
by extreme
we have all the cards now. While I process them, maybe somebody can tell us how many backs and tips there are.

Re: Avacyn Restored

PostPosted: 16 May 2012, 21:06
by Ark
woogerboy21 wrote:How do you make the card tags work in the forum? Do you need to put something special around the card name for it to show up like they do in extreme's post?
If you use PHPBB, I made a script for a local player group once, that implements the [card] tag if you're interested:

Code: Select all
<span></span>
<script type="text/javascript">
   var c = "{TEXT}";
   var a = document.createElement('a');
   a.href = 'http://gatherer.wizards.com/Pages/Search/Default.aspx?name=[m/^' + c.replace(/ |%20/g, '\\\s').replace(/&#39;/g, '%27') + '$/]';
   a.target = '_blank';
   a.innerHTML = c;
   a.onmousemove = function(e) {
      if( !e ) var e = window.event;
      this.nextSibling.style.display = 'block';
      this.nextSibling.style.left = e.clientX + document.body.scrollLeft + document.documentElement.scrollLeft + 10 + 'px';
      this.nextSibling.style.top = e.clientY + document.body.scrollTop + document.documentElement.scrollTop + 30 + 'px';
   }
   a.onmouseout = function(e) {
      this.nextSibling.style.display = 'none';
   }
   var i = document.createElement('img');
   i.src = 'http://www.wizards.com/global/images/magic/general/' + c.replace(/ |%20/g, '_').replace(/,|&#39;/g, '') + '.jpg';
   i.style.position = 'absolute';
   i.style.display = 'none';
   i.style.border = 'solid 5px #000';
   var s = document.getElementsByTagName('span');
   s = s[s.length - 1];
   s.appendChild(a);
   s.appendChild(i);
   s.appendChild(document.createTextNode(' '));
</script>
That goes in the "HTML replacement" box for a "BBCode usage" like [card]{TEXT}[/card]