It is currently 16 Apr 2024, 13:06
   
Text Size

Community Wad

Moderator: CCGHQ Admins

Re: Community Wad

Postby 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

Postby 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.
Attachments
Test.png
Image capture of missing art
Last edited by Tanist on 25 Jun 2022, 11:05, edited 3 times in total.
Tanist
 
Posts: 3
Joined: 24 Jun 2022, 19:25
Has thanked: 0 time
Been thanked: 1 time

Re: Community Wad

Postby 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.
Tanist
 
Posts: 3
Joined: 24 Jun 2022, 19:25
Has thanked: 0 time
Been thanked: 1 time

Re: Community Wad

Postby 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. :/
Scascott
 
Posts: 1
Joined: 05 Jul 2022, 17:42
Has thanked: 1 time
Been thanked: 0 time

Re: Community Wad

Postby Huggybaby » 06 Jul 2022, 01:29

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. :/
Obfuscate the link if you can, or PM it to me, or wait until you have five posts. Thanks!
User avatar
Huggybaby
Administrator
 
Posts: 3205
Joined: 15 Jan 2006, 19:44
Location: Finally out of Atlanta
Has thanked: 696 times
Been thanked: 594 times

Re: Community Wad

Postby 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

Postby 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:
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.
User avatar
Huggybaby
Administrator
 
Posts: 3205
Joined: 15 Jan 2006, 19:44
Location: Finally out of Atlanta
Has thanked: 696 times
Been thanked: 594 times

Re: Community Wad

Postby MasterXploder7 » 26 Jul 2022, 00:45

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.
Much appreciated!
"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

Postby 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.
oranges27
 
Posts: 3
Joined: 06 Sep 2022, 01:59
Has thanked: 2 times
Been thanked: 0 time

Re: Community Wad

Postby etphonehome » 06 Sep 2022, 18:20

Is this the Droid code you're looking for?

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>
Tested and Working!

Check attached file!
Attachments
Ambitious Dragonborn.zip
(112.73 KiB) Downloaded 151 times
etphonehome
 
Posts: 300
Joined: 21 May 2020, 12:50
Has thanked: 270 times
Been thanked: 39 times

Re: Community Wad

Postby 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
oranges27
 
Posts: 3
Joined: 06 Sep 2022, 01:59
Has thanked: 2 times
Been thanked: 0 time

Re: Community Wad

Postby etphonehome » 09 Sep 2022, 22:01

Try this one

Tested and working!
Attachments
Scute Swarm.zip
(115.35 KiB) Downloaded 163 times
etphonehome
 
Posts: 300
Joined: 21 May 2020, 12:50
Has thanked: 270 times
Been thanked: 39 times

Re: Community Wad

Postby 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
oranges27
 
Posts: 3
Joined: 06 Sep 2022, 01:59
Has thanked: 2 times
Been thanked: 0 time

Re: Community Wad

Postby RiiakShiNal » 19 Sep 2022, 11:18

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
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).
RiiakShiNal
Programmer
 
Posts: 2185
Joined: 16 May 2011, 21:37
Has thanked: 75 times
Been thanked: 496 times

Re: Community Wad

Postby 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

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