It is currently 25 Jun 2025, 23:04
   
Text Size

Card Creation Request Thread

User-made mods in DLC (Downloadable Content) form.
Get MTG cards here for your DotP that aren't available anywhere else!

Moderator: CCGHQ Admins

Re: Card Creation Request Thread

Postby RiiakShiNal » 08 Jun 2013, 15:10

Well, there are a few problems:
  • You have filter:SetPlayer( EffectController() ), but you don't want to limit it to only looking at cards controlled by the person who cast the aura. That line should be removed.
  • You are missing an "end"
  • You use "source" which is something you have not defined. Use Object():GetParent() instead or define "source" as Object():GetParent().

Try this (I've also simplified the Trigger as MyUpkeep() which is defined in the core in EXTRACTINFO.LOL):
Code: Select all
  <TRIGGERED_ABILITY>
    <!-- Snipped Localized Text -->
    <TRIGGER value="BEGINNING_OF_STEP" simple_qualifier="controller">
      return MyUpkeep()
    </TRIGGER>
    <RESOLUTION_TIME_ACTION>
      local source = Object():GetParent()
      local filter = Object():GetFilter()
      filter:Clear()
      filter:NotTargetted()
      filter:AddCardType( CARD_TYPE_ENCHANTMENT )
      filter:AddSubType( ENCHANTMENT_TYPE_AURA )
      filter:SetParent( source )
      filter:SetZone( ZONE_IN_PLAY )
      local total = filter:EvaluateObjects()
      if total &gt; 0 then
        for i=0,total-1 do
          local card = filter:GetNthEvaluatedObject(i)
          if card ~= nil then
            card:ReturnToOwnersHand()
          end
        end
      end
      source:ReturnToOwnersHand()
    </RESOLUTION_TIME_ACTION>
  </TRIGGERED_ABILITY>
RiiakShiNal
Programmer
 
Posts: 2188
Joined: 16 May 2011, 21:37
Has thanked: 75 times
Been thanked: 497 times

Re: Card Creation Request Thread

Postby gorem2k » 08 Jun 2013, 15:45

Vasht wrote:
Vasht wrote:Hi,

i would like to request The Tabernacle at Pendrell Vale, Chalice of the Void and Tyrant of Discord :). Thx
Second Try :wink:
just made Chalice of the Void, I'm not a pro programmer but this should work.

XML Code | Open
Code: Select all
<?xml version='1.0'?>
<CARD_V2>
  <FILENAME text="CHALICE_OF_THE_VOID_370411" />
  <CARDNAME text="CHALICE_OF_THE_VOID" />
  <TITLE>
    <LOCALISED_TEXT LanguageCode="en-US"><![CDATA[Chalice of the Void]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="fr-FR"><![CDATA[Chalice of the Void]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="es-ES"><![CDATA[Chalice of the Void]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="de-DE"><![CDATA[Chalice of the Void]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="it-IT"><![CDATA[Chalice of the Void]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="jp-JA"><![CDATA[Chalice of the Void]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="ko-KR"><![CDATA[Chalice of the Void]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="ru-RU"><![CDATA[Chalice of the Void]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="pt-BR"><![CDATA[Chalice of the Void]]></LOCALISED_TEXT>
  </TITLE>
  <MULTIVERSEID value="370411" />
  <ARTID value="A370411" />
  <ARTIST name="Mark Zug" />
  <CASTING_COST cost="{X}{X}" />
  <TYPE metaname="Artifact" />
  <EXPANSION value="MMA" />
  <RARITY metaname="R" />
  <TRIGGERED_ABILITY internal="1" pre_trigger="1" filter_zone="ZONE_IN_PLAY" active_zone="ZONE_TRANSITION">
    <LOCALISED_TEXT LanguageCode="en-US"><![CDATA[Chalice of the Void enters the battlefield with X charge counters on it.]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="fr-FR"><![CDATA[Chalice of the Void enters the battlefield with X charge counters on it.]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="es-ES"><![CDATA[Chalice of the Void enters the battlefield with X charge counters on it.]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="de-DE"><![CDATA[Chalice of the Void enters the battlefield with X charge counters on it.]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="it-IT"><![CDATA[Il Calice del Nulla entra nel campo di battaglia con X segnalini carica.]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="jp-JA"><![CDATA[Chalice of the Void enters the battlefield with X charge counters on it.]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="ko-KR"><![CDATA[Chalice of the Void enters the battlefield with X charge counters on it.]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="ru-RU"><![CDATA[Chalice of the Void enters the battlefield with X charge counters on it.]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="pt-BR"><![CDATA[Chalice of the Void enters the battlefield with X charge counters on it.]]></LOCALISED_TEXT>
    <TRIGGER value="ZONECHANGE_TRANSITION" simple_qualifier="self" to_zone="ZONE_IN_PLAY" />
    <RESOLUTION_TIME_ACTION>
    if MTG():ObjectDataChest_NoJIT() ~= nil then
       local x = MTG():ObjectDataChest():Get_Int( COMPARTMENT_ID_X )
       Object():AddCounters( MTG():ChargeCounters(), x )
       MTG():ObjectDataChest():Set_Int( COMPARTMENT_ID_X, 0 )
    end
    </RESOLUTION_TIME_ACTION>
  </TRIGGERED_ABILITY>
  <TRIGGERED_ABILITY filter_zone="ZONE_IN_PLAY">
    <LOCALISED_TEXT LanguageCode="en-US"><![CDATA[Whenever a player casts a spell with converted mana cost equal to the number of charge counters on Chalice of the Void, counter that spell.]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="fr-FR"><![CDATA[Whenever a player casts a spell with converted mana cost equal to the number of charge counters on Chalice of the Void, counter that spell.]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="es-ES"><![CDATA[Whenever a player casts a spell with converted mana cost equal to the number of charge counters on Chalice of the Void, counter that spell.]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="de-DE"><![CDATA[Whenever a player casts a spell with converted mana cost equal to the number of charge counters on Chalice of the Void, counter that spell.]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="it-IT"><![CDATA[Ogniqualvolta un giocatore lancia una magia con costo di mana convertito pari al numero di segnalini carica presenti sul Calice del Nulla, neutralizza quella magia.]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="jp-JA"><![CDATA[Whenever a player casts a spell with converted mana cost equal to the number of charge counters on Chalice of the Void, counter that spell.]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="ko-KR"><![CDATA[Whenever a player casts a spell with converted mana cost equal to the number of charge counters on Chalice of the Void, counter that spell.]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="ru-RU"><![CDATA[Whenever a player casts a spell with converted mana cost equal to the number of charge counters on Chalice of the Void, counter that spell.]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="pt-BR"><![CDATA[Whenever a player casts a spell with converted mana cost equal to the number of charge counters on Chalice of the Void, counter that spell.]]></LOCALISED_TEXT>
    <TRIGGER value="SPELL_PLAYED" />
    <TARGET_DEFINITION id="0">
     local nc = Object():CountCounters( MTG():ChargeCounters() )
     local filter = Object():GetFilter()
     filter:Clear()
     filter:SetZone( ZONE_STACK )
     filter:SetStackObjectType( STACK_OBJECT_CARD )
     filter:SetConvertedCostValue( nc )
    </TARGET_DEFINITION>
    <TARGET_DETERMINATION>
    return AtLeastOneTargetFromDefinition(0)
    </TARGET_DETERMINATION>
    <RESOLUTION_TIME_ACTION>
    TriggerObject():CounterSpell()
    </RESOLUTION_TIME_ACTION>
  </TRIGGERED_ABILITY>
</CARD_V2>
gorem2k
 
Posts: 464
Joined: 01 Apr 2013, 04:21
Has thanked: 48 times
Been thanked: 33 times

Re: Card Creation Request Thread

Postby thefiremind » 08 Jun 2013, 16:32

You are almost there with Chalice of the Void, but you don't need to target anything, so no TARGET blocks. Change
Code: Select all
    <TRIGGER value="SPELL_PLAYED" />
    <TARGET_DEFINITION id="0">
     local nc = Object():CountCounters( MTG():ChargeCounters() )
     local filter = Object():GetFilter()
     filter:Clear()
     filter:SetZone( ZONE_STACK )
     filter:SetStackObjectType( STACK_OBJECT_CARD )
     filter:SetConvertedCostValue( nc )
    </TARGET_DEFINITION>
    <TARGET_DETERMINATION>
    return AtLeastOneTargetFromDefinition(0)
    </TARGET_DETERMINATION>
with
Code: Select all
    <TRIGGER value="SPELL_PLAYED">
     local nc = Object():CountCounters( MTG():ChargeCounters() )
     return TriggerObject():GetConvertedManaCost() == nc
    </TRIGGER>
You should also be aware that the game can't display a double {X} cost, so you'll see just one {X}. This is only a visual bug, but it could confuse players who don't know the card.
< Former DotP 2012/2013/2014 modder >
Currently busy with life...
User avatar
thefiremind
Programmer
 
Posts: 3515
Joined: 07 Nov 2011, 10:55
Has thanked: 118 times
Been thanked: 722 times

Re: Card Creation Request Thread

Postby becauseafrica » 08 Jun 2013, 17:52

sumomole wrote:
becauseafrica wrote:
sumomole wrote:Farseek is in my mod, PARALLEL_LIVES_277047 is official card.
I have found Farseek, but Parallel Lives I don't have... could you add it to message? tnx
It's official card, you know? You don't need to find it, only need to add PARALLEL_LIVES_277047 to your deck list. :lol:
sorry, but I still cannot see it. it puts plains insted. I asume that I dont have this card in core...
becauseafrica
 
Posts: 13
Joined: 24 Jan 2012, 07:34
Has thanked: 9 times
Been thanked: 0 time

Re: Card Creation Request Thread

Postby East Bay » 08 Jun 2013, 18:06

gorem2k wrote:
thefiremind wrote:Here's my attempt at the customized AEther Vial requested by gorem2k. Let me know if it works as expected.
Perfect.
Modern Masters reprint art.. 8)
Its the same as from the vault relics. Image
User avatar
East Bay
 
Posts: 85
Joined: 17 Mar 2013, 02:05
Has thanked: 33 times
Been thanked: 30 times

Re: Card Creation Request Thread

Postby BloodReyvyn » 08 Jun 2013, 22:24

becauseafrica wrote:sorry, but I still cannot see it. it puts plains insted. I asume that I dont have this card in core...
It is part of the default game. If you have the game, you have this card because it is in the {W} {G} token deck and embedded in the game. Look in the .wad file "DECK_0076_ST.wad"
"There's an experience worse than blindness - it's the certainty that your vision is perfect and the horror that there's no world around you to see."
User avatar
BloodReyvyn
 
Posts: 421
Joined: 19 May 2013, 13:29
Has thanked: 53 times
Been thanked: 40 times

Re: Card Creation Request Thread

Postby nivmizzet1 » 09 Jun 2013, 01:58

RiiakShiNal wrote:Well, there are a few problems:
  • You have filter:SetPlayer( EffectController() ), but you don't want to limit it to only looking at cards controlled by the person who cast the aura. That line should be removed.
  • You are missing an "end"
  • You use "source" which is something you have not defined. Use Object():GetParent() instead or define "source" as Object():GetParent().
It works. Thank you!
nivmizzet1
 
Posts: 617
Joined: 21 Mar 2013, 10:10
Has thanked: 100 times
Been thanked: 25 times

Re: Card Creation Request Thread

Postby becauseafrica » 09 Jun 2013, 03:30

BloodReyvyn wrote:
becauseafrica wrote:sorry, but I still cannot see it. it puts plains insted. I asume that I dont have this card in core...
It is part of the default game. If you have the game, you have this card because it is in the {W} {G} token deck and embedded in the game. Look in the .wad file "DECK_0076_ST.wad"
I have more than 100 decks, but DECK_0076_ST.wad I dont have=(
becauseafrica
 
Posts: 13
Joined: 24 Jan 2012, 07:34
Has thanked: 9 times
Been thanked: 0 time

Re: Card Creation Request Thread

Postby BloodReyvyn » 09 Jun 2013, 03:33

becauseafrica wrote:
BloodReyvyn wrote:
becauseafrica wrote:sorry, but I still cannot see it. it puts plains insted. I asume that I dont have this card in core...
It is part of the default game. If you have the game, you have this card because it is in the {W} {G} token deck and embedded in the game. Look in the .wad file "DECK_0076_ST.wad"
I have more than 100 decks, but DECK_0076_ST.wad I dont have=(
Here's the code from the card Parallel Lives:

Code: Select all
<?xml version='1.0'?>
<CARD_V2>
  <FILENAME text="PARALLEL_LIVES_277047" />
  <CARDNAME text="PARALLEL_LIVES" />
  <TITLE>
    <LOCALISED_TEXT LanguageCode="en-US"><![CDATA[Parallel Lives]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="fr-FR"><![CDATA[Vies parallèles]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="es-ES"><![CDATA[Vidas paralelas]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="de-DE"><![CDATA[Parallel-Leben]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="it-IT"><![CDATA[Vite Parallele]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="jp-JA"><![CDATA[似通った生命]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="ko-KR"><![CDATA[평행생명]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="ru-RU"><![CDATA[Параллельные Жизни]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="pt-BR"><![CDATA[Vidas Paralelas]]></LOCALISED_TEXT>
  </TITLE>
  <MULTIVERSEID value="277047" />
  <ARTID value="139298" />
  <ARTIST name="Steve Prescott" />
  <CASTING_COST cost="{3}{G}" />
  <FLAVOURTEXT>
    <LOCALISED_TEXT LanguageCode="en-US"><![CDATA[“There will come a time when the only prey left will be each other.”
—Ulrich of Krallenhorde Pack]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="fr-FR"><![CDATA[« Le temps viendra où la seule proie restante sera l’un de nous. »
—Ulrich de la meute Krallenhorde]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="es-ES"><![CDATA[“Llegará un tiempo en que la única presa seremos nosotros mismos.”
—Ulrich de la jauría Krallenhorde]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="de-DE"><![CDATA[„Es werden Zeiten kommen, wo wir uns gegenseitig als Beute sehen werden, weil es keine andere mehr gibt.“
—Ulrich vom Krallenhordenrudel]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="it-IT"><![CDATA[“Verrà un tempo in cui le uniche prede rimaste saremo gli uni per gli altri.”
—Ulrich del Branco Krallenhorde]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="jp-JA"><![CDATA[「いずれ、残った餌食が互いのみという時が来るだろう。」
—爪の群れのウルリッチ]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="ko-KR"><![CDATA[“서로가 유일하게 남은 사냥감일 때가 올 것일세.”
—크랄렌호드 포효떼의 울리히]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="ru-RU"><![CDATA[«Наступит время, когда мы останемся друг для друга единственной добычей».
— Ульрих из Кралленордской Стаи]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="pt-BR"><![CDATA[“Chagará um momento em que nós seremos as únicas presas restantes.”
— Ulrich da Alcateia Krallenhorde]]></LOCALISED_TEXT>
  </FLAVOURTEXT>
  <TYPE metaname="Enchantment" />
  <EXPANSION value="DPG" />
  <RARITY metaname="R" />
  <TRIGGERED_ABILITY internal="1" pre_trigger="1" filter_zone="ZONE_IN_PLAY">
    <LOCALISED_TEXT LanguageCode="en-US"><![CDATA[If an effect would put one or more tokens onto the battlefield under your control, it puts twice that many of those tokens onto the battlefield instead.]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="fr-FR"><![CDATA[Si un effet devait mettre sur le champ de bataille au moins un jeton sous votre contrôle, il met sur le champ de bataille deux fois ce nombre de jetons à la place.]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="es-ES"><![CDATA[Si un efecto fuera a poner una o más fichas en el campo de batalla bajo tu control, en vez de eso, pone en el campo de batalla el doble de esas fichas.]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="de-DE"><![CDATA[Falls ein Effekt einen oder mehrere Spielsteine unter deiner Kontrolle ins Spiel bringen würde, bringt er stattdessen doppelt so viele Spielsteine ins Spiel.]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="it-IT"><![CDATA[Se un effetto sta per mettere sul campo di battaglia una o più pedine sotto il tuo controllo, mette invece sul campo di battaglia il doppio di quelle pedine.]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="jp-JA"><![CDATA[いずれかの効果により1個以上のトークンがあなたのコントロール下で戦場に出る場合、代わりにそれはその2倍の数のトークンを戦場に出す。]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="ko-KR"><![CDATA[어떤 효과가 한 개 이상의 토큰을 당신의 조종하에 전장에 놓으려 한다면, 그 대신에 그 효과는 그 숫자의 두 배만큼의 토큰을 전장에 놓는다.]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="ru-RU"><![CDATA[Если эффект должен положить одну или более фишек на поле битвы под вашим контролем, вместо этого он кладет на поле битвы в два раза больше таких фишек.]]></LOCALISED_TEXT>
    <LOCALISED_TEXT LanguageCode="pt-BR"><![CDATA[Se um efeito for colocar uma ou mais fichas no campo de batalha sob o seu controle, em vez disso, ele coloca no campo de batalha o dobro daquela quantidade de fichas.]]></LOCALISED_TEXT>
    <TRIGGER value="PLAYER_PUT_TOKENS_INTO_PLAY" simple_qualifier="controller" />
    <RESOLUTION_TIME_ACTION>
    SetAmount( GetAmount() * 2 )
    </RESOLUTION_TIME_ACTION>
  </TRIGGERED_ABILITY>
  <AI_BASE_SCORE score="1200" zone="ZONE_IN_PLAY" />
</CARD_V2>
"There's an experience worse than blindness - it's the certainty that your vision is perfect and the horror that there's no world around you to see."
User avatar
BloodReyvyn
 
Posts: 421
Joined: 19 May 2013, 13:29
Has thanked: 53 times
Been thanked: 40 times

Re: Card Creation Request Thread

Postby sumomole » 09 Jun 2013, 04:42

becauseafrica wrote:
BloodReyvyn wrote:
becauseafrica wrote:sorry, but I still cannot see it. it puts plains insted. I asume that I dont have this card in core...
It is part of the default game. If you have the game, you have this card because it is in the {W} {G} token deck and embedded in the game. Look in the .wad file "DECK_0076_ST.wad"
I have more than 100 decks, but DECK_0076_ST.wad I dont have=(
If you don't have DECK_0076_ST.wad, that means you are using an old version, you need not just a card, but need to update your game from here. :lol:
User avatar
sumomole
Programmer
 
Posts: 611
Joined: 07 Jun 2011, 08:34
Has thanked: 51 times
Been thanked: 234 times

Re: Card Creation Request Thread

Postby BloodReyvyn » 09 Jun 2013, 05:08

Ah thanks sumo, I thought all of the decks were included in the default game, even the DLC. It was cause for some ruckus when the DLC decks got spoiled shortly after release date if I remember right. Unless that was only the expansion pack and not including the deck packs.
"There's an experience worse than blindness - it's the certainty that your vision is perfect and the horror that there's no world around you to see."
User avatar
BloodReyvyn
 
Posts: 421
Joined: 19 May 2013, 13:29
Has thanked: 53 times
Been thanked: 40 times

Re: Card Creation Request Thread

Postby thefiremind » 09 Jun 2013, 08:40

BloodReyvyn wrote:Ah thanks sumo, I thought all of the decks were included in the default game, even the DLC. It was cause for some ruckus when the DLC decks got spoiled shortly after release date if I remember right. Unless that was only the expansion pack and not including the deck packs.
The Xbox versions always contain something more that just needs to be unlocked (can't remember the exact reason, I think it has something to do with a size limit for DLC), and DotP2013 had the RTR DLC decks for the player (no campaign or revenge decks, though), but the PC version didn't have anything more than the "vanilla" game.

sumomole wrote:If you don't have DECK_0076_ST.wad, that means you are using an old version, you need not just a card, but need to update your game from here. :lol:
That link only has the 3 deck packs, but not the RTR DLC. If you need that one, the only way I know is to search for the latest Theta version (v1.0dc120919). If you are running Skidrow or Theta, you'll benefit from the whole update (and if you were running Skidrow you won't need Rick's DLL anymore after that); if you are running the original Steam version, you can try to point the update to an empty folder, and if everything goes well, it should unpack exactly the WADs you are missing, which you can move to your game folder later.
< Former DotP 2012/2013/2014 modder >
Currently busy with life...
User avatar
thefiremind
Programmer
 
Posts: 3515
Joined: 07 Nov 2011, 10:55
Has thanked: 118 times
Been thanked: 722 times

Re: Card Creation Request Thread

Postby gorem2k » 09 Jun 2013, 15:09

I'd like to have Crackleburr please. it combos well with Izzet Staticaster 's and Goblin Test Pilot 's!
gorem2k
 
Posts: 464
Joined: 01 Apr 2013, 04:21
Has thanked: 48 times
Been thanked: 33 times

Re: Card Creation Request Thread

Postby thefiremind » 09 Jun 2013, 15:38

gorem2k wrote:I'd like to have Crackleburr please. it combos well with Izzet Staticaster 's and Goblin Test Pilot 's!
I hope it works, I made a lot of copy & paste which is the source of most of my errors. :lol:
Attachments
CRACKLEBURR_157420.zip
Version 2
(112.66 KiB) Downloaded 285 times
Last edited by thefiremind on 09 Jun 2013, 18:08, edited 1 time in total.
< Former DotP 2012/2013/2014 modder >
Currently busy with life...
User avatar
thefiremind
Programmer
 
Posts: 3515
Joined: 07 Nov 2011, 10:55
Has thanked: 118 times
Been thanked: 722 times

Re: Card Creation Request Thread

Postby gorem2k » 09 Jun 2013, 16:14

Tried Crackleburr, not extensively but first ability didn't work as expected.

As soon as I choose the first red creature to tap, it returned to my hand instead. this is quite a complicated code with "for" loops and stuff...

EDIT: okay, don't know what happened but now it taps itself after tapping only 1 red creature. same for blue creatures, I think it's just a number in your code that needs to be increased, maybe 3's instead of 2's somewhere? testing again..
gorem2k
 
Posts: 464
Joined: 01 Apr 2013, 04:21
Has thanked: 48 times
Been thanked: 33 times

PreviousNext

Return to New MTG Cards and Decks (2010, 2012, 2013, 2014, 2015, Magic Duels)

Who is online

Users browsing this forum: No registered users and 2 guests

cron

Main Menu

User Menu

Our Partners


Who is online

In total there are 2 users online :: 0 registered, 0 hidden and 2 guests (based on users active over the past 10 minutes)
Most users ever online was 4143 on 23 Jan 2024, 08:21

Users browsing this forum: No registered users and 2 guests

Login Form