It is currently 18 Apr 2024, 23:26
   
Text Size

TFM&G2K's Planeswalkers Pool v8g (12/Sep/2014)

Moderator: CCGHQ Admins

Re: TFM&G2K's Planeswalkers Pool v8g (12/Sep/2014)

Postby Misplay » 06 May 2015, 20:16

Seems to work perfectly, thx a lot!
Misplay
 
Posts: 92
Joined: 29 Aug 2013, 08:26
Has thanked: 50 times
Been thanked: 10 times

Re: TFM&G2K's Planeswalkers Pool v8g (12/Sep/2014)

Postby fallenangle » 12 May 2015, 11:09

Update 05/12/2015: My fix for Chandra contained an error in the code, one I only discovered because I copied it into the code for Neo's PW upgrade. I'm including an update for both the regular PW Wad and Neo's PW Wad here. Enjoy, and if anyone finds any other problems or bugs, please let me know.
fallenangle
 
Posts: 319
Joined: 20 Jul 2013, 02:31
Has thanked: 73 times
Been thanked: 41 times

Re: TFM&G2K's Planeswalkers Pool v8g (12/Sep/2014)

Postby fallenangle » 16 May 2015, 11:34

Update 05/16/2015: Added "Protection" to all Planeswalkers. This is the same thing they get in the CW, and was originally an innovation suggested by NeoAnderson when he was still active. It speeds up the game when Planeswalkers are on the board by reducing the number of calls made to the Manager, essentially automating the "cards not allowed to target planeswalkers" bit within each PW card itself. This update has been long overdue, but I just now got around to doing it. My apologies. Let me know if you encounter any bugs or problems, and enjoy the hard work of the many modders who made the PW pool what it is!
Last edited by fallenangle on 18 May 2015, 05:19, edited 1 time in total.
fallenangle
 
Posts: 319
Joined: 20 Jul 2013, 02:31
Has thanked: 73 times
Been thanked: 41 times

Re: TFM&G2K's Planeswalkers Pool v8g (12/Sep/2014)

Postby Xander9009 » 16 May 2015, 20:15

Hey, so, I've reworked the protection a little. However, I noticed that they don't have protection while on the stack. This means that Annul can counter a planeswalker. I've tried various things, but none of them prevent Annul from countering the planeswalker I'm testing with (Chandra Nalaar). This affects all zones except the battlefield. Things that target enchantments in your graveyard, library, or hand will catch planeswalkers, too.

I might have found a better way to handle the protection. It uses a function like the original, but it doesn't use a loop like it did. The entire function is handled in a single function with no other function calls, and this prevents the lag but retains the ability to NOT have to change every single planeswalker when a new card that targets enchantments is introduced. I've tested it with 4 planeswalkers in a deck. There is a bit of lag any time more than about 6 planeswalkers on the battlefield at the same time. It doesn't happen with one or two on the battlefield, though, only with a bunch, so in normal play, it shouldn't have any lag at all. I had out 4 and my opponent had out 2 for a total of 6, and experienced very little lag. It was noticeable, but it was very slight. If you want, I'll post the code and the cards I already changed to test and you can try it out yourself and let me know if you think it's quick enough. I'd like a second opinion before changing any more. Basically, the goal is to not have every planeswalker card have to be changed just because there's a new card that targets and enchantments.

Just for the record, the function in the LOL file is this:
| Open
Code: Select all
PLW_Filter = function()
-- The planeswalker protection filter
   if EffectSource() ~= nil then
      local filter = ClearFilter()
      filter:Add(FE_CARD_NAME, OP_IS, "ENCHANTED_EVENING") -- With Enchanted Evening on the battlefield, Planeswalkers would be enchantments for real
      if filter:CountStopAt(1) == 0 or EffectSource():GetZone() ~= ZONE_BATTLEFIELD then
         filter = ClearFilter()
         filter:SetZone( ZONE_ANYWHERE )
         local subfilter = filter:AddSubFilter_Or()
         subfilter:Add( FE_CARD_NAME, OP_IS, "ABOLISH" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "ABSOLVER_THRULL" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "ACIDIC_SLIME" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "ALLAY" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "ALTARS_LIGHT" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "ANNUL" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "ARENSONS_AURA" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "ARGIVIAN_FIND" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "ARTISANS_SORROW" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "AURA_BLAST" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "AURA_EXTRACTION" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "AURA_FRACTURE" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "AURA_MUTATION" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "AURA_OF_SILENCE" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "AURA_SHARDS" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "AURAMANCER" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "AVEN_CLOUDCHASER" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "BALDUVIAN_SHAMAN" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "BLIGHTCASTER" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "BLOOD_OATH" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "BREAK_ASUNDER" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "CAPASHEN_UNICORN" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "CLEAR" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "CLOUDCHASER_EAGLE" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "CONSIGN_TO_DUST" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "CREEPING_MOLD" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "CURSEBREAK" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "DARU_SANCTIFIER" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "DAWN_TO_DUSK" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "DAWNING_PURIST" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "DEGLAMER" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "DEICIDE" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "DEMYSTIFY" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "DESECRATION_PLAGUE" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "DESTRUCTIVE_REVELRY" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "DEVOUT_CHAPLAIN" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "DEVOUT_WITNESS" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "DISEMPOWER" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "DISENCHANT" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "DISMANTLING_BLOW" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "DISPELLERS_CAPSULE" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "DOWSING_SHAMAN" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "DRUID_LYRIST" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "DUERGAR_HEDGEMAGE" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "ECHOING_CALM" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "ELF_REPLICA" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "ELVISH_HEXHUNTER" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "ELVISH_LYRIST" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "ERASE" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "ESPER_CHARM" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "FADE_INTO_ANTIQUITY" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "FILIGREE_FRACTURE" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "FRANTIC_PURIFICATION" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "GLEEFUL_SABOTAGE" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "GOLGARI_CHARM" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "GRIFFIN_DREAMFINDER" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "HANNA_SHIPS_NAVIGATOR" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "HARMONIC_SLIVER" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "HIDE" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "HOODWINK" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "HULL_BREACH" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "ILLUMINATION" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "INDRIK_STOMPHOWLER" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "KAMI_OF_ANCIENT_LAW" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "KEENING_APPARITION" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "KIORAS_DISMISSAL" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "KITHKIN_SPELLDUSTER" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "KOR_SANCTIFIERS" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "KROSAN_GRIP" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "LEAVE_NO_TRACE" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "LEONIN_RELICWARDER" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "MINE_EXCAVATION" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "MOLDER" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "MONK_IDEALIST" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "MONK_REALIST" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "MORTAL_OBSTINACY" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "MYSTIC_MELTING" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "NANTUKO_CALMER" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "NANTUKO_VIGILANTE" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "NATURAL_END" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "NATURALIZE" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "NATURES_CLAIM" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "NIKKOONNA" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "NULLMAGE_SHEPHERD" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "ORIMS_THUNDER" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "PEACE_AND_QUIET" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "POLIS_CRUSHER" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "PRIEST_OF_IROAS" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "QASALI_PRIDEMAGE" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "QUAGMIRE_DRUID" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "QUIET_PURITY" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "RAIN_OF_THORNS" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "RAY_OF_DISSOLUTION" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "RAY_OF_DISTORTION" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "RAY_OF_REVELATION" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "RECLAMATION_SAGE" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "RELIC_CRUSH" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "RELIQUARY_MONK" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "RENDING_VINES" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "RETURN_TO_DUST" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "REVIVING_MELODY" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "REVOKE_EXISTENCE" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "RONOM_UNICORN" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "RUST_SCARAB" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "SCOUR" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "SEAL_OF_CLEANSING" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "SEAL_OF_PRIMORDIUM" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "SEED_SPARK" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "SERENE_OFFERING" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "SERRAS_LITURGY" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "SHINEWEND" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "SILENT_SENTINEL" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "SILVERCHASE_FOX" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "SKULL_OF_ORM" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "SLICE_IN_TWAIN" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "SOLEMN_OFFERING" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "SOLTARI_VISIONARY" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "SPRING_CLEANING" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "STERN_PROCTOR" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "STOMP_AND_HOWL" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "SUNDERING_GROWTH" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "SUNDERING_VITAE" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "SWAN_SONG" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "SYLVOK_REPLICA" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "TATTOO_WARD" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "TEAR" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "TEFERIS_CARE" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "TERASHIS_GRASP" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "THUNDERSCAPE_BATTLEMAGE" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "TOLARIAN_EMISSARY" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "TRAGIC_POET" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "TREASURY_THRULL" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "TRITON_CAVALRY" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "TRYGON_PREDATOR" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "UNRAVEL_THE_AETHER" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "URGENT_EXORCISM" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "VIRIDIAN_ZEALOT" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "WANE" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "WAR_PRIEST_OF_THUNE" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "WEAR_AWAY" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "WICKERBOUGH_ELDER" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "WILD_SWING" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "WIPE_CLEAN" )
         subfilter:Add( FE_CARD_NAME, OP_IS, "WISPMARE" )
         if EffectSource():GetCardType():Test(CARD_TYPE_CREATURE) == false then
            subfilter:Add( FE_CARD_NAME, OP_IS, "ANGELIC_EDICT" )
            subfilter:Add( FE_CARD_NAME, OP_IS, "BANISHING_STROKE" )
            subfilter:Add( FE_CARD_NAME, OP_IS, "BANISHMENT_DECREE" )
            subfilter:Add( FE_CARD_NAME, OP_IS, "CRIME" )
            subfilter:Add( FE_CARD_NAME, OP_IS, "ETHERSWORN_ADJUDICATOR" )
            subfilter:Add( FE_CARD_NAME, OP_IS, "FEAST_OF_DREAMS" )
            subfilter:Add( FE_CARD_NAME, OP_IS, "IONAS_JUDGMENT" )
            subfilter:Add( FE_CARD_NAME, OP_IS, "MORTIFY" )
            subfilter:Add( FE_CARD_NAME, OP_IS, "PHARIKAS_MENDER" )
            subfilter:Add( FE_CARD_NAME, OP_IS, "TREVAS_CHARM" )
         end
      end
   end
   return filter
end
The code on the planeswalkers is this:
| Open
Code: Select all
   <STATIC_ABILITY>
      <CONTINUOUS_ACTION layer="0">
         PLW_Filter()
         EffectSource():Protection()
      </CONTINUOUS_ACTION>
   </STATIC_ABILITY>
Note: This does not fix planeswalkers in zones other than the battlefield being targeted like enchantments. I've tried a couple fixes for that, but I've had no success, yet. I think the only solution to this would be to have cards that target enchantments specifically exclude planeswalkers. If we were dealing with any that target enchantments, then the protection could be removed. If we only deal with those that target enchantments not on the battlefield, then there will be far fewer to change and it'll work the way it should.
_______________________________
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: TFM&G2K's Planeswalkers Pool v8g (12/Sep/2014)

Postby zysron » 16 May 2015, 23:40

you cant make them loose enchantment can you? or do they have to have that definition to exist?
zysron
 
Posts: 102
Joined: 13 Mar 2015, 09:02
Has thanked: 0 time
Been thanked: 2 times

Re: TFM&G2K's Planeswalkers Pool v8g (12/Sep/2014)

Postby Xander9009 » 16 May 2015, 23:42

That's what I tried first. But if the card only has the planeswalker type, the game can't process it right.
Last edited by Xander9009 on 17 May 2015, 04:25, edited 1 time in total.
_______________________________
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: TFM&G2K's Planeswalkers Pool v8g (12/Sep/2014)

Postby fallenangle » 17 May 2015, 02:24

It looks good, but my PW_Manager is throwing up strange error logs at me now (and I didn't modify it recently), so I can't test this for the moment. I'll try to get it working, and then I'll let you know how it goes.
fallenangle
 
Posts: 319
Joined: 20 Jul 2013, 02:31
Has thanked: 73 times
Been thanked: 41 times

Re: TFM&G2K's Planeswalkers Pool v8g (12/Sep/2014)

Postby fallenangle » 18 May 2015, 05:27

Update 05/18/2015: Thanks to Xander's hard work and studly debugging skills, I can present to you a working, updated PLW Wad that now handles protection through a filter in the PLW.LOL itself rather than through the manager. This should dramatically increase the speed and lessen the lag of PWs in the game. All I did was put the code in each of the existing PWs; it's Xander who deserves all the praise for the hard work of making the filter (and putting up with my repeated queries to fix things when all that was necessary was some Spring Cleaning of my Custom Data folder. Thanks, Xander!

Update 05/19/2015: Changed a few things and did more Spring Cleaning. It should work better now.
Last edited by fallenangle on 25 May 2015, 11:32, edited 2 times in total.
fallenangle
 
Posts: 319
Joined: 20 Jul 2013, 02:31
Has thanked: 73 times
Been thanked: 41 times

Re: TFM&G2K's Planeswalkers Pool v8g (12/Sep/2014)

Postby sunds » 18 May 2015, 13:26

fallenangle wrote:Update 05/18/2015: Thanks to Xander's hard work and studly debugging skills, I can present to you a working, updated PLW Wad that now handles protection through a filter in the PLW.LOL itself rather than through the manager. This should dramatically increase the speed and lessen the lag of PWs in the game. All I did was put the code in each of the existing PWs; it's Xander who deserves all the praise for the hard work of making the filter (and putting up with my repeated queries to fix things when all that was necessary was some Spring Cleaning of my Custom Data folder. Thanks, Xander!
Thanks for your work!
But when I played a deck with ugin, the spirit dragon, I got a lot of script log errors.
[lua] [string "_PLANESWALKERS_MANAGER_991800002_TITLE (RESOLUTION_TIME_ACTION)~0x000002a0"]:5:
parameter mismatch or too few parameters [expected bzS32]
[lua] [string "TEJAHN_FRF_UGIN_THE_SPIRIT_DRAGON_9911749121015_TITLE (CONTINUOUS_ACTION)~0x00000262"]:2: attempt to call global 'PLW_Protection_Filter' (a nil value)
sunds
 
Posts: 48
Joined: 05 Apr 2015, 12:51
Has thanked: 3 times
Been thanked: 4 times

Re: TFM&G2K's Planeswalkers Pool v8g (12/Sep/2014)

Postby fallenangle » 19 May 2015, 01:07

I changed a few things, mostly shortening the filename on Ugin to match the cardname. I also deleted the Legacy Wad, the FRF Wad, and a few other Wads from my DOTP2014 folder that I thought might be causing problems. Try that if it still gives you errors, as I just tried a game with Ugin and it came back error free.
fallenangle
 
Posts: 319
Joined: 20 Jul 2013, 02:31
Has thanked: 73 times
Been thanked: 41 times

Re: TFM&G2K's Planeswalkers Pool v8g (12/Sep/2014)

Postby Xander9009 » 19 May 2015, 02:00

Just for the record, I tested the wad you posted and it seemed to work fine for Ajani Goldmane. It originally had problems when running alongside the CW, but in the next repack that will be fixed (and it'll also have the protection changes before long if everyone likes how they're running).
_______________________________
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: TFM&G2K's Planeswalkers Pool v8g (12/Sep/2014)

Postby sunds » 19 May 2015, 02:37

fallenangle wrote:I changed a few things, mostly shortening the filename on Ugin to match the cardname. I also deleted the Legacy Wad, the FRF Wad, and a few other Wads from my DOTP2014 folder that I thought might be causing problems. Try that if it still gives you errors, as I just tried a game with Ugin and it came back error free.
Unfortunately the two errors are still there. The first error log happens when ugin is drawn in my hand. The second error log happens when I use ugin's ability(for example its first ability).
I only have cw files in my game folder.
sunds
 
Posts: 48
Joined: 05 Apr 2015, 12:51
Has thanked: 3 times
Been thanked: 4 times

Re: TFM&G2K's Planeswalkers Pool v8g (12/Sep/2014)

Postby fallenangle » 19 May 2015, 07:23

Thanks for your reply, and for the detailed information.

I don't use the CW, and the PW Wad was never designed to be used in conjunction with the CW. If Xander's latest repack tonight doesn't fix the problem, let me know, and I'll see what I can do.
fallenangle
 
Posts: 319
Joined: 20 Jul 2013, 02:31
Has thanked: 73 times
Been thanked: 41 times

Re: TFM&G2K's Planeswalkers Pool v8g (12/Sep/2014)

Postby zysron » 19 May 2015, 07:36

i played with planeswalkers a few weeks ago there was a problem witch made me stop but it is fixed now and i am soo happy
this was the problem that got fixed
| Open
orrigionally when you played a pw and you used its ability if you cast another of the same name yu couldnt use the new ones ability but now you can!!! woot yes its how its supposed to work and thank you i have a deck that i can spam jace over and over again(6 jace in one turn!) if certain cards are made for the cw then the deck will be completed!
zysron
 
Posts: 102
Joined: 13 Mar 2015, 09:02
Has thanked: 0 time
Been thanked: 2 times

Re: TFM&G2K's Planeswalkers Pool v8g (12/Sep/2014)

Postby fallenangle » 20 May 2015, 22:38

Just for the record, I tested the wad you posted and it seemed to work fine for Ajani Goldmane. It originally had problems when running alongside the CW, but in the next repack that will be fixed (and it'll also have the protection changes before long if everyone likes how they're running).
I still get the weird RTA error log pointing to line 5 in the Manager, but only after I play through a full game with my PWs. When I just test them briefly, the error doesn't show up. If you have some time, could you do some more tests and look into it?
fallenangle
 
Posts: 319
Joined: 20 Jul 2013, 02:31
Has thanked: 73 times
Been thanked: 41 times

PreviousNext

Return to 2014

Who is online

Users browsing this forum: Baidu [Spider] and 33 guests


Who is online

In total there are 34 users online :: 1 registered, 0 hidden and 33 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: Baidu [Spider] and 33 guests

Login Form