Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - JJTheKing

Pages: [1] 2
1
Themes / Re: Python Theme Maker
« on: February 02, 2025, 07:35:54 PM »
your welcome

2
Themes / Python Theme Maker
« on: February 01, 2025, 06:21:30 PM »
Just Wanted To Re Introduce My Theme Maker Using Python

The Gui Lets You Pick The Settings You Want (Has Hover Over Text)
Check Boxes, Dropdowns, Tons Of Dif Wheels To Choose From

Also Has Emulator.cfg Maker Using arguments For Mame Or Retroarch

Romlist (Collums) Editor

Sample Viewer

https://www.mediafire.com/file_premium/makbm2iem0zi14f/BLM2.1c-PRU.7z/file

3
Scripting / Re: Show Letter when jumping to next...
« on: November 02, 2024, 12:33:38 PM »
# Search Skip by letters LT + RT Buttons

{
local rtime = 0
local glob_time = 0
local glob_delay = 1250
local trigger_letter = false
local letter_x = 0.5
local letters = fe.add_image("", 1820, 10, 100, 50)

fe.add_transition_callback( "letter_transition" )
function letter_transition( ttype, var, ttime )
{
if( ttype == Transition.ToNewList)
    rtime = glob_time
}
fe.add_ticks_callback( "letter_tick" )
function letter_tick( ttime )
{
glob_time = ttime

if( glob_time - rtime > glob_delay )
    letters.visible = false // hide letter search if present

if( trigger_letter == true )
{
    local firstl = fe.game_info(Info.Title)
    letters.file_name = FeConfigDirectory + "layouts/Dark/meta/letters/regular/" + firstl.slice(0,1).tolower() + ".png" //change to your layout name
    letters.visible = true
    letters.zorder = 10
}
    trigger_letter = false
}

fe.add_signal_handler( "letter_signal" )
function letter_signal( str )
{
switch( str )
{
    case "next_letter":
    case "prev_letter":
    rtime = glob_time
    trigger_letter = true
    break
}
return false
}
}

4
Themes / AM-Main Theme
« on: August 04, 2024, 11:30:20 AM »
New Basic AM Theme I Made For Attract Mode +

Scrolling Stories Lots of Meta Will Need Editing if You Dont Have Them

Romlist Will Have To Be Edited For Some Meta To Show. Will Look Like This
 
1944;1944: The Loop Master (USA 000620);Arcade;;2000;Capcom;Shooter;2;horizontal;8 way;;;;;;RA;3;;;;Everyone

You Will Also Need The wheel.nut v.1.28 & inertia.nut v.2.42 file in Your Modules Folder

https://www.mediafire.com/file/u16comm05hw7p70/AM-Main.7z/file

5
Scripting / Re: Basic Layout Maker2.1c
« on: July 28, 2024, 01:14:47 PM »
ive never thought about that. i would think you could by adding some code but i would ask them

6
Scripting / Re: Basic Layout Maker2.1c
« on: July 13, 2024, 07:18:49 AM »
Updated As Of 07/13/2024

7
Scripting / Re: Basic Layout Maker2.0
« on: June 04, 2024, 08:41:52 PM »
thanks

8
Scripting / Basic Layout Maker2.1c
« on: May 11, 2024, 10:09:10 PM »
Basic Layout Maker v.2.1c

For Attract Mode +

1.Pick Your Layout Size. 1920x1080 For Now.

2.Pick The Modules You Want To Use. *Tooltip Added To Each*

3.Pick Your Video Size. This Puts It In The Middle Of The Screen.

4.Pick The Wheel You Want To Use. *Must Select The Wheel Module* 36 Wheels Added

5.Check If You Want To Have The Main Logo Pulse When Selected. *Must Select The Wheel Module*

6.Check if You Want To Add Boxart. Left or Right Side.

7.Check if You Want Meta Added Left Or Right Side Of Boxart.

8.Check if You Want Meta To Go Around The Snap.

9.Check if You Want a Game Counter.

10.Check if You Want To Add System Display.

11.Check if You Want To Add Date & Time.

12.Pick if You Want Stories Left or Right Side.

13.Click on Sample Gallery Button To View Sample Layouts.

14.Save The Layout To Your Layout Folder Of Choice. Make Sure To Name It Layout.nut.

15.Added Other Tools That I Made. Romlist Editor, Retroarch cfg Maker, Mame cfg Maker, And Added Sample Viewer

This Is Just To Get You Started. Still Testing And Adding Other Stuff. ChatGPT Wrote Most Of The Code.

Made With Python And Pyinstaller. Antivirus Software Might Flag This As A False Positive And Delete It or Place It In Quarantine.

Ive Included a small build version 3.0.9 (B496) in the data folder you can place your new layout.nut files in the test folder just name them like layout1 and so on
you can switch between them by pressing T on the keyboard or Y on your controller.

https://www.mediafire.com/file/ql4svt865wbydfr/BLM2.1c-PRU.7z/file

9
Scripting / Re: Mame & Console CFG File Generator
« on: May 04, 2024, 09:00:44 PM »
works on both it just makes the cfg file for the emulator  to boot and show art

10
Scripting / Mame & Console CFG File Generator
« on: April 27, 2024, 12:01:45 AM »
*Mame & Console CFG File Generator* (Attract Mode Plus)

Click On The System Name Of Your Choice

Next Add Your Rom Ext Like .zip or .7z
Or If You Want To Add More Then One You Type .zip;.7z

Next Click On The Boxes Of The Folders You Want To Add For Your System

Then Click The Save CFG Button And Save It In Your Emulators Folder

https://www.mediafire.com/file/lsy2umhbkv8ifab/Mame-cfg-Maker.7z/file

11
Scripting / Retroarch CFG File Generator
« on: April 27, 2024, 12:00:13 AM »
*Retroarch CFG File Generator* (Attract Mode Plus)

Click On The System Name Of Your Choice

Next Add Your Rom Ext Like .zip or .7z
Or If You Want To Add More Then One You Type .zip;.7z

Next Click On The Boxes Of The Folders You Want To Add For Your System

Then Click The Save CFG Button And Save It In Your Emulators Folder
Remember To Name It The Same As Your System Folder

https://www.mediafire.com/file/g2dn9h9bkkuortg/Retroarch-cfg-Maker.7z/file

12
Scripting / Romlists Editor
« on: April 09, 2024, 07:31:53 PM »
my first windows gui using python. Romlist Editor that lets you add lets say you want to add the same name in ;Extra; i use this for emulator used there is a dropdown box that lets you pick one of the 21 selections then the box below is where you would type the new name then click the button below that box and it will add it to your romlists and then you can save it. i did all this with chatGPT 🙂 Romlists Editor (Columns)

https://www.mediafire.com/file/twexc8flzbnryau/RE2.0.zip/file

13
Themes / Re: GB_Layouts for Attract Mode 2.7.0
« on: April 07, 2024, 06:09:30 PM »
Very Cool Thank You

14
Themes / Re: Entertainment Center Theme
« on: March 10, 2024, 08:51:49 PM »
also did some updates to the website

15
Themes / Entertainment Center Theme
« on: November 29, 2023, 09:52:33 PM »
i made 2 themes grey ish white and dark wood entertainment center
box art will show on the left side and controller on the right side by editing the romlist for the controller

https://www.mediafire.com/file/yc8z4wj288cooz0/TV-Theme.7z/file

you will need to have the wheel module in your build i use v1.28

go here for more https://free-3980544.webador.com/

New Big Screen Tv Theme Added


Pages: [1] 2