Re: CounterSpell
But if that's the problem, shouldn't the RemoveFromGame solve that?
The diference from my code and the Isochron Scepter is the spell being played is a token vs a copy of an exiled card. That's what leads me to conclude the problem is obtaining the token doesn't copy the whole card.
More, what puzzles me is that is lets me make the choices, but it doesn't deal the damage (in the case of the Shock).
Btw:
The diference from my code and the Isochron Scepter is the spell being played is a token vs a copy of an exiled card. That's what leads me to conclude the problem is obtaining the token doesn't copy the whole card.
More, what puzzles me is that is lets me make the choices, but it doesn't deal the damage (in the case of the Shock).
Btw:
- Code: Select all
local card = MTG():ObtainToken( "SHOCK_245012", Object():GetController() )
card:RemoveFromGame()
if card:GetZone() == ZONE_REMOVED_FROM_GAME then
card:PlayFreeFromAnywhere( Object():GetController() )
end