It is currently 24 Apr 2024, 06:14
   
Text Size

Volrathxp's Custom Dotp 2014 DLC (Last Update: 12/6/2014)

Moderator: CCGHQ Admins

Re: Volrathxp's Custom Dotp 2014 DLC (Last Update: 9/29/2014

Postby NeoAnderson » 02 Oct 2014, 04:20

volrathxp wrote:Thanks guys. :D
I will look into any bugs as I can.
Congratulation for the baby my friend! =D> =D> =D> =D> =D> !!!
NeoAnderson
 
Posts: 914
Joined: 10 Sep 2013, 07:49
Has thanked: 18 times
Been thanked: 139 times

Re: Volrathxp's Custom Dotp 2014 DLC (Last Update: 9/29/2014

Postby Kithkin » 02 Oct 2014, 05:55

The baby has arrived? A cradle full of best wishes for your newborn.
User avatar
Kithkin
 
Posts: 456
Joined: 21 Feb 2014, 07:12
Location: Cologne, GERMANY
Has thanked: 11 times
Been thanked: 56 times

Re: Volrathxp's Custom Dotp 2014 DLC (Last Update: 9/29/2014

Postby CalT2410 » 02 Oct 2014, 14:55

Congratulations on the kid!
In other news, I found out today that Crackling Doom, at the moment, functions as a rather overcosted Shock. The opponent is not forced to sac a creature.
CalT2410
 
Posts: 25
Joined: 23 Sep 2014, 06:07
Has thanked: 0 time
Been thanked: 0 time

Re: Volrathxp's Custom Dotp 2014 DLC (Last Update: 9/29/2014

Postby Kithkin » 02 Oct 2014, 17:35

Bug report

I played the Ramaz boss fight with Chandra (AI). I cast Dragon Mantle onto one of her dragons. Then the AI activated +1/+0 ad infinitum, although it had no mana to tap. I had to quit.

Mardu Charm -- [CHOOSE_CREATURE_4_DAMAGE]
User avatar
Kithkin
 
Posts: 456
Joined: 21 Feb 2014, 07:12
Location: Cologne, GERMANY
Has thanked: 11 times
Been thanked: 56 times

Re: Volrathxp's Custom Dotp 2014 DLC (Last Update: 9/29/2014

Postby volrathxp » 05 Oct 2014, 21:59

I am alive! Heh.

We're chugging along with our new addition, and life is good.

I am going to be posting a bugfix update soon, in addition to some new decks (Standard legal stuff!).
volrathxp
User avatar
volrathxp
 
Posts: 362
Joined: 23 Jul 2014, 17:34
Has thanked: 9 times
Been thanked: 17 times

Re: Volrathxp's Custom Dotp 2014 DLC (Last Update: 10/5/2014

Postby volrathxp » 05 Oct 2014, 22:30

Made an update with bug fixes and new decks! See the changelog, as always.

All WADS updated!
volrathxp
User avatar
volrathxp
 
Posts: 362
Joined: 23 Jul 2014, 17:34
Has thanked: 9 times
Been thanked: 17 times

Re: Volrathxp's Custom Dotp 2014 DLC (Last Update: 10/5/2014

Postby Kithkin » 06 Oct 2014, 07:01

Good to have you back :D

I have noticed a "new" deck: Howl of the Horde, dated 27/09/14. Did you mean to upload it, or did you forget to include it earlier?
User avatar
Kithkin
 
Posts: 456
Joined: 21 Feb 2014, 07:12
Location: Cologne, GERMANY
Has thanked: 11 times
Been thanked: 56 times

Re: Volrathxp's Custom Dotp 2014 DLC (Last Update: 10/5/2014

Postby thefiremind » 06 Oct 2014, 08:47

Kithkin wrote:I have noticed a "new" deck: Howl of the Horde, dated 27/09/14. Did you mean to upload it, or did you forget to include it earlier?
I saw on the changelog that he had problems with Howl of the Horde. I checked the card now, and I still see a problem, but it's not a "card-breaking" problem, it's just a ruling problem: the raid condition should be checked when the spell resolves, not inside the delayed trigger. If you play Howl of the Horde on main phase 1, then you don't cast any other spell, attack, and cast a spell on main phase 2, you shouldn't get to copy it twice, because you hadn't attacked yet when you played Howl of the Horde.
Gatherer rulings talk about 2 separate delayed triggered abilities, but if waiting for 2 resolutions annoys you, you can get away with just one by using a little trick:
Code: Select all
  <SPELL_ABILITY>
    <LOCALISED_TEXT LanguageCode="en-US"><![CDATA[When you cast your next instant or sorcery spell this turn, copy that spell. You may choose new targets for the copy.]]></LOCALISED_TEXT>
    <RESOLUTION_TIME_ACTION>
    local delayDC = EffectDC():Make_Chest(1)
    local interrogation = MTG():ClearInterrogationQuery()
    interrogation:SetPlayer( EffectController() )
    if interrogation:Test(INTERROGATE_ATTACKS, INTERROGATE_THIS_TURN) then
       delayDC:Set_Int(1, 1) -- repeat 1 additional time
    end
    MTG():CreateDelayedTrigger(1, delayDC)
    </RESOLUTION_TIME_ACTION>
  </SPELL_ABILITY>
  <TRIGGERED_ABILITY resource_id="1">
    <CLEANUP fire_once="1" simple_cleanup="EndOfTurn" />
    <TRIGGER value="SPELL_PLAYED" simple_qualifier="controller">
    local tobj = TriggerObject()
    if tobj:GetCardType():Test(CARD_TYPE_INSTANT) or tobj:GetCardType():Test(CARD_TYPE_SORCERY) then
       EffectDC():Make_Chest(0):CopyFrom( tobj:GetDataChest() )
       return true
    end
    return false
    </TRIGGER>
    <RESOLUTION_TIME_ACTION repeating="1">
    local tobj = TriggerObjectLKI()
    if tobj ~= nil then
       local copy = EffectController():CopySpell( tobj, EffectDC():Get_Chest(0) )
       EffectController():ChooseNewTargets(copy)
    end
    local repeat = EffectDC():Get_Int(1)
    if repeat &gt; 0 then
       EffectDC():Int_Dec(1) -- decrease the number
       return true -- repeat the action
    end
    return false -- don't repeat the action
    </RESOLUTION_TIME_ACTION>
  </TRIGGERED_ABILITY>
  <SPELL_ABILITY>
    <LOCALISED_TEXT LanguageCode="en-US"><![CDATA[Raid — If you attacked with a creature this turn, when you cast your next instant or sorcery spell this turn, copy that spell an additional time. You may choose new targets for the copy.]]></LOCALISED_TEXT>
  </SPELL_ABILITY>
This code is quite reusable, if you ever encounter another card that asks you to repeat something in a delayed trigger you can use the same template (even for repeating it more than 1 additional time).
< 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: 721 times

Re: Volrathxp's Custom Dotp 2014 DLC (Last Update: 10/5/2014

Postby volrathxp » 06 Oct 2014, 12:09

Yeah I forgot to add that deck to the list.

Also thanks TFM for the help there, I will post a fix for it soon.
volrathxp
User avatar
volrathxp
 
Posts: 362
Joined: 23 Jul 2014, 17:34
Has thanked: 9 times
Been thanked: 17 times

Re: Volrathxp's Custom Dotp 2014 DLC (Last Update: 10/5/2014

Postby Kithkin » 06 Oct 2014, 15:48

After the update, the exe crashes to destop.

RSN's deck builder error.log:
| Open
06.10.2014 17:43:33: Log Opened.
06.10.2014 17:43:33: Low: Can't find referenced card: VOYAGING_SATYR_627355 for deck D14_100067_GR_DEVOTION in Data_Decks_100067_GR_DEVOTION
06.10.2014 17:43:33: Low: Can't find referenced card: VOYAGING_SATYR_627355 for deck D14_100067_GR_DEVOTION in Data_Decks_100067_GR_DEVOTION
06.10.2014 17:43:33: Low: Can't find referenced card: VOYAGING_SATYR_627355 for deck D14_100067_GR_DEVOTION in Data_Decks_100067_GR_DEVOTION
06.10.2014 17:43:33: Low: Can't find referenced card: VOYAGING_SATYR_627355 for deck D14_100067_GR_DEVOTION in Data_Decks_100067_GR_DEVOTION
06.10.2014 17:44:12: Log Closed.


Edit: O.k., after removing the GR_Devotion deck, the game runs without issue.
User avatar
Kithkin
 
Posts: 456
Joined: 21 Feb 2014, 07:12
Location: Cologne, GERMANY
Has thanked: 11 times
Been thanked: 56 times

Re: Volrathxp's Custom Dotp 2014 DLC (Last Update: 10/5/2014

Postby sweetLu » 06 Oct 2014, 17:33

It looks like Voyaging Satyr is from sumomole's mod. Try adding his dlc to your mod folder
sweetLu
 
Posts: 181
Joined: 16 Jul 2014, 01:24
Has thanked: 21 times
Been thanked: 22 times

Re: Volrathxp's Custom Dotp 2014 DLC (Last Update: 10/5/2014

Postby volrathxp » 06 Oct 2014, 18:31

Did you update the other wad as well?
volrathxp
User avatar
volrathxp
 
Posts: 362
Joined: 23 Jul 2014, 17:34
Has thanked: 9 times
Been thanked: 17 times

Re: Volrathxp's Custom Dotp 2014 DLC (Last Update: 10/6/2014

Postby volrathxp » 07 Oct 2014, 01:09

Posted a bugfix update, redownload all three wads (should fix the G/R Devotion deck issue)
volrathxp
User avatar
volrathxp
 
Posts: 362
Joined: 23 Jul 2014, 17:34
Has thanked: 9 times
Been thanked: 17 times

Re: Volrathxp's Custom Dotp 2014 DLC (Last Update: 10/6/2014

Postby Cachexia » 07 Oct 2014, 07:00

Since installing the latest release, my Magic 2014 crashes upon start up.

(New to this forum format, please bear with me)

Code: Select all
10/6/2014 11:55:52 PM: Low: Can't find referenced card: SARKHAN_THE_DRAGONSPEAKER_991386650 for deck D14_100065_TEMUR_MONSTERS in Data_Decks_100065_TEMUR_MONSTERS

10/6/2014 11:55:52 PM: Low: Can't find referenced card: SARKHAN_THE_DRAGONSPEAKER_991386650 for deck D14_100067_GR_DEVOTION in Data_Decks_100067_GR_DEVOTION

10/6/2014 11:55:52 PM: Low: Can't find referenced card: SARKHAN_THE_DRAGONSPEAKER_991386650 for deck D14_100067_GR_DEVOTION in Data_Decks_100067_GR_DEVOTION

10/6/2014 11:55:52 PM: Low: Can't find referenced card: SARKHAN_THE_DRAGONSPEAKER_991386650 for deck D14_100068_JUND_MONSTERS in Data_Decks_100068_JUND_MONSTERS

10/6/2014 11:55:52 PM: Low: Can't find referenced card: SARKHAN_THE_DRAGONSPEAKER_991386650 for deck D14_100068_JUND_MONSTERS in Data_Decks_100068_JUND_MONSTERS

10/6/2014 11:55:52 PM: Low: Can't find referenced card: SARKHAN_THE_DRAGONSPEAKER_991386650 for deck D14_100069_NAYA_MIDRANGE in Data_Decks_100069_NAYA_MIDRANGE

10/6/2014 11:55:52 PM: Low: Can't find referenced card: SARKHAN_THE_DRAGONSPEAKER_991386650 for deck D14_100069_NAYA_MIDRANGE in Data_Decks_100069_NAYA_MIDRANGE
I guess this is more of an issue with TFM's Planeswalker mod? (It's installed and up to date) NeoAnderson very recently posted a fix for that card in that thread so maybe that's related.

I really have no idea where I should be looking, but removing those decks from my folder lets my game start up normally.
Cachexia
 
Posts: 16
Joined: 07 Sep 2014, 08:02
Has thanked: 5 times
Been thanked: 8 times

Re: Volrathxp's Custom Dotp 2014 DLC (Last Update: 10/6/2014

Postby Kithkin » 07 Oct 2014, 07:28

Did you check if SARKHAN_THE_DRAGONSPEAKER_991386650 is available in deck builder (PLW)?
User avatar
Kithkin
 
Posts: 456
Joined: 21 Feb 2014, 07:12
Location: Cologne, GERMANY
Has thanked: 11 times
Been thanked: 56 times

PreviousNext

Return to 2014

Who is online

Users browsing this forum: No registered users and 19 guests


Who is online

In total there are 19 users online :: 0 registered, 0 hidden and 19 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 19 guests

Login Form