aldostools / webMAN-MOD

Extended services for PS3 console (web server, ftp server, netiso, ntfs, ps3mapi, etc.)
https://aldostools.github.io/webMAN-MOD/
GNU General Public License v3.0
1.29k stars 176 forks source link

Support REBUG 4.84.2 ??? #409

Open KhangTran476 opened 4 years ago

KhangTran476 commented 4 years ago

Hello aldostools! After a long time return to PS3, will the latest version 1.47.30 still support REBUG 4.84.2? One more question: On update 1.47.24 Added detection of last number in name/title to sort games (XML/HTML) how can to sort the game to show on XMB by my favorite? Tell me detail of that! Thanks for advance! ^^

aldostools commented 4 years ago

1.47.30 should work on 4.84.2

For the favorite games, try putting the games in a sub-folder inside PS3ISO.

Also there is a template wm_custom.xml in the installer that you can place in the root of any device (hdd0, usb000, etc). You can customize it to execute custom web commands or mount your favorite games.

KhangTran476 commented 4 years ago

I have seen the file "wm_custom.xml" but could you please write me an example to sort each game in (dev_hdd0/GAMES/)? Because the games in this folder show mess up on the XMB PS3 Games. For example, in my GAMES folder there is (God of War 1, God of War 2, God of War 3) but it does not sort them in 1,2,3 order. Just help me write the sorting order of GOW 1, 2, and 3. I will add other games according to your template. Because I'm not really familiar with web code either. This is my file: https://drive.google.com/file/d/1Azg1n8l-kIHAyW4XzNW-GJaolFg_S14S/view?usp=sharing

aldostools commented 4 years ago

In https://github.com/aldostools/webMAN-MOD/blob/master/_Projects_/updater/pkgfiles/USRDIR/xmb/wm_custom.xml

You can replicate the table "webman_setup" with "wm_favorite01", "wm_favorite01", etc. And change /setup.ps3 with /mount.ps3/dev_hdd0/GAMES/yourgame1, etc.

        <Table key="wm_favorite01">
            <Pair key="icon"><String>/dev_hdd0//game/XMBMANPLS/USRDIR/IMAGES/settings.png</String></Pair>
            <Pair key="title"><String>Name of game 01</String></Pair>
            <Pair key="info"><String>Optional info</String></Pair>
            <Pair key="module_name"><String>idle_plugin</String></Pair>
            <Pair key="module_action"><String>http://localhost/mount.ps3/dev_hdd0/GAMES/yourgame1</String></Pair>
        </Table>
        <Table key="wm_favorite02">
            <Pair key="icon"><String>/dev_hdd0//game/XMBMANPLS/USRDIR/IMAGES/settings.png</String></Pair>
            <Pair key="title"><String>Name of game 02</String></Pair>
            <Pair key="info"><String>Optional info</String></Pair>
            <Pair key="module_name"><String>idle_plugin</String></Pair>
            <Pair key="module_action"><String>http://localhost/mount.ps3/dev_hdd0/GAMES/yourgame2</String></Pair>
        </Table>

Also need to replicate the line that contain the item "wm_custom_link01":

        <Item class="type:x-xmb/module-action" key="wm_fav_link01" attr="wm_favorite01"/>
        <Item class="type:x-xmb/module-action" key="wm_fav_link02" attr="wm_favorite02"/>

Another method is to create a custom HTML page and make it your home page in the PS3 Browser. The page can include simple links to web commands and games that you frequently mount.

Also you can uncheck the option PARAM.SFO in /setup.ps3, to let webMAN MOD use the folder name or ISO file name in the game lists. Then rename your favorite games with a prefix character (e.g. a minus character), so they are grouped together in at top of the list.

Remember that sLaunch GUI has a "favorite" option too. To access that menu hold Start button for 5 seconds on XMB. To add a game to the favorite list, select the game and press START button (the game will blink for 1 second). To toggle between the favorite list and the game list, press SELECT for 2 seconds. To remove a game from the favorite list, press SELECT to go the favorite list, select the game and press START.

KhangTran476 commented 4 years ago

Sorry! But I mean sort the game on XMB not about favorite game. On XMB, it's show mess up: God of War 2 God of War 1 God of War 3 or Call of Duty: Black Ops 2 Call of Duty: Black Ops 3 Call of Duty: Black Ops And please help me to fix to sort it like: God of War 1 God of War 2 God of War 3 or or Call of Duty: Black Ops Call of Duty: Black Ops 2 Call of Duty: Black Ops 3