Posts: 6,419
Threads: 74
Joined: Mar 2002
Oh, please don't worry about that
Posts: 1,138
Threads: 211
Joined: Feb 2020
Ok, but it is still very frustrating not to be able to access your own site as well as everyone else accessing.
Posts: 720
Threads: 46
Joined: Oct 2001
Yeah, getting stuff on the screen is easy: just POKE it to &hB800. But receiving input is a different story. I would have done it with LINE INPUT or INPUT(1), two keyboard I/O commands you forgot to list. :king:
Posts: 81
Threads: 0
Joined: Apr 2002
A new challenge:
A program that clears the screen(SCREEN 13), without using any of qb's drawing commands, like PSET, CIRCLE, LINE, CLS(hehe), PUT.
You can't use * or FOR either...
I don't think it's impossible...

.
Posts: 6,419
Threads: 74
Joined: Mar 2002
Done: HAHAHAH!
Code:
SCREEN 13
PRINT "Hello!"
PRINT "Dummy"
PRINT "Press a key to delete"
SLEEP:K$=INKEY$
SCREEN 13
PRINT "Deleted! :D"
Also
Code:
SCREEN 13:DEF SEG=&HA000
BSAVE "CLS", 0,64000
PRINT "Hello!"
PRINT "Dummy"
PRINT "Press a key to delete"
SLEEP:K$=INKEY$
BLOAD "CLS"
PRINT "Deleted! :D"
Wizardlife: saying INPUT I meant EVERY INPUT commands (INPUT a$, LINE INPUT a$, INPUT(1), INPUT$...)

:rotfl:
Posts: 1,138
Threads: 211
Joined: Feb 2020
Quote:Done: HAHAHAH! 
A bit dubious(sp?) but it does meet the guidelines hehe
Quote:Wizardlife: saying INPUT I meant EVERY INPUT commands (INPUT a$, LINE INPUT a$, INPUT(1), INPUT$...)
:rotfl:
Well you can just use INP(61h) or somethhing instead ;-)
Posts: 6,419
Threads: 74
Joined: Mar 2002
Oh cool

Now it's your turn, wizardlife... you should post the new challenge
Posts: 81
Threads: 0
Joined: Apr 2002
awww, forgot BLOAD... :lol:, ok new guidelines, Challenge ver 2:
all the old ones
BLOAD not allowed
reusing SCREEN 13 or any other screen mode is not allowed
There, I think that's all :bounce: .
Posts: 1,138
Threads: 211
Joined: Feb 2020
Ok, as it seems to be more intresting when many people send in ideas lets do it that way. So PM your challenges and I'll post them one at a time(the author can then post his solution or say which is best.)
So PM or email them to me.
Posts: 530
Threads: 17
Joined: May 2002
Mines the crappiest but...
Code:
Screen 13
Print "watch this cheap ass hack, used to enter a contest"
Print "here goes, im gonna clear the screen"
Print" "
Print" "
Print" "
Print" "
Print" "
Print" "
Print" "
Print" "
Print" "
Print" "
Print" "
Print" "
Print" "
Print" "
Print" "
Print" "
Print" "
Print" "
Print" "
Print" "
Okay, its slow.... its um very hacky and i didnt check if i put enough prints (i think its 20 that screen 13 has) hope i put enough.[edit] fixed some spelling[/edit]
also you code poke at the screen, and im pretty sure you can hit an interuot to do it for you.