-
Posts
1,951 -
Joined
-
Last visited
-
Days Won
19
Content Type
Profiles
Forums
Gallery
Downloads
Articles
Posts posted by Amusements
-
-
Thanks Ross:)
It is always a treat to play games I have never seen before!
-
1
-
-
You can add Tags to each game, and then use the Filter function in Game Manager to load just your favourites.
Open a layout and click Configuration and you will see a Tags box at the bottom. Enter any letter/number/string to make your own Tag. You can add as many as you want separated by a space and save (F7)
-
1
-
-
On 13/05/2026 at 20:31, VenumX said:
But if (like me) you like cabinet making, it would be awesome if ipac was available for currency in and output
If you have a "Pulse" bill acceptor and a Leonardo Arduino board - you can trigger the 'V' input to add credits. There is some code on one of the old posts I started that still works. I put Note X into my change machine and get a 5 Pound credit.
-
1
-
-
I use the same tokens you find on aliexpress ect (25 and 28mm), but I also use the big cheap black serial hoppers, and the smaller blue hoppers for other coins. My cab has 5 hoppers wired up into it.
-
@HongKong PhooeyAwesome work!!! A big thanks to you and the rest of the team:)
Just ran this on Win11 and it ran perfectly, so I cant wait to stick this on my Cab.
-
1
-
-
Good luck with this.
Just make sure the hopper has some ball bearings in the bit that spins round. I had one once that had none because someone wanted to save 1p. And also make sure that the bar that makes/breaks the infra red beam is in the correct position as it has 2 settings.
-
1
-
-
I don't see any triac settings that are wrong above. You do have Meter 4 x2 missing on the meter inputs though.
My set up is slightly different as I have a separate hopper for 10p out that just uses triac 2 out with no multiplier.
-
1
-
-
Sounds like your setting are wrong. What is the name of the machine your having problems with? I will compare your settings with mine.
-
I used to have the older version of this called Derby Stakes (6 players). I once had environmental health come round with a sound meter to measure the volume of it across the road from my arcade, because someone in a high rise complained about the noise. That went nowhere!
Apparently the manufacturers in Oldham closed in 2024.
Coin-op amusements news | Whittaker Brothers closes its doors | InterGame
-
1
-
-
You could run Task Manager (Ctrl/Alt/Del) and view CPU and GPU % and view the performance. 8 GB of Ram might not be enough.
-
No issues for me using edge from Asia.
-
Each layout has an xxxxxx.fml file which keeps all the layout/config settings and is updated when you save(F7). An xxxxx.fml.bak file is just a backup.
-
1
-
-
The Ipac only controls inputs. IE: buttons and the Opto sensor on a hopper (Coin out). You will also need a PacDrive with a special ID for actually running a hopper motor, and lighting up any buttons.
There are numerous threads in the Cabinet section with lots of incite, including various types of hoppers and coin mechs.
-
Or you can press 'F3' for full screen or 'shift+F3' for full screen stretched.
-
2
-
-
I always keep a back up of each layout and put in a DX or Classic folder.
I then copy each layout, reset the RAM, top up any hoppers, make sure the sound is on full, and edit the layout for my cabinet in config... I also add a TAG.
You can put in the tag box anything you want, so long as it is one string of characters, and you separate each TAG by a space. Then you can use the filter option in Game Manager.
I then split my layouts in to hopper pay-out configurations.
I then add TAGS to each layout
-
1
-
-
I think you should buy an Arduino kit and play with some code on chat GPT.
Get one of them Arduinos with built in wifi and you should be able to press a button on your phone for a coin out.
-
19 hours ago, Ginge said:
Just wondering is there a reason you picked these hoppers rather than a 12v/24v hopper.
Yes....These are cheap from China, and 12/24v hoppers are not readily available here unless you pay a fortune in postage.
As an example.
Here is a 24v (The only one I can find online here) and it is 82 Squid.
https://shopee.co.th/Coin-Hopper-for-Coin-Exchnage-Machine-i.230857249.22046526098A 220v like the big black one I have, is easy to find, and only cost around 20 Squid, and can hold 1000 tokens.
-
1
-
-
-
5 hours ago, Road Hog Mad said:
Do you have a wire diagram for a button press?
Is it possible for a keyboard press?
If you change the relay that says PACDRIVE to a switch or button it will spin the hopper until a coin spit out.
//pins
const int pulse = 2;
const int opto = 4;
const int motor = 12;int relaya = 0; // off
int relayb = 0; // offvoid setup() {
// output:
pinMode(motor, OUTPUT);
// input:
pinMode(pulse, INPUT);
pinMode(opto, INPUT);
}void loop() {
relaya = digitalRead(pulse);
if (relaya == HIGH) {
digitalWrite(motor, HIGH);
}relayb = digitalRead(opto);
if (relayb == HIGH) {
digitalWrite(motor, LOW);
}
} -
I have done a few things regarding payouts without using a layout.
A key switch that you turn to rotate the hopper (It simply connects the 220v to the hopper motor)
An old kids money box that sets off a couple of timers that spit out x amount of coins, when you insert a note or piece of paper.
A JY-142 board from Aliexpress that converts pulses in - to credits/coins out.
An Arduino Uno that converts a button press to a coin out. (Based on the simple "press a button to light an led" free example)
Another Arduino Uno that converts notes in to key presses using my note acceptor.
I have some old threads in the cab section.
I think it might be possible to make some sort of change machine based on MFME, using some of these new AI tools to program and assemble some code?
-
6 hours ago, Boulderdash said:
Is there a buttons FAQ?
F12 switches between short and long-term meters, for example.
Is there a list of all others? Is there one to reload the layout without saving the ram?
There are these:
-
3
-
-
Ouch!!!
I know how much work it takes to set up layouts on a cab... Mine is set up for over 2000 layouts, and that has taken me a couple of years to do.
The only thing that helped me was to make a Pacdrive template. Once I set the buttons in a layout, I load the Pacdrive template and click Config in Pacdrive settings to fill in the lamp fields. Other than that, it's a lot of time-consuming work.
If he can find someone else with a similar set up and copy their layout folder that would help.
For setting up the coin inputs, this is what I use now to set things up. CREDIT BUTTONS TEST.zip Run this in a separate MFME window and put in to Edit mode, and you can copy and paste the buttons into your layout to test different settings.
-
1
-
-
In simple terms,
The Pacdrive spins up the hopper motor, and the Ipac tells the hopper to stop spinning after a coin passes the optical sensor.
Here is 1 example.
When you get a 1 coin hopper payout, the Pacdrive sends out 5v to a pin out IE: 16. (Or up to 48v with external power.)
This 5v output is what you connect to a relay that completes the circuit to power the hopper motor. (I use 220v hoppers).
The hopper spins round until a coin passes through the optical sensor. This is where the Ipac comes in.
The Ipac is waiting for a connection to be made between ground and a pin on the board you set for the "[" or "]" input. This is done with another relay. I use a 12v one as it is the same voltage as my opto board. When the opto board senses the coin pass, it sends a signal to my relay and that makes the right connection on the Ipac telling the hopper motor to stop spinning.
-
Ultimarc is the main supplier.
Output :: LED and Output Controllers :: PAC Drive (ultimarc.com)
-
1
-

Coin Payout Tray Ideas for a new cabinet build
in Cabinet Building
Posted
Similar to your bread tin, I find baking trays cut in half a good fit. A thick good quality one has a good sound when coins hit it.