It is currently 19 Jul 2025, 21:15
   
Text Size

Community Wad

Moderator: CCGHQ Admins

Re: Community Wad

Postby Xander9009 » 08 Nov 2016, 17:04

For the auto-upload problem, give me a week or so. I've been super busy lately (my best friend experienced a death in her immediate family, so I'll be nearly completely absent). I'll look into it with some tests when I can. What I can say is that I don't recall ever getting this reported before for the auto-upload folder. However, if you're uploading to the auto-upload folder through your browser, then yes, you definitely have to wait until it says complete. That process is being handled by the webpage, and moving that tab to another page or exiting it will stop that process. I assumed you were using the desktop Google Drive app, which can do it in the background.

All base game constants are integers. COLOUR_RED is 4. 0 to 5 is COLOUR_COLOURLESS, COLOUR_WHITE, COLOUR_BLUE, COLOUR_BLACK, COLOUR_RED, COLOUR_GREEN. You can actually check what those constants are set to by opening the Decompilable LOL Contents page and having a look there.

For the AI reacting very slowly, I noticed this same thing at one point recently, and I don't know why. At the time, though, I was testing a new type of land setup, and I assumed it was related to that. But there's nothing in the new setup that would cause games without those lands to do anything, and they're not in the normal CORE yet, except a few, which are specially named (and thus won't show up in a deck by chance).
_______________________________
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: Community Wad

Postby Splinterverse » 08 Nov 2016, 17:11

Xander9009 wrote:For the auto-upload problem, give me a week or so. I've been super busy lately (my best friend experienced a death in her immediate family, so I'll be nearly completely absent). I'll look into it with some tests when I can. What I can say is that I don't recall ever getting this reported before for the auto-upload folder. However, if you're uploading to the auto-upload folder through your browser, then yes, you definitely have to wait until it says complete. That process is being handled by the webpage, and moving that tab to another page or exiting it will stop that process. I assumed you were using the desktop Google Drive app, which can do it in the background.

All base game constants are integers. COLOUR_RED is 4. 0 to 5 is COLOUR_COLOURLESS, COLOUR_WHITE, COLOUR_BLUE, COLOUR_BLACK, COLOUR_RED, COLOUR_GREEN. You can actually check what those constants are set to by opening the Decompilable LOL Contents page and having a look there.

For the AI reacting very slowly, I noticed this same thing at one point recently, and I don't know why. At the time, though, I was testing a new type of land setup, and I assumed it was related to that. But there's nothing in the new setup that would cause games without those lands to do anything, and they're not in the normal CORE yet, except a few, which are specially named (and thus won't show up in a deck by chance).
Thanks, Xander.

I am using the browser. No rush on the issues with auto-uploader. It doesn't take much effort for me to check the recent files list after upload shows as complete.

Sorry to hear about your friend's loss.
---------------------------------------------
The DOTP2014 CW is updated nightly between 11 PM and 12 AM EST.
Known Issues/Bugs |
Impossible Cards List | Update Your Land Pools
Splinterverse
 
Posts: 918
Joined: 04 Sep 2016, 13:32
Has thanked: 150 times
Been thanked: 76 times

Re: Community Wad

Postby Splinterverse » 08 Nov 2016, 22:13

Finished coding for today; all cards referenced are from the missing cards list.

Coded, tested, and uploaded:
Dominaria's Judgment
Hibernation's End
Hidetsugu's Second Rite
Holistic Wisdom
Homarid
Homeward Path
Horn of Plenty
Hotheaded Giant
Hum of the Radix
Hypnox
Indentured Oaf
Induce Despair
Induce Paranoia
Infernal Denizen
Invoke Prejudice
Joint Assault -- coded by Xander9009; tested by me

Bugs fixed:
Empty-Shrine Kannushi -- typo
Goham Djinn -- typo

Open Items:

-- CW_CARD_QUERY_SPLINTERVERSE has been updated and uploaded.

-- Hint of Insanity http://pastebin.com/ruF9gngE Does nothing. Ignore the fact that the reveal step is missing. I will be adding that later. I'm guessing the issue is the double for loop.

-- Imperial Mask http://pastebin.com/5hQrYpXe Does not make a token in 2HG. Also, not sure about the Hexproof at the player level. Are we able to damage ourselves when we have Hexproof, because I did damage to myself with Favor while this card was in play.

-- Ivory Gargoyle http://pastebin.com/uBe4bTfS She still does not want to come back from the graveyard after death.

-- General question . . . is there a way to "recommend" a multiple choice value to the AI? I know how to check if it's AI and force it to choose, but I'm looking for something along the lines of how we tell it who/what to target.

Next:

Back on Friday to continue coding.
---------------------------------------------
The DOTP2014 CW is updated nightly between 11 PM and 12 AM EST.
Known Issues/Bugs |
Impossible Cards List | Update Your Land Pools
Splinterverse
 
Posts: 918
Joined: 04 Sep 2016, 13:32
Has thanked: 150 times
Been thanked: 76 times

Re: Community Wad

Postby thefiremind » 08 Nov 2016, 23:53

You are using filter:Count() instead of filter:EvaluateObjects(). Both return the count, but the latter prepares the filter so that you can use GetNthEvaluatedObject.
I think there could be a better way to check for cards with duplicate names, but I don't like any of those that come to my mind at the moment. :lol: I'll report tomorrow if I can find a better one.
EDIT: Here's what I came up with:
Fancy Hint of Insanity discard code (tested) | Open
Code: Select all
    <RESOLUTION_TIME_ACTION>
    local t = {}
    local target = EffectDC():Get_Targets(0):Get_PlayerPtr(0)
    local count = target:Hand_Count()
    for i=0,count-1 do
       local card = target:Hand_GetNth(i)
       if card:GetCardType():Test(CARD_TYPE_LAND) == false then
          local name = card:GetCardName()
          t[name] = t[name] or {}
          t[name][#t[name]+1] = card
       end
    end
    for _,cards in pairs(t) do
       if #cards &gt; 1 then
          for _,card in ipairs(cards) do
             card:Discard()
          end
       end
    end
    </RESOLUTION_TIME_ACTION>
I'm using an associative table here. Each nonland card in target player's hand is added to the table by using its name as key. Then I check the table and look for the names that have more than 1 card associated to them. When I find one, I iterate over the associated cards and discard them.
The "_" is a naming convention for variables that you don't care about (in the last 2 for loops I'm using only the values, not the keys).
You have an unfinished line:
Code: Select all
local teammate = oPlayer:
Personally, I would suggest to let the game handle the check for teammates, with a FILTER block. You are searching for a player of your team that isn't yourself, right? Then you can do this:
Code: Select all
<FILTER filter_id="0">
local filer = ClearFilter()
local player = EffectController()
filter:SetFilterType(FILTER_TYPE_PLAYERS)
filter:Add(FE_PLAYER_INSTANCE, OP_NOT, player)
filter:Add( FE_TEAM, OP_IS, player:GetTeam() )
</FILTER>
<RESOLUTION_TIME_ACTION filter_id="0">
if EffectSource() ~= nil and FilteredPlayer() ~= nil then   
    MTG():PutTokenCopiesOntoBattlefield( EffectSource(), 1, FilteredPlayer() )
end
</RESOLUTION_TIME_ACTION>
Splinterverse wrote:Are we able to damage ourselves when we have Hexproof, because I did damage to myself with Favor while this card was in play.
You are able to damage and target yourself, just as you can target creatures you control with hexproof (unlike shroud which prevents targeting by anyone).

You are protecting the card pointer too late. When you use ZONECHANGE_BEGIN there's one main thing you need to consider: the TRIGGER block happens before the zone change, but the action blocks happen after the zone change. So the pointer protection needs to be done inside TRIGGER. Don't use replacement_effect (nor pre_trigger), it would be wrong: this ability definitely uses the stack.
Code: Select all
  <TRIGGERED_ABILITY>
    <LOCALISED_TEXT LanguageCode="en-US">...</LOCALISED_TEXT>
    <TRIGGER value="ZONECHANGE_BEGIN" simple_qualifier="self" to_zone="ZONE_GRAVEYARD" from_zone="ZONE_BATTLEFIELD">
    EffectDC():Protect_CardPtr(COMPARTMENT_ID_EFFECT_SOURCE)
    return true
    </TRIGGER>
    <RESOLUTION_TIME_ACTION>
    if EffectSource() ~= nil then
       local delayDC = EffectDC():Make_Chest(1)
       delayDC:Set_CardPtr(0, EffectSource())
       MTG():CreateDelayedTrigger(2, delayDC)
       MTG():CreateDelayedTrigger(3, delayDC)
    end
    </RESOLUTION_TIME_ACTION>
  </TRIGGERED_ABILITY>
The rest should be fine. Maybe add a check for the card pointer being not nil in the first delayed trigger, so that you don't get a script error in case someone removes the Gargoyle from the graveyard in response.

Splinterverse wrote:is there a way to "recommend" a multiple choice value to the AI? I know how to check if it's AI and force it to choose, but I'm looking for something along the lines of how we tell it who/what to target.
As most of the times, I'm not sure what you mean without a practical example. If you need to restrict the targets for the AI you can check if it's AI inside a TARGET_DEFINITION and add filters for the AI only. I used to do that a lot in the past, now I trust the AI more and almost never do it.
Last edited by thefiremind on 09 Nov 2016, 13:53, edited 6 times in total.
< 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: Community Wad

Postby tmxk2012917 » 09 Nov 2016, 01:15

Kessig Prowler could not be transformed even though I paid the cost for the transformation
tmxk2012917
 
Posts: 164
Joined: 15 Mar 2015, 09:52
Has thanked: 20 times
Been thanked: 12 times

Re: Community Wad

Postby nachonal986 » 09 Nov 2016, 03:23

hey guys!

It's possible search into the build deck program, the diff decks released??

I wanna see the last cards added from the last months, there exist a way to do it?

Thanks!
User avatar
nachonal986
 
Posts: 83
Joined: 27 Jul 2015, 21:13
Has thanked: 17 times
Been thanked: 1 time

Re: Community Wad

Postby tmxk2012917 » 09 Nov 2016, 03:54

A bug of Verdurous Gearhulk:

When it entered the battleground, I put 4 counters on Rashmi, but all the counters put in this way disappeared at the end of my turn.
tmxk2012917
 
Posts: 164
Joined: 15 Mar 2015, 09:52
Has thanked: 20 times
Been thanked: 12 times

Re: Community Wad

Postby Xander9009 » 09 Nov 2016, 04:58

For seeing recently released cards, there's a way to do so, sort of. There's a txt file containing each version's updates, including cards that were added and cards that were modified. However, it doesn't contain the dates. That said, you can check the old versions folder to see the CW version and the date it was created listed together.

History file: https://drive.google.com/file/d/0B-cZn2 ... sp=sharing

Old Versions folder: https://drive.google.com/drive/folders/ ... sp=sharing

Since the old versions folder only goes back to August, here's the complete listing (prior to version 63 was alpha and never released publicly).

Note that the history file only goes back to version 183 (04-02-15). Butsince you said a few months, that should be more than enough.

| Open
Version - DD-MM-YY
63 - 26-09-14
65 - 26-09-14
66 - 26-09-14
67 - 28-09-14
68 - 28-09-14
69 - 28-09-14
72 - 28-09-14
79 - 29-09-14
80 - 30-09-14
81 - 30-09-14
82 - 02-10-14
83 - 03-10-14
84 - 04-10-14
85 - 06-10-14
86 - 06-10-14
87 - 06-10-14
88 - 07-10-14
89 - 08-10-14
90 - 09-10-14
91 - 09-10-14
92 - 10-10-14
93 - 10-10-14
94 - 11-10-14
95 - 11-10-14
96 - 11-10-14
97 - 13-10-14
98 - 14-10-14
100 - 14-10-14
101 - 15-10-14
102 - 16-10-14
104 - 16-10-14
106 - 17-10-14
107 - 18-10-14
108 - 18-10-14
109 - 19-10-14
110 - 19-10-14
111 - 20-10-14
112 - 20-10-14
113 - 20-10-14
114 - 21-10-14
115 - 21-10-14
116 - 22-10-14
117 - 22-10-14
118 - 22-10-14
119 - 23-10-14
120 - 24-10-14
121 - 24-10-14
122 - 25-10-14
123 - 26-10-14
124 - 26-10-14
125 - 28-10-14
126 - 30-10-14
127 - 31-10-14
128 - 01-11-14
129 - 02-11-14
130 - 03-11-14
131 - 05-11-14
132 - 07-11-14
133 - 07-11-14
134 - 07-11-14
135 - 08-11-14
136 - 09-11-14
137 - 10-11-14
138 - 12-11-14
139 - 13-11-14
140 - 14-11-14
141 - 14-11-14
142 - 16-11-14
143 - 17-11-14
144 - 18-11-14
145 - 20-11-14
147 - 21-11-14
148 - 24-11-14
149 - 27-11-14
150 - 28-11-14
151 - 29-11-14
152 - 30-11-14
153 - 01-12-14
154 - 20-11-14
155 - 08-12-14
156 - 10-12-14
157 - 15-12-14
158 - 19-12-14
159 - 21-12-14
160 - 25-12-14
161 - 27-12-14
162 - 28-12-14
163 - 29-12-14
164 - 04-01-15
165 - 07-01-15
166 - 12-01-15
167 - 14-01-15
168 - 18-01-15
169 - 22-01-15
170 - 24-01-15
171 - 24-01-15
172 - 25-01-15
173 - 26-01-15
174 - 27-01-15
175 - 27-01-15
176 - 28-01-15
177 - 29-01-15
178 - 30-01-15
179 - 31-01-15
180 - 01-02-15
181 - 02-02-15
182 - 03-02-15
183 - 04-02-15
184 - 04-02-15
185 - 05-02-15
187 - 07-02-15
188 - 08-02-15
191 - 10-02-15
192 - 11-02-15
193 - 12-02-15
194 - 13-02-15
196 - 15-02-15
197 - 16-02-15
198 - 17-02-15
199 - 18-02-15
200 - 19-02-15
201 - 20-02-15
202 - 21-02-15
203 - 21-02-15
205 - 23-02-15
206 - 24-02-15
207 - 25-02-15
208 - 25-02-15
209 - 26-02-15
212 - 01-03-15
213 - 05-03-15
214 - 06-03-15
216 - 08-03-15
217 - 09-03-15
218 - 10-03-15
219 - 11-03-15
220 - 12-03-15
221 - 13-03-15
222 - 14-03-15
224 - 15-03-15
225 - 16-03-15
227 - 19-03-15
229 - 21-03-15
231 - 23-03-15
234 - 26-03-15
237 - 30-03-15
238 - 31-03-15
239 - 01-04-15
240 - 01-04-15
241 - 02-04-15
244 - 07-04-15
246 - 09-04-15
249 - 12-04-15
250 - 13-04-15
251 - 14-04-15
254 - 18-04-15
255 - 19-04-15
256 - 21-04-15
257 - 22-04-15
264 - 27-04-15
269 - 03-05-15
270 - 04-05-15
271 - 07-05-15
272 - 08-05-15
274 - 10-05-15
275 - 11-05-15
276 - 14-05-15
277 - 15-05-15
278 - 17-05-15
279 - 18-05-15
280 - 19-05-15
281 - 19-05-15
282 - 20-05-15
283 - 21-05-15
284 - 22-05-15
285 - 22-05-15
286 - 23-05-15
287 - 25-05-15
288 - 25-05-15
289 - 26-05-15
290 - 27-05-15
291 - 27-05-15
292 - 28-05-15
293 - 29-05-15
294 - 30-05-15
295 - 31-05-15
296 - 01-06-15
297 - 01-06-15
298 - 02-06-15
299 - 03-06-15
300 - 04-06-15
301 - 05-06-15
302 - 06-06-15
303 - 07-06-15
304 - 08-06-15
305 - 09-06-15
306 - 09-06-15
307 - 10-06-15
308 - 11-06-15
309 - 13-06-15
310 - 13-06-15
311 - 14-06-15
312 - 15-06-15
313 - 16-06-15
314 - 18-06-15
315 - 20-06-15
316 - 21-06-15
317 - 23-06-15
318 - 25-06-15
319 - 27-06-15
320 - 29-06-15
321 - 30-06-15
322 - 01-07-15
323 - 02-07-15
324 - 03-07-15
325 - 04-07-15
326 - 04-07-15
329 - 05-07-15
330 - 06-07-15
331 - 07-07-15
332 - 08-07-15
333 - 09-07-15
335 - 11-07-15
336 - 12-07-15
337 - 13-07-15
338 - 14-07-15
339 - 14-07-15
340 - 15-07-15
341 - 16-07-15
342 - 17-07-15
343 - 18-07-15
344 - 19-07-15
345 - 20-07-15
346 - 21-07-15
347 - 22-07-15
348 - 23-07-15
349 - 24-07-15
350 - 25-07-15
351 - 26-07-15
352 - 27-07-15
353 - 31-07-15
354 - 02-08-15
355 - 03-08-15
356 - 04-08-15
357 - 05-08-15
358 - 06-08-15
359 - 08-08-15
360 - 09-08-15
361 - 10-08-15
362 - 12-08-15
363 - 12-08-15
364 - 13-08-15
365 - 14-08-15
366 - 15-08-15
367 - 17-08-15
368 - 17-08-15
369 - 18-08-15
370 - 19-08-15
371 - 20-08-15
372 - 21-08-15
373 - 22-08-15
374 - 23-08-15
375 - 24-08-15
376 - 25-08-15
377 - 26-08-15
378 - 27-08-15
379 - 28-08-15
380 - 30-08-15
381 - 31-08-15
382 - 02-09-15
383 - 03-09-15
384 - 04-09-15
385 - 05-09-15
386 - 06-09-15
387 - 07-09-15
388 - 08-09-15
389 - 09-09-15
390 - 10-09-15
391 - 11-09-15
392 - 12-09-15
393 - 13-09-15
394 - 14-09-15
395 - 15-09-15
396 - 16-09-15
397 - 17-09-15
398 - 18-09-15
399 - 19-09-15
400 - 22-09-15
401 - 23-09-15
402 - 24-09-15
403 - 25-09-15
404 - 26-09-15
405 - 27-09-15
406 - 28-09-15
407 - 29-09-15
408 - 30-09-15
409 - 01-10-15
410 - 01-10-15
411 - 02-10-15
412 - 03-10-15
413 - 03-10-15
414 - 04-10-15
415 - 05-10-15
416 - 06-10-15
417 - 07-10-15
418 - 08-10-15
419 - 11-10-15
420 - 12-10-15
421 - 13-10-15
422 - 14-10-15
423 - 15-10-15
424 - 16-10-15
425 - 18-10-15
426 - 19-10-15
427 - 20-10-15
428 - 20-10-15
429 - 21-10-15
430 - 22-10-15
431 - 23-10-15
432 - 24-10-15
433 - 25-10-15
434 - 26-10-15
435 - 27-10-15
436 - 28-10-15
437 - 29-10-15
438 - 31-10-15
439 - 02-11-15
440 - 03-11-15
441 - 04-11-15
442 - 05-11-15
443 - 06-11-15
444 - 07-11-15
445 - 08-11-15
446 - 09-11-15
447 - 10-11-15
448 - 11-11-15
449 - 12-11-15
450 - 14-11-15
451 - 15-11-15
452 - 16-11-15
453 - 18-11-15
454 - 19-11-15
455 - 20-11-15
456 - 22-11-15
457 - 23-11-15
458 - 24-11-15
459 - 25-11-15
460 - 28-11-15
461 - 29-11-15
462 - 30-11-15
463 - 01-12-15
464 - 03-12-15
465 - 04-12-15
466 - 04-12-15
467 - 05-12-15
468 - 06-12-15
469 - 07-12-15
470 - 08-12-15
471 - 09-12-15
472 - 15-12-15
473 - 16-12-15
474 - 17-12-15
475 - 18-12-15
476 - 20-12-15
477 - 21-12-15
478 - 22-12-15
479 - 24-12-15
480 - 25-12-15
481 - 27-12-15
482 - 30-12-15
483 - 31-12-15
484 - 02-01-16
485 - 02-01-16
486 - 03-01-16
487 - 04-01-16
488 - 05-01-16
489 - 06-01-16
490 - 07-01-16
491 - 10-01-16
492 - 11-01-16
493 - 15-01-16
494 - 16-01-16
495 - 17-01-16
496 - 20-01-16
497 - 27-01-16
498 - 31-01-16
499 - 31-01-16
500 - 01-02-16
501 - 03-02-16
502 - 04-02-16
503 - 05-02-16
504 - 06-02-16
505 - 08-02-16
506 - 09-02-16
507 - 10-02-16
508 - 11-02-16
509 - 11-02-16
510 - 12-02-16
511 - 13-02-16
512 - 14-02-16
513 - 15-02-16
514 - 16-02-16
515 - 17-02-16
516 - 20-02-16
517 - 21-02-16
518 - 22-02-16
519 - 23-02-16
520 - 25-02-16
521 - 26-02-16
522 - 28-02-16
523 - 29-02-16
524 - 01-03-16
525 - 03-03-16
526 - 07-03-16
527 - 14-03-16
528 - 21-03-16
529 - 27-03-16
530 - 31-03-16
531 - 08-04-16
532 - 16-04-16
533 - 17-04-16
534 - 19-04-16
535 - 19-04-16
536 - 21-04-16
537 - 24-04-16
538 - 25-04-16
539 - 26-04-16
540 - 27-04-16
541 - 28-04-16
542 - 28-04-16
543 - 29-04-16
544 - 01-05-16
545 - 04-05-16
546 - 05-05-16
547 - 06-05-16
548 - 08-05-16
549 - 10-05-16
550 - 11-05-16
551 - 12-05-16
552 - 13-05-16
553 - 13-05-16
554 - 14-05-16
555 - 14-05-16
556 - 15-05-16
557 - 15-05-16
558 - 18-05-16
559 - 19-05-16
560 - 22-05-16
561 - 23-05-16
562 - 24-05-16
563 - 25-05-16
564 - 26-05-16
565 - 27-05-16
566 - 31-05-16
567 - 31-05-16
568 - 02-06-16
569 - 03-06-16
570 - 04-06-16
571 - 05-06-16
572 - 05-06-16
573 - 06-06-16
574 - 08-06-16
575 - 09-06-16
576 - 12-06-16
577 - 15-06-16
578 - 16-06-16
579 - 26-06-16
580 - 27-06-16
581 - 20-07-16
582 - 24-07-16
583 - 04-08-16
584 - 05-08-16
585 - 06-08-16
586 - 07-08-16
587 - 10-08-16
588 - 11-08-16
589 - 12-08-16
590 - 16-08-16
591 - 17-08-16
592 - 17-08-16
593 - 18-08-16
594 - 21-08-16
595 - 22-08-16
596 - 22-08-16
597 - 23-08-16
598 - 24-08-16
599 - 24-08-16
600 - 25-08-16
601 - 26-08-16
602 - 28-08-16
603 - 29-08-16
604 - 30-08-16
605 - 31-08-16
606 - 03-09-16
607 - 07-09-16
608 - 08-09-16
609 - 09-09-16
610 - 10-09-16
611 - 10-09-16
612 - 10-09-16
613 - 10-09-16
614 - 11-09-16
615 - 12-09-16
616 - 13-09-16
617 - 14-09-16
618 - 15-09-16
619 - 16-09-16
620 - 17-09-16
621 - 18-09-16
622 - 19-09-16
623 - 20-09-16
624 - 21-09-16
625 - 22-09-16
626 - 22-09-16
627 - 23-09-16
628 - 23-09-16
629 - 24-09-16
630 - 24-09-16
631 - 25-09-16
632 - 26-09-16
633 - 27-09-16
634 - 28-09-16
635 - 29-09-16
636 - 30-09-16
637 - 01-10-16
638 - 02-10-16
639 - 03-10-16
640 - 03-10-16
641 - 04-10-16
642 - 04-10-16
643 - 05-10-16
644 - 05-10-16
645 - 05-10-16
646 - 10-10-16
647 - 11-10-16
648 - 13-10-16
649 - 13-10-16
650 - 16-10-16
651 - 17-10-16
652 - 20-10-16
653 - 21-10-16
654 - 23-10-16
655 - 23-10-16
656 - 25-10-16
657 - 26-10-16
658 - 28-10-16
659 - 29-10-16
660 - 30-10-16
661 - 31-10-16
662 - 02-11-16
663 - 03-11-16
664 - 04-11-16
665 - 06-11-16
666 - 07-11-16
667 - 08-11-16
_______________________________
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: Community Wad

Postby nachonal986 » 09 Nov 2016, 06:01

thks dude!
I'll do.

anyways into the build deck it's impossible right?
User avatar
nachonal986
 
Posts: 83
Joined: 27 Jul 2015, 21:13
Has thanked: 17 times
Been thanked: 1 time

Re: Community Wad

Postby Xander9009 » 09 Nov 2016, 06:18

Oh, I'm sorry. Do you mean which cards were added to the decks themselves? No, there's no way to do that. Unless you have a backup of the deck from before it was changed, then that information is not stored anywhere.
_______________________________
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: Community Wad

Postby Splinterverse » 09 Nov 2016, 10:08

thefiremind wrote:
Splinterverse wrote:is there a way to "recommend" a multiple choice value to the AI? I know how to check if it's AI and force it to choose, but I'm looking for something along the lines of how we tell it who/what to target.
As most of the times, I'm not sure what you mean without a practical example. If you need to restrict the targets for the AI you can check if it's AI inside a TARGET_DEFINITION and add filters for the AI only. I used to do that a lot in the past, now I trust the AI more and almost never do it.
Thanks for the input. I will implement these and give them a try on Friday.

As for the AI question. An example I could give is a card like Ice Cave. The multiple choice gives players the option to "do nothing" or counter spells (i.e., one choice is good for the opponent and the other is not). I was thinking how can I let the AI know that it might be a good idea to click counter spell when the choices are presented. Not a big deal. I was just wondering if there was something I should be doing to make multiple choice more intelligible for the AI.
---------------------------------------------
The DOTP2014 CW is updated nightly between 11 PM and 12 AM EST.
Known Issues/Bugs |
Impossible Cards List | Update Your Land Pools
Splinterverse
 
Posts: 918
Joined: 04 Sep 2016, 13:32
Has thanked: 150 times
Been thanked: 76 times

Re: Community Wad

Postby Splinterverse » 09 Nov 2016, 10:13

tmxk2012917 wrote:A bug of Verdurous Gearhulk:

When it entered the battleground, I put 4 counters on Rashmi, but all the counters put in this way disappeared at the end of my turn.
This has been fixed and uploaded. It should appear in the next update to the .wad. Thank you for reporting this. Much appreciated!
---------------------------------------------
The DOTP2014 CW is updated nightly between 11 PM and 12 AM EST.
Known Issues/Bugs |
Impossible Cards List | Update Your Land Pools
Splinterverse
 
Posts: 918
Joined: 04 Sep 2016, 13:32
Has thanked: 150 times
Been thanked: 76 times

Re: Community Wad

Postby Link666 » 09 Nov 2016, 14:30

Hey, I've been using this CW for a long time (older version) downloaded the latest wads (23.9.2016), and now the werewolves do not flip. In the olders cw wads they would flip and the art would stay the same. No problem. I've searched here and cannot seem to find a way to fix it. Any help? Thank you.
Link666
 
Posts: 8
Joined: 09 Nov 2016, 14:23
Has thanked: 1 time
Been thanked: 0 time

Re: Community Wad

Postby tmxk2012917 » 09 Nov 2016, 15:19

Link666 wrote:Hey, I've been using this CW for a long time (older version) downloaded the latest wads (23.9.2016), and now the werewolves do not flip. In the olders cw wads they would flip and the art would stay the same. No problem. I've searched here and cannot seem to find a way to fix it. Any help? Thank you.
Why not try the latest version updated yesterday.
tmxk2012917
 
Posts: 164
Joined: 15 Mar 2015, 09:52
Has thanked: 20 times
Been thanked: 12 times

Re: Community Wad

Postby Link666 » 09 Nov 2016, 15:45

Downloaded DATA DLC COMMUNITY CORE wad and DATA DLC CW ART UPDATE wad from google drive, still none of them flip.
Link666
 
Posts: 8
Joined: 09 Nov 2016, 14:23
Has thanked: 1 time
Been thanked: 0 time

PreviousNext

Return to 2014

Who is online

Users browsing this forum: No registered users and 2 guests

Main Menu

User Menu

Our Partners


Who is online

In total there are 2 users online :: 0 registered, 0 hidden and 2 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 2 guests

Login Form