Can someone post a code for Veteran Explorer

For all your questions regarding Image Card Coding.
Please read the Image Posting Guideline & Index before posting in this forum.
Forum rules
DO NOT POST BUG REPORT IN THIS FORUM !!

Please read carefully the forum rules related to the card coding section : viewtopic.php?f=21&t=1545

All post will be edited to follow forum rules.
Locked
sandman423
Posts: 806
Joined: Thu Sep 10, 2009 8:59 pm

Can someone post a code for Veteran Explorer

Post by sandman423 »

Can someone give me a code for it? I thought I had it in my Wagic game but so far no.

Veteran Explorer
Creature — Human Soldier Scout 1/1, G (1)
When Veteran Explorer dies, each player may search his or her library for up to two basic land cards and put them onto the battlefield. Then each player who searched his or her library this way shuffles it.
User avatar
Bas
Posts: 425
Joined: Sat Dec 26, 2015 10:55 pm
Location: Germany

Re: Can someone post a code for Veteran Explorer

Post by Bas »

I might look into it, but doesn't look complicated.

Feel free to try it yourself - Just go into your mtg.txt in sets/primitives and look for things that trigger on death, rampaging growth and a spell that targets both players. That#s how I "code" most the time.
Forums are down atm.

Please join the discord server in order to not miss stuff and be reachable:
https://discord.gg/JHK5pVaK5p

(You are not required to install the software, you can use it in a browser as well, albeit I recommend installing)
i-am-not-one
Posts: 304
Joined: Fri Dec 07, 2012 4:36 am

Re: Can someone post a code for Veteran Explorer

Post by i-am-not-one »

I thought Bas had beaten me to it.

I do not do a lot of card coding but this looked straight forward. I have not tried it out. Let me know if there are any problems with the card code. The "each player" is a bit of a twist :D


[card]
name=Veteran Explorer
auto=@movedTo(this|graveyard) from(battlefield):target(<upto:2>land[basic]|mylibrary) moveTo(mybattlefield) all(player)
text=When Veteran Explorer dies, each player may search his or her library for up to two basic land cards and put them onto the battlefield. Then each player who searched his or her library this way shuffles it.
mana={G}
type=Creature
subtype=Human Soldier Scout
power=1
toughness=1
[/card]

p.s I based it on Academy Rector and Armillary Sphere
sandman423
Posts: 806
Joined: Thu Sep 10, 2009 8:59 pm

Re: Can someone post a code for Veteran Explorer

Post by sandman423 »

It works but I am getting a blue screen when I put the two forests on the battlefield.
i-am-not-one
Posts: 304
Joined: Fri Dec 07, 2012 4:36 am

Re: Can someone post a code for Veteran Explorer

Post by i-am-not-one »

Sorry I have been busy and still have not had a chance to test it myself.

End of this week work should ease up.

p.s Thanks for testing it out for me. Will try and get it fixed up for you.
sandman423
Posts: 806
Joined: Thu Sep 10, 2009 8:59 pm

Re: Can someone post a code for Veteran Explorer

Post by sandman423 »

take your time and thank you.
User avatar
Bas
Posts: 425
Joined: Sat Dec 26, 2015 10:55 pm
Location: Germany

Re: Can someone post a code for Veteran Explorer

Post by Bas »

Maybe without the :

?
Forums are down atm.

Please join the discord server in order to not miss stuff and be reachable:
https://discord.gg/JHK5pVaK5p

(You are not required to install the software, you can use it in a browser as well, albeit I recommend installing)
Zethfox
Posts: 3029
Joined: Thu Jun 10, 2010 11:28 pm

Re: Can someone post a code for Veteran Explorer

Post by Zethfox »

you can try this. if the card only gave you the option i would say its supportable for sure, however its for each player. this should place a new ability on the stack for you and for your opponent that opens a menu that saids fetch.

[card]
name=Veteran Explorer
auto=@movedTo(this|graveyard) from(battlefield):name(Put Lands in Play) ability$!name(Fetch) target(<upto:2>land[basic]|mylibrary) moveTo(mybattlefield)!$ opponent
auto=@movedTo(this|graveyard) from(battlefield):name(Put Lands in Play) ability$!name(Fetch) target(<upto:2>land[basic]|mylibrary) moveTo(mybattlefield)!$ controller
text=When Veteran Explorer dies, each player may search his or her library for up to two basic land cards and put them onto the battlefield. Then each player who searched his or her library this way shuffles it.
mana={G}
type=Creature
subtype=Human Soldier Scout
power=1
toughness=1
[/card]
Locked