It is currently 21 Jul 2025, 01:53
   
Text Size

Formal Request Thread

Moderator: CCGHQ Admins

Re: Formal Request Thread

Postby RiiakShiNal » 25 Jan 2014, 16:38

thefiremind wrote:
NeoAnderson wrote:The weird thing is that when i attack with enchanted creature or the main one, all the opponent creature at a first approach are declared as blockers, but then after a while he remove all the creatures or some of them from blocking!!!
This is the same thing that happens with my transform cards. I always thought that the bug was connected to the clone effect, but your bestow code doesn't use clone effects so I have no clue. The real question is: why do official cards work when using block restrictions against the AI? Where is the difference?
I remember this problem was reported on Taunting Elf as well which leads me to believe that this is a bug in the engine that the developers never really fixed.
RiiakShiNal
Programmer
 
Posts: 2188
Joined: 16 May 2011, 21:37
Has thanked: 75 times
Been thanked: 497 times

Re: Formal Request Thread

Postby NeoAnderson » 25 Jan 2014, 17:52

sumomole wrote:EDIT: I'm curious about how could encounter such bug, I tested your code but it seems to run fine.
I know i also have tested it, i am not a programmer, but i have a lot of fantasy! :lol:
RiiakShiNal wrote:I remember this problem was reported on Taunting Elf as well which leads me to believe that this is a bug in the engine that the developers never really fixed.
If you use my solution the bug is fixed.
Fire you could adapt my code for your trasform cards.
NeoAnderson
 
Posts: 914
Joined: 10 Sep 2013, 07:49
Has thanked: 18 times
Been thanked: 139 times

Re: Formal Request Thread

Postby thefiremind » 26 Jan 2014, 09:41

NeoAnderson wrote:If you use my solution the bug is fixed.
Fire you could adapt my code for your trasform cards.
I would be glad to do that, but the bug on my transform cards isn't about a Lure effect. How could I adapt your code in order to enforce a CHARACTERISTIC_MUST_ATTACK_EACH_TURN restriction, for example? It affects only the creature itself.
< 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: Formal Request Thread

Postby NEMESiS » 26 Jan 2014, 09:48

Hello, I would like to request Jeleva, Nephalia's Scourge please.
User avatar
NEMESiS
 
Posts: 460
Joined: 03 Jan 2013, 04:02
Location: Pools of Becoming
Has thanked: 70 times
Been thanked: 21 times

Re: Formal Request Thread

Postby NeoAnderson » 26 Jan 2014, 12:25

thefiremind wrote:
NeoAnderson wrote:If you use my solution the bug is fixed.
Fire you could adapt my code for your trasform cards.
I would be glad to do that, but the bug on my transform cards isn't about a Lure effect. How could I adapt your code in order to enforce a CHARACTERISTIC_MUST_ATTACK_EACH_TURN restriction, for example? It affects only the creature itself.
I am sorry but haven't followed the discussion about your trasforming cards, so the problem is the opposite? I mean Creature A should ATTACK_EACH_TURN but it is declared as attacker then removed from attack???
NeoAnderson
 
Posts: 914
Joined: 10 Sep 2013, 07:49
Has thanked: 18 times
Been thanked: 139 times

Re: Formal Request Thread

Postby thefiremind » 26 Jan 2014, 14:53

NeoAnderson wrote:Creature A should ATTACK_EACH_TURN but it is declared as attacker then removed from attack???
Yes. Same goes for CHARACTERISTIC_CANT_BE_BLOCKED_EXCEPT_BY_TWO_OR_MORE_CREATURES: two creatures are automatically assigned, but then the AI can remove one or all of them from blocking.
< 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: Formal Request Thread

Postby NeoAnderson » 26 Jan 2014, 15:03

thefiremind wrote:
NeoAnderson wrote:Creature A should ATTACK_EACH_TURN but it is declared as attacker then removed from attack???
Yes. Same goes for CHARACTERISTIC_CANT_BE_BLOCKED_EXCEPT_BY_TWO_OR_MORE_CREATURES: two creatures are automatically assigned, but then the AI can remove one or all of them from blocking.
About the second problem "CANT_BE_BLOCKED_EXCEPT_BY_TWO_OR_MORE_CREATURES" i think you should try the code i already posted, i think it should work, because when the AI first declare the 2 blockers, they will fire the trigger "BLOCKING" so they will be pushed to block with the characteristic "MUST_BLOCK". Just try.

About the first one i think the code can be adapted, turning the "BLOCKING" trigger into "ATTACKING" then granting to the creature the ability "MUST_ATTACK".
NeoAnderson
 
Posts: 914
Joined: 10 Sep 2013, 07:49
Has thanked: 18 times
Been thanked: 139 times

Re: Formal Request Thread

Postby thefiremind » 26 Jan 2014, 17:22

NeoAnderson wrote:About the second problem "CANT_BE_BLOCKED_EXCEPT_BY_TWO_OR_MORE_CREATURES" i think you should try the code i already posted, i think it should work, because when the AI first declare the 2 blockers, they will fire the trigger "BLOCKING" so they will be pushed to block with the characteristic "MUST_BLOCK". Just try.
This would be a bad fix because the 2 blocking creatures are picked randomly, but if the AI has more than just those 2 creatures it might want to block with a different couple.

NeoAnderson wrote:About the first one i think the code can be adapted, turning the "BLOCKING" trigger into "ATTACKING" then granting to the creature the ability "MUST_ATTACK".
You would basically grant an additional CHARACTERISTIC_MUST_ATTACK on top of the already existing CHARACTERISTIC_MUST_ATTACK_EACH_TURN: I already tried to use CHARACTERISTIC_MUST_ATTACK and manage the "each turn" manually, but the bug persists.
< 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: Formal Request Thread

Postby NeoAnderson » 26 Jan 2014, 17:56

thefiremind wrote:
NeoAnderson wrote:About the second problem "CANT_BE_BLOCKED_EXCEPT_BY_TWO_OR_MORE_CREATURES" i think you should try the code i already posted, i think it should work, because when the AI first declare the 2 blockers, they will fire the trigger "BLOCKING" so they will be pushed to block with the characteristic "MUST_BLOCK". Just try.
This would be a bad fix because the 2 blocking creatures are picked randomly, but if the AI has more than just those 2 creatures it might want to block with a different couple.
This should be still possible because that code should ensure just that the creatures first declared as blockers cannot be removed, so i think that if the AI would add other creature to the blocker it still can do it.
thefiremind wrote:
NeoAnderson wrote:About the first one i think the code can be adapted, turning the "BLOCKING" trigger into "ATTACKING" then granting to the creature the ability "MUST_ATTACK".
You would basically grant an additional CHARACTERISTIC_MUST_ATTACK on top of the already existing CHARACTERISTIC_MUST_ATTACK_EACH_TURN: I already tried to use CHARACTERISTIC_MUST_ATTACK and manage the "each turn" manually, but the bug persists.
Could you post a code of a card of yours that have this issue? I want to make some tests.
NeoAnderson
 
Posts: 914
Joined: 10 Sep 2013, 07:49
Has thanked: 18 times
Been thanked: 139 times

Re: Formal Request Thread

Postby thefiremind » 26 Jan 2014, 18:59

NeoAnderson wrote:This should be still possible because that code should ensure just that the creatures first declared as blockers cannot be removed, so i think that if the AI would add other creature to the blocker it still can do it.
It's still wrong: if AI has creatures A, B, C and D, and A+B are automatically assigned, assigning only C+D could still be the best move and the AI should be able to do that.

thefiremind wrote:Could you post a code of a card of yours that have this issue? I want to make some tests.
The code is in my mod: at first I thought that CHARACTERISTIC_MUST_ATTACK_EACH_TURN wasn't bugged, so I left Hanweir Watchkeep / Bane of Hanweir in the Werewolves deck. Then I discovered it was bugged, but I had no idea what to switch them with, so I still left them in.
< 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: Formal Request Thread

Postby NeoAnderson » 26 Jan 2014, 23:29

thefiremind wrote:
NeoAnderson wrote:This should be still possible because that code should ensure just that the creatures first declared as blockers cannot be removed, so i think that if the AI would add other creature to the blocker it still can do it.
It's still wrong: if AI has creatures A, B, C and D, and A+B are automatically assigned, assigning only C+D could still be the best move and the AI should be able to do that.

thefiremind wrote:Could you post a code of a card of yours that have this issue? I want to make some tests.
The code is in my mod: at first I thought that CHARACTERISTIC_MUST_ATTACK_EACH_TURN wasn't bugged, so I left Hanweir Watchkeep / Bane of Hanweir in the Werewolves deck. Then I discovered it was bugged, but I had no idea what to switch them with, so I still left them in.
Ok Fire i will check tomorrow, now i am going to finish the Born of the gods set.
NeoAnderson
 
Posts: 914
Joined: 10 Sep 2013, 07:49
Has thanked: 18 times
Been thanked: 139 times

Re: Formal Request Thread

Postby Necropotence » 29 Jan 2014, 03:10

hello! someone has these decks: sneak and tell deck, dredge, and ad nauseam. for dopt2014 or dopt2013. from already thank you =)

sorry if this does not go here
Necropotence
 
Posts: 24
Joined: 05 May 2013, 05:30
Has thanked: 10 times
Been thanked: 0 time

Re: Formal Request Thread

Postby AndreasD » 29 Jan 2014, 09:20

Hi all,

i´m new here and i going to rebuild my deck into the PC-game.
I nearly found all needed cards. I created some i needed but i couldn´t find this one:

Hired Torturer

Could anyone please help me?

Thanks,
Andi
AndreasD
 
Posts: 4
Joined: 29 Jan 2014, 09:17
Has thanked: 0 time
Been thanked: 0 time

Re: Formal Request Thread

Postby sumomole » 29 Jan 2014, 12:00

AndreasD wrote:Hi all,

i´m new here and i going to rebuild my deck into the PC-game.
I nearly found all needed cards. I created some i needed but i couldn´t find this one:

Hired Torturer

Could anyone please help me?

Thanks,
Andi
Hired Torturer.zip
(93.06 KiB) Downloaded 268 times
User avatar
sumomole
Programmer
 
Posts: 611
Joined: 07 Jun 2011, 08:34
Has thanked: 51 times
Been thanked: 234 times

Re: Formal Request Thread

Postby drleg3nd » 30 Jan 2014, 06:04

well I would like to request a Certain planeswalker that is on gatherer from a modder that has a nivmizzet picture :wink:
drleg3nd
 
Posts: 528
Joined: 14 May 2012, 20:05
Has thanked: 5 times
Been thanked: 30 times

PreviousNext

Return to 2014

Who is online

Users browsing this forum: No registered users and 3 guests

Main Menu

User Menu

Our Partners


Who is online

In total there are 3 users online :: 0 registered, 0 hidden and 3 guests (based on users active over the past 10 minutes)
Most users ever online was 7303 on 15 Jul 2025, 20:46

Users browsing this forum: No registered users and 3 guests

Login Form