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) 2014
Community Wad
Moderator: CCGHQ Admins
Re: Community Wad
by Legandos » 15 May 2022, 06:15
Hi guys how can i download community wad and wad art work, links are not working?? plz help me
- Legandos
- Posts: 1
- Joined: 14 May 2022, 23:26
- Has thanked: 0 time
- Been thanked: 0 time
Re: Community Wad
by Tanist » 24 Jun 2022, 19:40
Edit:
Solved the problem.
The black/missing art in various cards was due to an incomplete art wad download.
Solved the problem.
The black/missing art in various cards was due to an incomplete art wad download.
Last edited by Tanist on 25 Jun 2022, 11:05, edited 3 times in total.
Re: Community Wad
by Tanist » 24 Jun 2022, 20:10
BTW, I found a working link in the "community wad" forum under the directions on the location of the community wad in that specific sub link. Hope that helps for some people looking as I too had issues with the main websites link to the wads.
I would post the exact links, but I am new and the forum thinks I am spamming.
I would post the exact links, but I am new and the forum thinks I am spamming.
Re: Community Wad
by Scascott » 05 Jul 2022, 18:17
I'm glad you found the forum as I don't see it listed anywhere. I am thinking I need something out of that to make 2014 mod work correctly. :/
Re: Community Wad
by Huggybaby » 06 Jul 2022, 01:29
Obfuscate the link if you can, or PM it to me, or wait until you have five posts. Thanks!Scascott wrote:I'm glad you found the forum as I don't see it listed anywhere. I am thinking I need something out of that to make 2014 mod work correctly. :/
-
Huggybaby - Administrator
- Posts: 3212
- Joined: 15 Jan 2006, 19:44
- Location: Finally out of Atlanta
- Has thanked: 712 times
- Been thanked: 596 times
Re: Community Wad
by MasterXploder7 » 25 Jul 2022, 17:20
Could anyone send me the discord link? I have a new pc and don't have access to the community wad anymore. I don't know where else to find an invite.
"Hate is an everlasting wellspring from which it is eternally sustained." - Nirkana Revenant
- MasterXploder7
- Posts: 293
- Joined: 18 Jan 2014, 10:55
- Has thanked: 28 times
- Been thanked: 11 times
Re: Community Wad
by Huggybaby » 25 Jul 2022, 19:57
Here's what I could find:
https://sites.google.com/site/dotpcommunitywad/home
Last updated 2019.
Discord:
https://discord.com/invite/4AXvHzW
Files on Google Drive: https://drive.google.com/folderview?id= ... aring#list
From the Discord:
https://sites.google.com/site/dotpcommunitywad/home
Last updated 2019.
Discord:
https://discord.com/invite/4AXvHzW
Files on Google Drive: https://drive.google.com/folderview?id= ... aring#list
From the Discord:
Xander9009 — 10/10/2019
There's now a .z7 for every exe file. The password is always dotp2014. It's simply to prevent the google servers from flagging the exes. There's also a mega.nz mirror (the public tools folder's readme). These .7z files are updated automatically whenever an exe is updated or added, so they should always be available. If one seems to be missing, please let me know.
-
Huggybaby - Administrator
- Posts: 3212
- Joined: 15 Jan 2006, 19:44
- Location: Finally out of Atlanta
- Has thanked: 712 times
- Been thanked: 596 times
Re: Community Wad
by MasterXploder7 » 26 Jul 2022, 00:45
Much appreciated!Huggybaby wrote:Here's what I could find:
https://sites.google.com/site/dotpcommunitywad/home
Last updated 2019.
Discord:
https://discord.com/invite/4AXvHzW
Files on Google Drive: https://drive.google.com/folderview?id= ... aring#list
From the Discord:Xander9009 — 10/10/2019
There's now a .z7 for every exe file. The password is always dotp2014. It's simply to prevent the google servers from flagging the exes. There's also a mega.nz mirror (the public tools folder's readme). These .7z files are updated automatically whenever an exe is updated or added, so they should always be available. If one seems to be missing, please let me know.
"Hate is an everlasting wellspring from which it is eternally sustained." - Nirkana Revenant
- MasterXploder7
- Posts: 293
- Joined: 18 Jan 2014, 10:55
- Has thanked: 28 times
- Been thanked: 11 times
Re: Community Wad
by oranges27 » 06 Sep 2022, 02:37
Not sure if this is the place to ask but I was wondering, would anyone have any tips more coding Ambitious Dragonborn? as of now it only checks your graveyard or the field I can't get it to look at both and the pick the highest int.
Re: Community Wad
by etphonehome » 06 Sep 2022, 18:20
Is this the Droid code you're looking for?
Check attached file!
- Code: Select all
<TRIGGERED_ABILITY replacement_effect="1" active_zone="ZONE_TRANSITION">
<LOCALISED_TEXT LanguageCode="en-US"><![CDATA[Ambitious Dragonborn enters the battlefield with X +1/+1 counters on it, where X is the greatest power among creatures you control and creature cards in your graveyard.]]></LOCALISED_TEXT>
<TRIGGER value="ZONECHANGE_TRANSITION" simple_qualifier="self" to_zone="ZONE_BATTLEFIELD" from_zone="ZONE_ANY" />
<RESOLUTION_TIME_ACTION>
local max_power = 0
local filter = ClearFilter()
filter:Add(FE_TYPE, OP_IS, CARD_TYPE_CREATURE)
filter:SetZone( ZONE_GRAVEYARD, EffectController() )
local filter_count = filter:EvaluateObjects()
if filter_count > 0 then
for i=0, filter_count-1 do
local creature = filter:GetNthEvaluatedObject(i)
if creature ~= nil then
local power = creature:GetCurrentCharacteristics():Power_Get()
if power > max_power then
max_power = power
end
end
end
end
local filterB = ClearFilter()
filterB:Add(FE_TYPE, OP_IS, CARD_TYPE_CREATURE)
filterB:SetZone( ZONE_BATTLEFIELD, EffectController() )
local filter_countB = filterB:EvaluateObjects()
if filter_countB > 0 then
for i=0, filter_countB-1 do
local creature = filterB:GetNthEvaluatedObject(i)
if creature ~= nil then
local power = creature:GetCurrentCharacteristics():Power_Get()
if power > max_power then
max_power = power
end
end
end
end
EffectSource():AddCounters( MTG():PlusOnePlusOneCounters(), max_power)
</RESOLUTION_TIME_ACTION>
</TRIGGERED_ABILITY>
Check attached file!
- Attachments
-
- Ambitious Dragonborn.zip
- (112.73 KiB) Downloaded 269 times
- etphonehome
- Posts: 303
- Joined: 21 May 2020, 12:50
- Has thanked: 272 times
- Been thanked: 42 times
Re: Community Wad
by oranges27 » 09 Sep 2022, 06:57
been trying to get Scute Swarm to work and I think it should but it will not show up in the builder
Re: Community Wad
by etphonehome » 09 Sep 2022, 22:01
Try this one
Tested and working!
Tested and working!
- Attachments
-
- Scute Swarm.zip
- (115.35 KiB) Downloaded 272 times
- etphonehome
- Posts: 303
- Joined: 21 May 2020, 12:50
- Has thanked: 272 times
- Been thanked: 42 times
Re: Community Wad
by oranges27 » 10 Sep 2022, 00:23
thank you for the quick response etphonehome yours shows up just fine, I must have something wrong with my files I started with because I have the same coding and it doesn't even show up in the builder
Re: Community Wad
by RiiakShiNal » 19 Sep 2022, 11:18
If it doesn't show up in the Deck Builder then you probably have an XML syntax error in your card. If the XML isn't properly formed then the Deck Builder (and the game) will be unable to read the card. The syntax error is probably something simple like an extra "<", ">", a missing closing tag (or missing / in a self closing tag), closing tags in the wrong order, or trying to put in Unicode characters without a CDATA block (it is almost always something simple).oranges27 wrote:thank you for the quick response etphonehome yours shows up just fine, I must have something wrong with my files I started with because I have the same coding and it doesn't even show up in the builder
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: 2185
- Joined: 16 May 2011, 21:37
- Has thanked: 75 times
- Been thanked: 497 times
Re: Community Wad
by Hellraezer » 29 Oct 2022, 19:34
I've been trying for over a year now to download the community art wad to no avail. The link takes me to a page that says I must request access which I've done 3-times already. Downloading manually doesn't help neither, because it says "Fetching Links" but the page remains blank. I can't even Automatically Update the wad. Kinda at an en passe here.
- Hellraezer
- Posts: 5
- Joined: 29 Oct 2022, 19:28
- Has thanked: 1 time
- Been thanked: 0 time
Who is online
Users browsing this forum: No registered users and 13 guests