It is currently 25 Apr 2024, 12:23
   
Text Size

Community Wad

Moderator: CCGHQ Admins

Re: Community Wad

Postby Yodatheugly » 28 May 2015, 15:39

Seems like Necromaster Dragon only works partially. The zombie token is put on the battlefield, but no cards are discarded.
It also seems that their is a syntax error in the morph function, when looking at the script log:

Code: Select all
[lua] [string "Content\Functions\CW_MORPH.LOL"]:148: 'end' expected (to close 'if' at line 145) near 'then'
[lua]
lua_dofile error parsing file Content\Functions\CW_MORPH.LOL
Yodatheugly
 
Posts: 18
Joined: 27 May 2015, 01:31
Location: Antwerpen, Belgium
Has thanked: 4 times
Been thanked: 0 time

Re: Community Wad

Postby Xander9009 » 28 May 2015, 16:11

Fixed and tested Necromaster Dragon. Also fixed Morph LOL file.

Tested Ghoulcaller Gisa and it works exactly as it should.

Warbringer fixed and tested, as well as every other Dash creature.

For the coders among us, please note that a <FILTER_CONDITION ... > block must go in an ability block, even if it is used in a sublock of a <COST type="Generic"> block. In other words, use this
Code: Select all
<ACTIVATED_ABILITY>
   ...
   <COST type="Generic">
      <PREREQUISITE>
         local filter = ClearFilter()
         filter:Add( FE_LUA_CONDITION, 1, EffectController(), EffectDC() )
         return filter:CountStopAt(1) == 1
      </PREREQUISITE>
      ...
   </COST>
   <FILTER_CONDITION id="1">
      return RSN_Characteristics_Get( FilteredCard(), NEO_ABILITIES_ACTIVE )
   </FILTER_CONDITION>
</ACTIVATED_ABILITY>
Do NOT use this
Code: Select all
<ACTIVATED_ABILITY>
   ...
   <COST type="Generic">
      <PREREQUISITE>
         local filter = ClearFilter()
         filter:Add( FE_LUA_CONDITION, 1, EffectController(), EffectDC() )
         return filter:CountStopAt(1) == 1
      </PREREQUISITE>
      ...
      <FILTER_CONDITION id="1">
         return RSN_Characteristics_Get( FilteredCard(), NEO_ABILITIES_ACTIVE )
      </FILTER_CONDITION>
   </COST>
</ACTIVATED_ABILITY>
The second will crash the game when it tries to load the deck in a duel.

EDIT: Forgot - I also fixed and tested Eladamri, Lord of Leaves. Also, Drakno, if you properly capitalize cards, then they're automatically highlighted.
_______________________________
Community Wad - Community Wad Website - How to Help and Report Bugs
Discord: discord.gg/4AXvHzW
User avatar
Xander9009
Programmer
 
Posts: 2905
Joined: 29 Jun 2013, 07:44
Location: Indiana, United States
Has thanked: 121 times
Been thanked: 445 times

Re: Community Wad

Postby StoneyTheBear » 28 May 2015, 16:29

Xander9009 wrote:Tested Ghoulcaller Gisa and it works exactly as it should.
Ty Xander.
User avatar
StoneyTheBear
 
Posts: 33
Joined: 22 May 2015, 04:29
Has thanked: 3 times
Been thanked: 0 time

Re: Community Wad

Postby StoneyTheBear » 28 May 2015, 22:21

Overseer of the Damned. Upon entering the battlefield. It destroys 2 creatures, instead of 1.
User avatar
StoneyTheBear
 
Posts: 33
Joined: 22 May 2015, 04:29
Has thanked: 3 times
Been thanked: 0 time

Re: Community Wad

Postby Xander9009 » 28 May 2015, 22:27

StoneyTheBear wrote:Overseer of the Damned. Upon entering the battlefield. It destroys 2 creatures, instead of 1.
Fixed.

For Shu Yun, the Silent Tempest, are you sure you had the mana available? It's worth noting that manual mana lands are not considered available mana. So, if you only have manual mana lands untapped, you won't get the prompt because you don't have enough mana. I just tested it (again) and it worked as expected.
_______________________________
Community Wad - Community Wad Website - How to Help and Report Bugs
Discord: discord.gg/4AXvHzW
User avatar
Xander9009
Programmer
 
Posts: 2905
Joined: 29 Jun 2013, 07:44
Location: Indiana, United States
Has thanked: 121 times
Been thanked: 445 times

Re: Community Wad

Postby StoneyTheBear » 28 May 2015, 22:53

Xander9009 wrote:
StoneyTheBear wrote:For Shu Yun, the Silent Tempest, are you sure you had the mana available? It's worth noting that manual mana lands are not considered available mana. So, if you only have manual mana lands untapped, you won't get the prompt because you don't have enough mana. I just tested it (again) and it worked as expected.


I too often forget about manual mana and activated abilites. I was thinking, that without mana, nothing would happen. The prompts to give the double strike triggered but I guess that since there wasn't any tapped mana, it fizzled.

P.S. Gisa does in fact work. Ty for your diligence.
User avatar
StoneyTheBear
 
Posts: 33
Joined: 22 May 2015, 04:29
Has thanked: 3 times
Been thanked: 0 time

Re: Community Wad

Postby StoneyTheBear » 29 May 2015, 02:00

Dragonlord Atarka
Ugin, the Spirit Dragon

Display incorrect rarity. Also, Atarka's ability in game reads, creature or player. Not creature or planeswalker.
User avatar
StoneyTheBear
 
Posts: 33
Joined: 22 May 2015, 04:29
Has thanked: 3 times
Been thanked: 0 time

Re: Community Wad

Postby Yodatheugly » 29 May 2015, 16:01

There's still a problem with the monuments. Silumgar Monument is able to activate both abilities, but when creating the dragon artifact, you can't actually use it in combat. You can also still use the mana ability, but I don't know if that should be possible or not.

EDIT: The flying ability does show on the card though.
Yodatheugly
 
Posts: 18
Joined: 27 May 2015, 01:31
Location: Antwerpen, Belgium
Has thanked: 4 times
Been thanked: 0 time

Re: Community Wad

Postby Xander9009 » 29 May 2015, 19:22

Yodatheugly wrote:There's still a problem with the monuments. Silumgar Monument is able to activate both abilities, but when creating the dragon artifact, you can't actually use it in combat. You can also still use the mana ability, but I don't know if that should be possible or not.

EDIT: The flying ability does show on the card though.
Why wouldn't you be able to use the mana ability? And why should you be able to use both? Only one requires it to tap, so you should be allowed to use mana produced from a monument to turn itself into a dragon.

As for attacking, did you control it since the beginning of your turn? If you played it and in the same turn turned it into a creature, then you did not control that permanent since the beginning of your turn, and it would have summoning sickness.
_______________________________
Community Wad - Community Wad Website - How to Help and Report Bugs
Discord: discord.gg/4AXvHzW
User avatar
Xander9009
Programmer
 
Posts: 2905
Joined: 29 Jun 2013, 07:44
Location: Indiana, United States
Has thanked: 121 times
Been thanked: 445 times

Re: Community Wad

Postby Kithkin » 29 May 2015, 20:33

Bug report

When you cast a card with Dash and choose to pay the mana cost, it costs nothing, i.e. the mana does not tap.
User avatar
Kithkin
 
Posts: 456
Joined: 21 Feb 2014, 07:12
Location: Cologne, GERMANY
Has thanked: 11 times
Been thanked: 56 times

Re: Community Wad

Postby Yodatheugly » 29 May 2015, 20:45

Xander9009 wrote:As for attacking, did you control it since the beginning of your turn? If you played it and in the same turn turned it into a creature, then you did not control that permanent since the beginning of your turn, and it would have summoning sickness.
Yes, I tried it for multiple turns without success.
Yodatheugly
 
Posts: 18
Joined: 27 May 2015, 01:31
Location: Antwerpen, Belgium
Has thanked: 4 times
Been thanked: 0 time

Re: Community Wad

Postby Xander9009 » 29 May 2015, 21:05

Yodatheugly wrote:
Xander9009 wrote:As for attacking, did you control it since the beginning of your turn? If you played it and in the same turn turned it into a creature, then you did not control that permanent since the beginning of your turn, and it would have summoning sickness.
Yes, I tried it for multiple turns without success.
I'm under the assumption you meant they weren't turning into creatures. That's the problem I had when I just tested them, which was the same problem I had before. I fixed it then, but apparently the monuments suffered from the same problem a couple other cards had in which I apparently forgot to move the corrected versions to the CW and only had them in my game folder, where the CW overwrote them. Either way, they should be fixed next update.

Kithkin wrote:Bug report

When you cast a card with Dash and choose to pay the mana cost, it costs nothing, i.e. the mana does not tap.
I don't get this problem, so I don't know how to fix it. I will say I noticed this /would/ be a problem and I corrected it. I thought it was before the last update, but it's possible I noticed and fixed it after the last update, and thus you just have to wait for that and try again. Let me know.
_______________________________
Community Wad - Community Wad Website - How to Help and Report Bugs
Discord: discord.gg/4AXvHzW
User avatar
Xander9009
Programmer
 
Posts: 2905
Joined: 29 Jun 2013, 07:44
Location: Indiana, United States
Has thanked: 121 times
Been thanked: 445 times

Re: Community Wad

Postby StoneyTheBear » 30 May 2015, 04:52

Ojutai's Command

Return target creature card is going to your hand. Not the battlefield.
User avatar
StoneyTheBear
 
Posts: 33
Joined: 22 May 2015, 04:29
Has thanked: 3 times
Been thanked: 0 time

Re: Community Wad

Postby Xander9009 » 30 May 2015, 23:38

StoneyTheBear wrote:Ojutai's Command

Return target creature card is going to your hand. Not the battlefield.
Hopefully fixed.
_______________________________
Community Wad - Community Wad Website - How to Help and Report Bugs
Discord: discord.gg/4AXvHzW
User avatar
Xander9009
Programmer
 
Posts: 2905
Joined: 29 Jun 2013, 07:44
Location: Indiana, United States
Has thanked: 121 times
Been thanked: 445 times

Re: Community Wad

Postby Kithkin » 31 May 2015, 19:56

Xander9009 wrote:
Kithkin wrote:When you cast a card with Dash and choose to pay the mana cost, it costs nothing, i.e. the mana does not tap.
I don't get this problem, so I don't know how to fix it. I will say I noticed this /would/ be a problem and I corrected it. I thought it was before the last update, but it's possible I noticed and fixed it after the last update, and thus you just have to wait for that and try again. Let me know.
Nope, not fixed.
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 32 guests

cron

Who is online

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

Login Form