WebAuctionPlus

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

paranoidjack

New Member
Jul 29, 2019
3
0
0
WebAuctionPlus- eBay for Minecraft!

There's already a Tekkit item pack for this plugin but none for FTB. Is anyone interested in coming together to help make one for FTB, the ultimate modpack in mind...

I've already done some of the plugins however it's a mammoth task - requires to identify each block ID per mod and create a 3D 32x32 thumbnail for it. At the moment I'm using the same thumbnail per mod, however with more people helping individual ones wouldn't take that long.

Example of the Applied Energistics :

Code:
<?php if(!defined('DEFINE_INDEX_FILE')){if(headers_sent()){echo '<header><meta http-equiv="refresh" content="0;url=../"></header>';}else{header('HTTP/1.0 301 Moved Permanently'); header('Location: ../');} die("<font size=+2>Access Denied!!</font>");}
// AppliedEnergistics - item definitions
$Items = &ItemFuncs::$Items;
$pack  = 'AppliedEnergistics';
 
$Items[2510]=array(
  0 =>array(
    'name'=>'ME Cable Blue',
    'icon'=>'AppliedEnergistics.png',
    'pack'=>$pack),
  1 =>array(
    'name'=>'ME Pattern Provider',
    'icon'=>'AppliedEnergistics.png',
    'pack'=>$pack),
  2 =>array(
    'name'=>'ME Controller',
    'icon'=>'AppliedEnergistics.png',
    'pack'=>$pack),
  3 =>array(
    'name'=>'ME Drive',
    'icon'=>'AppliedEnergistics.png',
    'pack'=>$pack),
  4 =>array(
    'name'=>'ME Pattern Encoder',
    'icon'=>'AppliedEnergistics.png',
    'pack'=>$pack),
);
$Items[4371]=array(
  'name'=>'Quartz Cutting Knife',
  'icon'=>'AppliedEnergistics.png',
  'pack'=>$pack);
$Items[4463]=array(
  'name'=>'Entropy Accelerator',
  'icon'=>'AppliedEnergistics.png',
  'pack'=>$pack);
$Items[4464]=array(
  'name'=>'Vibration Catalyst',
  'icon'=>'AppliedEnergistics.png',
  'pack'=>$pack);
unset($Items);
?>

Anyone up for it ?