ARCADE FOREVER

Open Source Advmenu commercial

« Older   Newer »
  Share  
view post Posted on 16/12/2019, 06:41     +2   +1   -1
Avatar

NOVEL

Group:
Member
Posts:
13
Reputation:
+2

Status:


I come to this topic to publicize the advmenu plus system that I have modified for street machines.

Download: https://github.com/pedrowarlock/advmenuPlu...omercial-system

Collaborate on the project with donations or your like (STAR) in the project. Your help means a lot. https://imgur.com/Mrz54Pt.png

https://imgur.com/nT59JQ7.png

Video Demo:
 
Top
Pequexo_Nemo
view post Posted on 19/12/2019, 16:26     +1   -1




Es un excelente y buen aporte ...
 
Top
view post Posted on 5/1/2020, 20:31     +1   -1
Avatar

V.I.P.

Group:
Member
Posts:
496
Reputation:
+31
Location:
Buenos Aires

Status:


Muy buen projecto ,has hecho algo similar en attract mode?
 
Web  Top
view post Posted on 6/1/2020, 12:59     +1   -1
Avatar

NOVEL

Group:
Member
Posts:
13
Reputation:
+2

Status:


Já fiz uma versão AttractMode comercial. Só preciso terminar
 
Top
view post Posted on 6/1/2020, 15:43     +1   -1
Avatar

V.I.P.

Group:
Member
Posts:
496
Reputation:
+31
Location:
Buenos Aires

Status:


Tienes alguna idea si es posible recargar este modulo sin necesidad de presionar una tecla, este modulo hace que recargue de nuevo el layout , me gustaria que lo haga automaticamente



// --------------------
// Load Modules
// --------------------
fe.load_module("helpers");

// --------------------
// Plugin User Options
// --------------------
class UserConfig </ help="A plugin that reloads layouts with a key press." /> {
</ label="Reload Layout Key",
help="The key that triggers the layout to reload. Use Custom 2. Remember to set the key in Controls. Set the key to R",
options="Custom1, Custom2, Custom3, Custom4, Custom5, Custom6",
order=1 />
reloadKey="Custom2";
}

// --------------------
// Reload
// --------------------
class Reload {
config = null;

reloadKey = null;


constructor() {
// Config
config = fe.get_config();

// Reload Layout
reloadKey = config["reloadKey"].tolower();
fe.add_signal_handler(this, "reload");

}

// Reload Layout on Key Press - R key
function reload(str) {
if (str == reloadKey) fe.signal("reload");
return false;
}
}
fe.plugin["Reload"] <- Reload();
 
Web  Top
4 replies since 16/12/2019, 06:41   737 views
  Share