Skip to content

Commit

Permalink
Globally Added Images
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamOnAir committed Dec 2, 2023
1 parent 9222018 commit dca66dc
Show file tree
Hide file tree
Showing 8 changed files with 73 additions and 13 deletions.
6 changes: 6 additions & 0 deletions Dev Notes.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
'To-Do list :

'Faire un syst�me d'envoi de message local � l'aide d'Ethernet.
'Pouvoir envoyer des fichiers � l'aide de FTP
'Le gestionnaire pourra LIRE et T�L�CHARGER des fichiers mais pas modifier ou autres.
'Faire un syst�me qui d�tecte clic droit ou gauche pour PASTE.
Binary file added blocNotes.ico
Binary file not shown.
32 changes: 28 additions & 4 deletions fbd.bas
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
'FunnyBones Departement

$ExeIcon:'C:\Dev\qb64_dev\FBD\BEEp.ico'
Rem Init Code

$ExeIcon:'./pngkit.ico'
Const bio$ = "FunnyBones Broadcast, 2015"
_Title bio$

Const initial = "1996 10 12"
Const revision = "2023 11 15"

Rem Main Part, contains main code

Cls
Print bio$
Print "Undertale Jokes, that's all. Except for some Game Dev.."
Expand All @@ -17,10 +21,24 @@ Dim i As Integer

Do
Print ">";
If _MouseButton(1) = True Then
'Code Logic
End If
Line Input t
i = InStr(t, " ")
If i Then c = Left$(t, i - 1) Else c = t
Select Case LCase$(c)
Case "fuck": Print "Pap': Kids are watching !"
Case "bastards": Print "Pap': Kids are watching !"
Case "dickhead": Print "Pap': Kids are watching !"
Case "bastard": Print "Pap': Kids are watching !"
Case "jerk": Print "Like you and Chara"
Case "trash": Print "Like you, and Alphys"
Case "Asshole": Print "Like you"
Case "bitch": Print "Stop."
Case "Gaster": Exit Do
Case "Woshua": Print "Clean Name"
Case "echo": Print Mid$(t, i + 1)
Case "hnd": Shell "Software Enhaced Help.hnd"
Case "exit": Exit Do
Case "cls": Cls
Expand All @@ -29,15 +47,21 @@ Do
Case "sans": Shell "max20_sans.exe"
Case "ver": Print "revision: "; revision: Print ""
Case "conduct": Shell "CODE_OF_CONDUCT.md"
Case "time": Print time$
Case "duck"
Case "links": Shell "links.txt"
Case "ftp": Shell "ftp.exe"
Case "time": Print Time$
Case "links":
Case "duck":
Print "I see.."
Shell "updated_dack.exe"
Case "help"
Case "help":
Print "EXIT - exit the shell"
Print "CLS - clear the screen"
Print "ECHO - displays written message in Console"
Print "FTP - opens FTP mode"
Print "PUNS - display puns"
Print "SANS - display sans and toriel jokes"
Print "LINKS - display some links"
Print "VER - display version"
Print "HELP - display this help"
Print "HND - advanced software help"
Expand Down
19 changes: 11 additions & 8 deletions fbdEditor.bas
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
'FBD Editor

_Title "FBD Broadcast Textual Editor"
$ExeIcon:'./blocNotes.ico'
Const bio$ = "Funny Bones BBS editor"
_Title bio$


'Sans
Open "C:\Dev\qb64_dev\FBD\Sans.txt" For Output As #1
Expand All @@ -10,17 +13,17 @@ Write #1, "Sans : Twinkle Twinkle Little Star, We can Do it in the Car"
Close #1

'Puns
Open "C:\Dev\qb64_dev\FBD\puns.txt" For Output As #2
Open "./puns.txt" For Output As #2
Write #2, "Alphys : How to ask someone out ?"
Write #2, "Mtt Ex : Roses are red, Violets are blue, my bed has places for two"
Write #2, "Sans : Twinkle Twinkle Little Star, We can Do it in the Car"
Close #2

'Messages
Open "C:\Dev\qb64_dev\FBD\messages.txt" For Output As #2
Write #2, "Alphys : How to ask someone out ?"
Write #2, "Mtt Ex : Roses are red, Violets are blue, my bed has places for two"
Write #2, "Sans : Twinkle Twinkle Little Star, We can Do it in the Car"
Close #2
'Links
Open "./links.txt" For Output As #3
Write #3, "Alphys : How to ask someone out ?"
Write #3, "Mtt Ex : Roses are red, Violets are blue, my bed has places for two"
Write #3, "Sans : Twinkle Twinkle Little Star, We can Do it in the Car"
Close #3


5 changes: 5 additions & 0 deletions links.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
https://benchspark.dev - Creator's website
https://undernet.onion - just a rondom undernet webiste
https://undertale-network.tumblr.com/ - like okay tumblr
https://undertale-rp.fandom.com/wiki/Undernet#Main_Use - UnderNet Fandom
https://undertale.fandom.com/fr/wiki/Accueil - Undertale Fandom
2 changes: 1 addition & 1 deletion max20_puns.bas
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

_Title "FBD Broadcast Reader"

Open ".\puns.txt" For Input As #1
Open "./puns.txt" For Input As #1
10
For x% = 1 To 20
Line Input #1, line$ ' A way to loop threw until the 1st 20 lines area read in
Expand Down
Binary file added pngkit.ico
Binary file not shown.
22 changes: 22 additions & 0 deletions reader.bm
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Sub reader
'20 lines and more

_Title "FBD Broadcast Reader"

Open "./puns.txt" For Input As #1
10
For x% = 1 To 20
Line Input #1, line$ ' A way to loop threw until the 1st 20 lines area read in
Print line$
Next x%

Input "Read more or Quit"; responce$
If responce$ = "Go On" Then
Cls
GoTo 10 'starts over and gets the next 20
Else
Close #1
System
End If

End Sub

0 comments on commit dca66dc

Please sign in to comment.