Board index
Programs with AI or Rules Enforcement
Magic: The Gathering - Duels of the Planeswalkers
New MTG Cards and Decks (2010, 2012, 2013, 2014, 2015, Magic Duels)
2013




Thefiremind's DotP2013 DLC v9 (27/5/2013)
Moderator: CCGHQ Admins
Re: Thefiremind's DotP2013 DLC v7 (18/02/2013)
by Meioh » 21 Feb 2013, 16:17
Welp i'm hella dumb.thefiremind wrote:You wrote in the wrong topic but thanks anyway!Meioh wrote:Yay new decks!
I love your decks - even if some of them might not be the strongest around. They all have really fun strats - and that's what i'm looking for in a game like this. Not the whole solitaire-esque Eldrazi on first turn bs decks people seem to be fond of nowadays.
While we're at it though, i was trying the new 5 color deck and i noticed most effects regarding multi-coloured permas aren't working - i.e. might of the nephilim, gloryscale viashino, etc.
I have both corefixes, and i've seen gloryscale working on another deck >:. Dunno what's up with that.
EDIT: might as well bring the discussion here
Re: Thefiremind's DotP2013 DLC v7 (18/02/2013)
by thefiremind » 21 Feb 2013, 16:29
You are the second who reports that, and here's my previous answer:Meioh wrote:i was trying the new 5 color deck and i noticed most effects regarding multi-coloured permas aren't working - i.e. might of the nephilim, gloryscale viashino, etc.
Since those cards work perfectly for me, I can't understand the problem until someone posts his SCRIPT_LOG.TXT.thefiremind wrote:They all use the ColourCount function from GENERAL_FUNCTIONS.LOL. Either you are using my cards in another mod without including my LOL files, or you have another ColourCount function in another mod. Post your SCRIPT_LOG.TXT if you find it in the game directory.
< Former DotP 2012/2013/2014 modder >
Currently busy with life...
Currently busy with life...
-
thefiremind - Programmer
- Posts: 3515
- Joined: 07 Nov 2011, 10:55
- Has thanked: 118 times
- Been thanked: 722 times
Re: Thefiremind's DotP2013 DLC v7 (18/02/2013)
by Meioh » 21 Feb 2013, 16:38
SCRIPT_LOG.TXT
- (946.2 KiB) Downloaded 276 times
Re: Thefiremind's DotP2013 DLC v7 (18/02/2013)
by thefiremind » 21 Feb 2013, 16:58
This means that the function isn't even seen. I'm wondering if LOL filenames must be unique through different mods... I don't have any other GENERAL_FUNCTIONS.LOL in other modders' folders but maybe it's in a mod that I didn't download (or update). Try to download and extract my latest temporary patch and see if it helps.attempt to call global 'ColourCount' (a nil value)
< Former DotP 2012/2013/2014 modder >
Currently busy with life...
Currently busy with life...
-
thefiremind - Programmer
- Posts: 3515
- Joined: 07 Nov 2011, 10:55
- Has thanked: 118 times
- Been thanked: 722 times
Re: Thefiremind's DotP2013 DLC v7 (18/02/2013)
by Meioh » 21 Feb 2013, 17:24
Oh, they work now with your temp patch!
Thank you C:!
Thank you C:!
Re: Thefiremind's DotP2013 DLC v7 (18/02/2013)
by RiiakShiNal » 22 Feb 2013, 03:14
I had suspected that at least some filenames are unique through all mods ever since we discovered that the game only recognizes one APPID_LINKING.TXT throughout all mods. This would seem to confirm that suspicion at least for LOL files.thefiremind wrote:This means that the function isn't even seen. I'm wondering if LOL filenames must be unique through different mods... I don't have any other GENERAL_FUNCTIONS.LOL in other modders' folders but maybe it's in a mod that I didn't download (or update).
Though as a precaution I always prefixed my LOL files to basically ensure they would be unique, I also did that with all my functions (though not my constants to keep with the existing constant naming patterns) to both prevent conflicts and to ensure there is no ambiguous code mapping.
Changing your files at this point would probably be fairly time consuming not to mention the other mods it might break due to them referencing your functions. So doing a major overhaul may not be worth (should have no problems prefixing your files though), but at the very least for future functions you write I recommend prefixing both the files and the functions themselves.
Just getting started: Xander9009's DotP 2014 Community Wad
Need a deck builder: DotP 2014 Deck Builder
Problems Modding: DotP 2014 Frequent Modding Mistakes
Need a deck builder: DotP 2014 Deck Builder
Problems Modding: DotP 2014 Frequent Modding Mistakes
- RiiakShiNal
- Programmer
- Posts: 2188
- Joined: 16 May 2011, 21:37
- Has thanked: 75 times
- Been thanked: 497 times
Re: Thefiremind's DotP2013 DLC v7 (18/02/2013)
by Threepwood » 22 Feb 2013, 13:39
Venser, Shaper Savant, doesn't give the dialogue to target a spell because of wrong number of arguments.
In the following section, ChooseTargetWithFlags() should probably be ChooseTarget().
In the following section, ChooseTargetWithFlags() should probably be ChooseTarget().
- Code: Select all
<PLAY_TIME_ACTION target_choosing="1">
if EffectDC():Get_Int(5) == 0 then
EffectController():ChooseTargetWithFlags( 0, "CARD_QUERY_CHOOSE_SPELL", EffectDC():Make_Targets(0) )
else
EffectController():ChooseTarget( 1, "CARD_QUERY_CHOOSE_PERMANENT_TO_PUT_INTO_HAND", EffectDC():Make_Targets(0) )
end
</PLAY_TIME_ACTION>
--------------------------------------------------------------------------------------------------
I like having low self-esteem, it makes me feel special.
I like having low self-esteem, it makes me feel special.
-
Threepwood - Posts: 22
- Joined: 22 Jul 2012, 13:57
- Has thanked: 4 times
- Been thanked: 4 times
Re: Thefiremind's DotP2013 DLC v7 (18/02/2013)
by thefiremind » 22 Feb 2013, 13:46
Sometimes I think I would make less errors by writing all the code from scratch instead of copy-pasting so much... but it would also take me much longer to make the cards, so I'll still copy-paste.
Fix included.

< Former DotP 2012/2013/2014 modder >
Currently busy with life...
Currently busy with life...
-
thefiremind - Programmer
- Posts: 3515
- Joined: 07 Nov 2011, 10:55
- Has thanked: 118 times
- Been thanked: 722 times
Re: Thefiremind's DotP2013 DLC v7 (18/02/2013)
by NEMESiS » 24 Feb 2013, 02:20
Agent of Masks has the power and toughness backwards.
-
NEMESiS - Posts: 460
- Joined: 03 Jan 2013, 04:02
- Location: Pools of Becoming
- Has thanked: 70 times
- Been thanked: 21 times
Re: Thefiremind's DotP2013 DLC v7 (18/02/2013)
by thefiremind » 24 Feb 2013, 10:15
The funny thing is that I was really sure it was 3/2...NEMESiS wrote:Agent of Masks has the power and toughness backwards.

< Former DotP 2012/2013/2014 modder >
Currently busy with life...
Currently busy with life...
-
thefiremind - Programmer
- Posts: 3515
- Joined: 07 Nov 2011, 10:55
- Has thanked: 118 times
- Been thanked: 722 times
Re: Thefiremind's DotP2013 DLC v7 (18/02/2013)
by NEMESiS » 27 Feb 2013, 21:31
OK, I found a bug in the strangest of fashions. lol Somebody posted this video about your flickering tactics deck and it seems that at 16:50 you can see Kor Hookmaster tapping itself, should be only opponents.
http://www.youtube.com/watch?v=pslGZBMOl38
http://www.youtube.com/watch?v=pslGZBMOl38
-
NEMESiS - Posts: 460
- Joined: 03 Jan 2013, 04:02
- Location: Pools of Becoming
- Has thanked: 70 times
- Been thanked: 21 times
Re: Thefiremind's DotP2013 DLC v7 (18/02/2013)
by thefiremind » 27 Feb 2013, 21:42
I feel popular!NEMESiS wrote:OK, I found a bug in the strangest of fashions. lol Somebody posted this video about your flickering tactics deck and it seems that at 16:50 you can see Kor Hookmaster tapping itself, should be only opponents.
http://www.youtube.com/watch?v=pslGZBMOl38


< Former DotP 2012/2013/2014 modder >
Currently busy with life...
Currently busy with life...
-
thefiremind - Programmer
- Posts: 3515
- Joined: 07 Nov 2011, 10:55
- Has thanked: 118 times
- Been thanked: 722 times
Re: Thefiremind's DotP2013 DLC v7 (18/02/2013)
by Whizard » 28 Feb 2013, 14:59
You are a m*f*n genious. Thats all I can say. 

Re: Thefiremind's DotP2013 DLC v7 (18/02/2013)
by ptisan35700 » 28 Feb 2013, 20:16
Hello, this may or may not have been answered before, but with these decks, they all say 0/10 unlocked, but a victory does not unlock any cards. In the deck manager, no "Unlock" button shows, and although there is a "Premium foil deck" button, it doesn't seem to do anything. I've also tried it with and without the unlock files.
I don't know if I'm having a conflict with any of the other decks/wad files (I've installed pretty much all the major ones, haha), but I would appreciate any help. I'm using the Theta version, by the way.
Thanks.
I don't know if I'm having a conflict with any of the other decks/wad files (I've installed pretty much all the major ones, haha), but I would appreciate any help. I'm using the Theta version, by the way.
Thanks.
- ptisan35700
- Posts: 23
- Joined: 08 Aug 2011, 21:06
- Has thanked: 1 time
- Been thanked: 0 time
Re: Thefiremind's DotP2013 DLC v7 (18/02/2013)
by thefiremind » 28 Feb 2013, 20:34
Reading the first post would help...ptisan35700 wrote:Hello, this may or may not have been answered before, but with these decks, they all say 0/10 unlocked, but a victory does not unlock any cards. In the deck manager, no "Unlock" button shows, and although there is a "Premium foil deck" button, it doesn't seem to do anything. I've also tried it with and without the unlock files.
I don't know if I'm having a conflict with any of the other decks/wad files (I've installed pretty much all the major ones, haha), but I would appreciate any help. I'm using the Theta version, by the way.
Thanks.
thefiremind wrote:"Promo edition" decks: They don't contain anything more than the "regular edition", but the unlockables are coded as promo cards. This way, the unlocks will be forever unlocked after inserting the 10 promo codes...

< Former DotP 2012/2013/2014 modder >
Currently busy with life...
Currently busy with life...
-
thefiremind - Programmer
- Posts: 3515
- Joined: 07 Nov 2011, 10:55
- Has thanked: 118 times
- Been thanked: 722 times
Who is online
Users browsing this forum: No registered users and 319 guests