Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
Added a games folder to the programs list
it includes one (unfinished) game so far called The Game Of Life
  • Loading branch information
alphe-lbp authored Nov 4, 2023
1 parent 4c561c0 commit af034ac
Show file tree
Hide file tree
Showing 2 changed files with 105 additions and 15 deletions.
67 changes: 55 additions & 12 deletions line.bat
Original file line number Diff line number Diff line change
Expand Up @@ -84,12 +84,10 @@ echo.
echo 1) Change terminal colors
echo 2) WiFi information
echo 3) Exit Control Panel
echo 4) Auto start WPE
set /p coption=Choose a setting to change:
if %coption%==1 call :scolor
if %coption%==2 goto wifi
if %coption%==3 goto rstart
if %coption%==4 goto autostart
goto cpanel

:wifi
Expand Down Expand Up @@ -124,23 +122,33 @@ goto cpanel
cls
goto start

:autostart
cls
copy ".\line.bat" "%APPDATA%\Microsoft\Windows\Start Menu\Programs\Startup"
echo Restart your computer and see the magic!
goto cpanel

:plist
echo 1) Notepad
echo 2) Task Manager
echo 3) Return to Start List
echo 3) Paint.Net
echo 4) Microsoft Paint 95
echo 5) Games [DIR]
echo 6) Return to Start List
set /p poption=Select a program from the Programs List:
if %poption%==1 call :notepadappcls
if %poption%==3 goto rstart
if %poption%==6 goto rstart
if %poption%==2 call :taskmgrcls
if %poption%==3 call :paintnet
if %poption%==4 call :mspaint
if %poption%==5 call :glist
goto plist
exit /b

:glist
echo.
echo Games [DIR]
echo 1) The Game Of Life
echo 2) Close folder
set /p goption=Select a game from the Games List:
if %goption%==1 call :tgol
if %goption%==2 goto plistcls
goto glist

:notepadappcls
cls
goto notepadapp
Expand All @@ -157,9 +165,44 @@ goto taskmgr
taskmgr
goto plist

:tgol
cls
echo ....Game Of Life!....
echo.
echo Character 1: David
echo Character 2: Lisa
echo Character 3: Archie
set /p chargol=Enter the name of the character of your choice!
if %chargol%==1 call :David
if %chargol%==2 call :Lisa
if %chargol%==3 call :Archie
cls
echo.
echo Please enter the name of the character of your choice.
goto tgol

:David
cls
echo Lady voice: David
pause
echo.
echo Lady voice: Daaaaaaviiiiiid
pause
echo.
echo Lady voice: Oh look he is waking up!
echo Man voice: Ah he is so handsome!
pause
cls
echo Doctor: (to you) Welcome to the world! (to the lady and man) Congratulations on your newborn baby!
echo Dad: Thank you very much doctor!
echo Doctor: You can be dismissed from the hospital anytime you want.
echo Mum: Thank you!
pause
cls

:aboutwpe
cls
echo Windows Pocket Edition - Version Alpha 0.0.3 (Build: A7) - Made by The Kernel Brothers
echo Windows Pocket Edition - Version Alpha 0.0.3 (Build: A8) - Made by The Kernel Brothers
echo.
pause
echo.
Expand All @@ -169,4 +212,4 @@ cls
goto start

:discord
start https://discord.gg/ZPhV9kT3gq
start https://discord.gg/ZPhV9kT3gq
53 changes: 50 additions & 3 deletions os_wpe.bat
Original file line number Diff line number Diff line change
Expand Up @@ -117,16 +117,28 @@ echo 1) Notepad
echo 2) Task Manager
echo 3) Paint.Net
echo 4) Microsoft Paint 95
echo 5) Return to Start List
echo 5) Games [DIR]
echo 6) Return to Start List
set /p poption=Select a program from the Programs List:
if %poption%==1 call :notepadappcls
if %poption%==5 goto rstart
if %poption%==6 goto rstart
if %poption%==2 call :taskmgrcls
if %poption%==3 call :paintnet
if %poption%==4 call :mspaint
if %poption%==5 call :glist
goto plist
exit /b

:glist
echo.
echo Games [DIR]
echo 1) The Game Of Life
echo 2) Close folder
set /p goption=Select a game from the Games List:
if %goption%==1 call :tgol
if %goption%==2 goto plistcls
goto glist

:paintnet
cls
cd paint
Expand Down Expand Up @@ -157,9 +169,44 @@ goto taskmgr
taskmgr
goto plist

:tgol
cls
echo ....Game Of Life!....
echo.
echo Character 1: David
echo Character 2: Lisa
echo Character 3: Archie
set /p chargol=Enter the name of the character of your choice!
if %chargol%==1 call :David
if %chargol%==2 call :Lisa
if %chargol%==3 call :Archie
cls
echo.
echo Please enter the name of the character of your choice.
goto tgol

:David
cls
echo Lady voice: David
pause
echo.
echo Lady voice: Daaaaaaviiiiiid
pause
echo.
echo Lady voice: Oh look he is waking up!
echo Man voice: Ah he is so handsome!
pause
cls
echo Doctor: (to you) Welcome to the world! (to the lady and man) Congratulations on your newborn baby!
echo Dad: Thank you very much doctor!
echo Doctor: You can be dismissed from the hospital anytime you want.
echo Mum: Thank you!
pause
cls

:aboutwpe
cls
echo Windows Pocket Edition - Version Alpha 0.0.3 (Build: A7) - Made by The Kernel Brothers
echo Windows Pocket Edition - Version Alpha 0.0.3 (Build: A8) - Made by The Kernel Brothers
pause
cls
goto start

0 comments on commit af034ac

Please sign in to comment.