Welcome to this page that compiles a variety of ETCG mods that have been edited by Lenga and Noelle for compatibility with PHP 8. For mods actually written by Lenga, see here.
These multiple interconnected functions include show needed as list and are therefore combined in one textarea. By Dite.
Shows cards from a given category as text. By Caitlin.
There are currently no cards under this category.
Show mastery badges in groups. By Rizu.
Takes a category and divides it into subcategories based on your criteria. By Lina.
By Andie. Source in Discord.
Interleaved images of two collecting decks. By Kriss.
num_rows("SELECT * FROM `trades` WHERE `tcg`='$tcgid' AND `receiving` LIKE '%$card1%'"); $pending2 = $database->num_rows("SELECT * FROM `trades` WHERE `tcg`='$tcgid' AND `receiving` LIKE '%$card2%'"); if ( in_array($card1, $cards1) ) echo ''; else if ( $pending1 > 0 ) { echo ''; } else { echo ''; } $breakcounter++; if ( $row1['puzzle'] == 0 ) { echo ' '; } if ( $breakpoint !== '0' && $breakcounter % $breakpoint == 0 ) { echo ''; } if ( in_array($card2, $cards2) ) echo ''; else if ( $pending2 > 0 ) { echo ''; } else { echo ''; } $breakcounter++; if ( $row2['puzzle'] == 0 ) { echo ' '; } if ( $breakpoint !== '0' && $breakcounter % $breakpoint == 0 ) { echo ''; } } ?>
The "sort" field in ETCG can be used for this purpose. Original creator unknown, found and edited by Noelle.
num_rows("SELECT * FROM `trades` WHERE `tcg`='$tcgid' AND `receiving` LIKE '%$card%'"); if ( in_array($card, $cards) ) echo ''; else if ( $pending > 0 ) { echo ''; } else { echo ''; } if ( $row['puzzle'] == 0 ) { echo ' '; } if ( $row['break'] !== '0' && $i % $row['break'] == 0 ) { echo ''; } } ?>
Insert text here.