omegablast2002@yahoo.com
dbbf5e4cb6
added the support to fix avatar of might...you can now do
...
otherrestriction=type(creature|mybattlefield)~lessthan~type(creature|opponentbattlefield)-3
which means, if the statement above is true you can play the card....if you subtract 3 from the amount the opponent has in creatures, and you are still less then the opponent...then that means he has atleast 4 more creatures than you do.
so right after the type(blah) you can add +number or -number...and it will modify the amount to compare.
2011-07-08 10:47:28 +00:00
..
2010-11-16 00:55:16 +00:00
2011-06-02 07:01:42 +00:00
2011-07-03 08:47:51 +00:00
2011-05-29 04:40:13 +00:00
2011-05-04 10:02:47 +00:00
2011-05-29 04:40:13 +00:00
2011-06-02 06:14:28 +00:00
2011-07-03 08:47:51 +00:00
2011-04-28 05:01:06 +00:00
2011-07-04 19:09:19 +00:00
2010-11-16 00:55:16 +00:00
2011-06-02 17:11:10 +00:00
2011-05-09 18:10:10 +00:00
2011-07-04 19:09:19 +00:00
2010-11-16 00:55:16 +00:00
2010-11-16 00:55:16 +00:00
2011-05-08 11:56:25 +00:00
2011-06-02 06:14:28 +00:00
2011-05-29 04:40:13 +00:00
2010-12-01 08:22:17 +00:00
2010-11-16 00:55:16 +00:00
2011-01-31 14:21:46 +00:00
2011-04-21 06:35:44 +00:00
2011-07-07 07:37:17 +00:00
2011-06-03 20:01:50 +00:00
2011-05-28 05:00:40 +00:00
2011-07-05 13:02:41 +00:00
2011-07-04 19:09:19 +00:00
2009-06-15 01:01:57 +00:00
2011-04-24 10:33:38 +00:00
2011-06-15 09:52:11 +00:00
2010-11-16 00:55:16 +00:00
2011-05-23 11:46:04 +00:00
2011-07-03 08:47:51 +00:00
2011-05-06 06:40:00 +00:00
2011-06-04 16:22:45 +00:00
2011-07-07 08:26:01 +00:00
2011-07-05 13:02:41 +00:00
2011-07-05 13:02:41 +00:00
2011-06-04 16:22:45 +00:00
2011-07-03 08:47:51 +00:00
2011-01-11 10:11:15 +00:00
2011-04-20 07:50:00 +00:00
2011-07-04 19:09:19 +00:00
2011-04-21 22:48:22 +00:00
2010-10-24 05:55:24 +00:00
2011-05-29 04:40:13 +00:00
Resuming on my threading support work with the card caching mechanism. This change unfortunately touches quite a few files, but I needed to get it out of the way before things got out of hand: one significant hurdle is the assumed lifetime of a JQuad pointer. In a single threaded model, the life time of the pointer is clear: you fetch it into the cache, the cache makes room, you use the pointer immediately. In a multithreaded context however, it's unsafe, as the drawing thread can request a few JQuads, and the cache operating on a separate thread can potentially bounce a JQuad out of the cache before the draw routine is done using it, which ends up in an access violation when you attempt to draw using an invalidated quad pointer. To prevent this, the bulk of this change swaps out the use of naked JQuad* pointers in the code with a JQuadPtr, which is basically a typedef to a boost shared_ptr<JQuad>.
2011-02-01 10:37:21 +00:00
2011-04-21 22:48:22 +00:00
2011-05-29 04:40:13 +00:00
2011-05-07 12:43:00 +00:00
2010-11-16 00:55:16 +00:00
Resuming on my threading support work with the card caching mechanism. This change unfortunately touches quite a few files, but I needed to get it out of the way before things got out of hand: one significant hurdle is the assumed lifetime of a JQuad pointer. In a single threaded model, the life time of the pointer is clear: you fetch it into the cache, the cache makes room, you use the pointer immediately. In a multithreaded context however, it's unsafe, as the drawing thread can request a few JQuads, and the cache operating on a separate thread can potentially bounce a JQuad out of the cache before the draw routine is done using it, which ends up in an access violation when you attempt to draw using an invalidated quad pointer. To prevent this, the bulk of this change swaps out the use of naked JQuad* pointers in the code with a JQuadPtr, which is basically a typedef to a boost shared_ptr<JQuad>.
2011-02-01 10:37:21 +00:00
2011-05-08 11:56:25 +00:00
2011-07-04 19:09:19 +00:00
2011-07-03 08:47:51 +00:00
2011-05-13 03:40:38 +00:00
2011-02-09 20:42:19 +00:00
2011-04-29 17:30:57 +00:00
2011-06-02 06:14:28 +00:00
2011-07-08 10:47:28 +00:00
2010-11-16 00:55:16 +00:00
2011-04-23 09:54:19 +00:00
2011-05-15 14:38:41 +00:00
2011-05-13 03:40:38 +00:00
2011-03-31 16:39:28 +00:00
2011-01-28 06:00:51 +00:00
2011-06-02 07:01:42 +00:00
2011-05-05 05:51:50 +00:00
2011-05-29 04:40:13 +00:00
2010-11-16 00:55:16 +00:00
2010-11-16 00:55:16 +00:00
2011-03-13 21:19:02 +00:00
2011-04-24 10:33:38 +00:00
2011-02-06 11:35:40 +00:00
2011-05-07 04:48:56 +00:00
2011-05-23 11:46:04 +00:00
2011-04-20 07:50:00 +00:00
2011-06-02 05:33:45 +00:00
2011-05-29 04:40:13 +00:00
2011-03-02 13:41:24 +00:00
2011-04-29 17:30:57 +00:00
2011-01-08 12:24:39 +00:00
2011-04-20 07:50:00 +00:00
2010-11-16 00:55:16 +00:00
2011-07-03 08:47:51 +00:00
2011-06-22 05:06:54 +00:00
2011-06-04 16:22:45 +00:00
2010-12-01 08:22:17 +00:00
Resuming on my threading support work with the card caching mechanism. This change unfortunately touches quite a few files, but I needed to get it out of the way before things got out of hand: one significant hurdle is the assumed lifetime of a JQuad pointer. In a single threaded model, the life time of the pointer is clear: you fetch it into the cache, the cache makes room, you use the pointer immediately. In a multithreaded context however, it's unsafe, as the drawing thread can request a few JQuads, and the cache operating on a separate thread can potentially bounce a JQuad out of the cache before the draw routine is done using it, which ends up in an access violation when you attempt to draw using an invalidated quad pointer. To prevent this, the bulk of this change swaps out the use of naked JQuad* pointers in the code with a JQuadPtr, which is basically a typedef to a boost shared_ptr<JQuad>.
2011-02-01 10:37:21 +00:00
2011-04-23 13:24:19 +00:00
2011-02-06 11:35:40 +00:00
2011-05-16 23:19:08 +00:00
2011-07-07 11:39:06 +00:00
2011-05-26 12:27:44 +00:00
2011-07-03 08:47:51 +00:00
2010-11-16 00:55:16 +00:00
2011-05-07 04:10:47 +00:00
2011-01-08 12:24:39 +00:00
2011-04-14 17:06:44 +00:00
2011-01-21 20:18:56 +00:00
2011-04-21 02:35:51 +00:00
2011-05-26 21:24:17 +00:00
2010-11-16 00:55:16 +00:00
2011-07-03 08:47:51 +00:00
2011-07-07 07:37:17 +00:00
2011-04-19 07:12:05 +00:00
2011-04-29 13:24:02 +00:00
2011-05-15 18:41:40 +00:00
2011-04-21 13:16:11 +00:00
2011-06-04 16:22:45 +00:00
2011-07-07 07:37:17 +00:00