Item sorter with multiple items per tickHow can I break a minecart with the environment without destroying it?How to power a row of droppers efficiently from side or bottom?Automatic item recognitionAll items not removed from brewing stand in automated brewing systemCounting items in a chestRedstone circuits in spawn chunks in Minecraft SMP and no players onlineSystem with multiple inputs, but when one is activated it disables the other inputsSignal directing on lanesLong Minecraft Delays (1.12.2)Detect an Empty Hopper in MC 1.12.2
Can an Area of Effect spell cast outside a Prismatic Wall extend inside it?
How to have a sharp product image?
What makes accurate emulation of old systems a difficult task?
Alignment of various blocks in tikz
Is there really no use for MD5 anymore?
What's the polite way to say "I need to urinate"?
Why was the Spitfire's elliptical wing almost uncopied by other aircraft of World War 2?
Pre-plastic human skin alternative
How to pronounce 'c++' in Spanish
Partitioning the Reals into two Locally Uncountable, Dense Sets
What is the most expensive material in the world that could be used to create Pun-Pun's lute?
"You've called the wrong number" or "You called the wrong number"
Can we say “you can pay when the order gets ready”?
How to not starve gigantic beasts
Is it idiomatic to construct against `this`
How much cash can I safely carry into the USA and avoid civil forfeiture?
Rivers without rain
What does ゆーか mean?
Is this homebrew Wind Wave spell balanced?
Why do games have consumables?
Pulling the rope with one hand is as heavy as with two hands?
Two field separators (colon and space) in awk
Should the Death Curse affect an undead PC in the Tomb of Annihilation adventure?
What term is being referred to with "reflected-sound-of-underground-spirits"?
Item sorter with multiple items per tick
How can I break a minecart with the environment without destroying it?How to power a row of droppers efficiently from side or bottom?Automatic item recognitionAll items not removed from brewing stand in automated brewing systemCounting items in a chestRedstone circuits in spawn chunks in Minecraft SMP and no players onlineSystem with multiple inputs, but when one is activated it disables the other inputsSignal directing on lanesLong Minecraft Delays (1.12.2)Detect an Empty Hopper in MC 1.12.2
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
General Info
I'm playing on a server where they modified the hoppers to pass 8 items per tick instead of 1.
The system I want to build
I'm working on a casino game. User tosses 1 item into a hopper. This activates the casino making the user win or lose.
The problem
An item sorter is required to prevent the user from tossing in different items. Whether this is a hopper that only allowes 1 type of item to enter or 1 that filters out different item types does not matter.
The problem is the hoppers passing 8 items per tick. Say there are 18 stacked items inside a hopper. 1 is tossed in, activating the redstone signal. Instead of that 1 item passing through to the next hopper, 8 are passed through at once, leaving only 11 stacked items into the "sorter hopper". So now the next player would have to toss in 8 items instead of 1 in order for it to activate the redstone signal again.
Is there some way I can solve this issue?
Some extra info that might be usefull
The game doesn't require an item sorter to work. Without redstone, a single item gets passed through the hoppers just fine. I just need to prevent players from tossing in other items than the one required. So any solution to that end is perfect.
What I've tried myself
I've tried the classic item sorter method passing "wrong" items on to a different hopper and I've tried the "1 item type only" method where the input hopper only accepts that item type. Both resulted in the same issue.
minecraft minecraft-redstone
add a comment |
General Info
I'm playing on a server where they modified the hoppers to pass 8 items per tick instead of 1.
The system I want to build
I'm working on a casino game. User tosses 1 item into a hopper. This activates the casino making the user win or lose.
The problem
An item sorter is required to prevent the user from tossing in different items. Whether this is a hopper that only allowes 1 type of item to enter or 1 that filters out different item types does not matter.
The problem is the hoppers passing 8 items per tick. Say there are 18 stacked items inside a hopper. 1 is tossed in, activating the redstone signal. Instead of that 1 item passing through to the next hopper, 8 are passed through at once, leaving only 11 stacked items into the "sorter hopper". So now the next player would have to toss in 8 items instead of 1 in order for it to activate the redstone signal again.
Is there some way I can solve this issue?
Some extra info that might be usefull
The game doesn't require an item sorter to work. Without redstone, a single item gets passed through the hoppers just fine. I just need to prevent players from tossing in other items than the one required. So any solution to that end is perfect.
What I've tried myself
I've tried the classic item sorter method passing "wrong" items on to a different hopper and I've tried the "1 item type only" method where the input hopper only accepts that item type. Both resulted in the same issue.
minecraft minecraft-redstone
add a comment |
General Info
I'm playing on a server where they modified the hoppers to pass 8 items per tick instead of 1.
The system I want to build
I'm working on a casino game. User tosses 1 item into a hopper. This activates the casino making the user win or lose.
The problem
An item sorter is required to prevent the user from tossing in different items. Whether this is a hopper that only allowes 1 type of item to enter or 1 that filters out different item types does not matter.
The problem is the hoppers passing 8 items per tick. Say there are 18 stacked items inside a hopper. 1 is tossed in, activating the redstone signal. Instead of that 1 item passing through to the next hopper, 8 are passed through at once, leaving only 11 stacked items into the "sorter hopper". So now the next player would have to toss in 8 items instead of 1 in order for it to activate the redstone signal again.
Is there some way I can solve this issue?
Some extra info that might be usefull
The game doesn't require an item sorter to work. Without redstone, a single item gets passed through the hoppers just fine. I just need to prevent players from tossing in other items than the one required. So any solution to that end is perfect.
What I've tried myself
I've tried the classic item sorter method passing "wrong" items on to a different hopper and I've tried the "1 item type only" method where the input hopper only accepts that item type. Both resulted in the same issue.
minecraft minecraft-redstone
General Info
I'm playing on a server where they modified the hoppers to pass 8 items per tick instead of 1.
The system I want to build
I'm working on a casino game. User tosses 1 item into a hopper. This activates the casino making the user win or lose.
The problem
An item sorter is required to prevent the user from tossing in different items. Whether this is a hopper that only allowes 1 type of item to enter or 1 that filters out different item types does not matter.
The problem is the hoppers passing 8 items per tick. Say there are 18 stacked items inside a hopper. 1 is tossed in, activating the redstone signal. Instead of that 1 item passing through to the next hopper, 8 are passed through at once, leaving only 11 stacked items into the "sorter hopper". So now the next player would have to toss in 8 items instead of 1 in order for it to activate the redstone signal again.
Is there some way I can solve this issue?
Some extra info that might be usefull
The game doesn't require an item sorter to work. Without redstone, a single item gets passed through the hoppers just fine. I just need to prevent players from tossing in other items than the one required. So any solution to that end is perfect.
What I've tried myself
I've tried the classic item sorter method passing "wrong" items on to a different hopper and I've tried the "1 item type only" method where the input hopper only accepts that item type. Both resulted in the same issue.
minecraft minecraft-redstone
minecraft minecraft-redstone
asked 7 mins ago
icecubicecub
1085
1085
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "41"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgaming.stackexchange.com%2fquestions%2f350567%2fitem-sorter-with-multiple-items-per-tick%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Arqade!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgaming.stackexchange.com%2fquestions%2f350567%2fitem-sorter-with-multiple-items-per-tick%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown