Password Protected Boe - Bot Program
MacRulesWorld
Posts: 4
Hey,
Is there anyway with the DEBUGIN command or something to get a password protected Boe - Bot program so that the program will not run until you have entered a password in Debug Termainal
P.S. It would also be appreciated if there was an explanation on how to change words into **** type symbols if that can be acheived so others cannot see password
Is there anyway with the DEBUGIN command or something to get a password protected Boe - Bot program so that the program will not run until you have entered a password in Debug Termainal
P.S. It would also be appreciated if there was an explanation on how to change words into **** type symbols if that can be acheived so others cannot see password
Comments
And no, as far as I know there is no way to hide what you're typing into the debug terminal. Afterall, you're supposed to see it to debug.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
I am 1011, so be surprised!
Advertisement sponsored by dfletch:
Come and join us on the Propeller IRC channel for fast and easy help!
Channel: #propeller
Server: irc.freenode.net or freenode.net
If you don't want to bother installing an IRC client, use Mibbit. www.mibbit.com
-Phil
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
- Stephen
index var
char var
password var [noparse]/noparse
index = 0
DO
if var[noparse][[/noparse]index] = debuginChar
{
index ++
}
else
{
index = 0
}
Loop until end charecter is met
debug cls
I haven't really worked with strings (or char arrays) on the BS2 before, so this is a work around to use the variable section of the program to store your password.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
Chris Savage
Parallax Engineering
x VAR Byte(3)
DEBUGIN· x(0)
DEBUG "*"
DEBUGIN· x(1)
DEBUG "*"
DEBUGIN· x(2)
DEBUG "*" ,CR
DEBUG STR· x \3
Jeff T.