• This is not working

    From Phil@VERT/CYBER to All on Sat Aug 25 16:45:00 2007
    For some reason this is not working when I run this applicaton and I type the word AGREE and press enter.

    !INCLUDE ERRNO.INC
    !INCLUDE FILE_IO.INC
    !INCLUDE USERDEFS.INC
    !INCLUDE SBBSDEFS.INC
    !INCLUDE NODEDEFS.INC
    CLS
    printfile "c:\sbbs\text\validate.txt"
    PRINT "\r\n"
    PRINT "\r\n"
    print "\r\nI agree to abide by the follow terms and conditions (AGREE Or Type NO ): "
    STR INFO
    GETSTR INFO 5 K_UPPER
    COMPARE_STR "AGREE"
    IF_FALSE
    goto no
    END_CMD
    :start
    print "\r\nLets start the upgrade now."
    print "\r\n"
    print "\r\nPress enter to start."
    sTR INFO
    compare_ars FLAG 1A
    if_false
    TOGGLE_USER_FLAG 1A
    TOGGLE_USER_FLAG 2A
    END_CMD
    compare_ars FLAG 1C
    if_false
    TOGGLE_USER_FLAG 1C
    TOGGLE_USER_FLAG 2B
    end_cmd
    compare_ars FLAG 1D
    if_false
    TOGGLE_USER_FLAG 1D
    TOGGLE_USER_FLAG 2D
    end_cmd
    compare_ars FLAG 1E
    if_false
    TOGGLE_USER_FLAG 1E
    TOGGLE_USER_FLAG 2E
    end_cmd
    compare_ars FLAG 1F
    if_false
    TOGGLE_USER_FLAG 1F
    TOGGLE_USER_FLAG 2F
    end_cmd
    SET_USER_LEVEL 20
    print "\r\nYour access level and security flags have been updated. You will need to re-login please so they will

    take effect."
    GOTO OK
    :No
    print "\r\nYour security level and flags where not changed."
    :ok
    PRINT "\r\n"
    print "\r\nPress enter to continue."
    STR INFO
    :END

    ---
    ž Synchronet ž bbs.cyberchatnet.com - Vienna, VA
  • From Angus McLeod@VERT/ANJO to Phil on Sat Aug 25 18:18:00 2007
    Re: This is not working
    By: Phil to All on Sat Aug 25 2007 20:45:00

    For some reason this is not working when I run this applicaton and I type th word AGREE and press enter.

    You have an awful lot of END_CMDs and no END_IFs at all!

    Also, may I draw your atention to section 3.1 of the BAJA docs?

    ---
    Playing: "S.Y.M.M" by "Manic Street Preachers"
    from the "This is my truth, tell me yours" album.
    ž Synchronet ž Where we BAJA Rob into writing our modules. The ANJO BBS
  • From Phil@VERT/CYBER to Angus McLeod on Sat Aug 25 18:53:00 2007
    This is not even working. When I tyepe in AGREE its not catching it.

    !INCLUDE ERRNO.INC
    !INCLUDE FILE_IO.INC
    !INCLUDE USERDEFS.INC
    !INCLUDE SBBSDEFS.INC
    !INCLUDE NODEDEFS.INC
    !global info
    CLS
    printfile "c:\sbbs\text\validate.txt"
    PRINT "\r\n"
    PRINT "\r\n"
    print "\r\nI agree to abide by the follow terms and conditions (AGREE Or Type NO ): "
    STR INFO
    GETSTR INFO 5 K_UPPER
    COMPARE_STR "AGREE"
    IF_TRUE
    print "\r\nThe Word Agree was typed in"
    print "\r\n"Press Enter"
    STR INFO
    end_if



    Re: This is not working
    By: Phil to All on Sat Aug 25 2007 20:45:00

    For some reason this is not working when I run this applicaton and I type
    th word AGREE and press enter.

    You have an awful lot of END_CMDs and no END_IFs at all!

    Also, may I draw your atention to section 3.1 of the BAJA docs?

    ---
    Playing: "S.Y.M.M" by "Manic Street Preachers"
    from the "This is my truth, tell me yours" album.
    ž Synchronet ž Where we BAJA Rob into writing our modules. The ANJO BBS

    ---
    ž Synchronet ž bbs.cyberchatnet.com - Vienna, VA
  • From Digital Man@VERT to Phil on Sat Aug 25 19:08:00 2007
    Re: This is not working
    By: Phil to All on Sat Aug 25 2007 08:45 pm

    For some reason this is not working when I run this applicaton and I type th word AGREE and press enter.

    !INCLUDE ERRNO.INC
    !INCLUDE FILE_IO.INC
    !INCLUDE USERDEFS.INC
    !INCLUDE SBBSDEFS.INC
    !INCLUDE NODEDEFS.INC
    CLS
    printfile "c:\sbbs\text\validate.txt"
    PRINT "\r\n"
    PRINT "\r\n"
    print "\r\nI agree to abide by the follow terms and conditions (AGREE Or Typ NO ): "
    STR INFO
    GETSTR INFO 5 K_UPPER
    COMPARE_STR "AGREE"

    I think you meant to write: COMPARE INFO "AGREE"

    digital man (xbox-live: digitlman)

    Snapple "Real Fact" #146:
    The smallest county in America is New York County, better known as Manhattan. Norco, CA WX: 73.2ųF, 56% humidity, 0 mph SSE wind, 0.00 inches rain/24hrs

    ---
    ž Synchronet ž Vertrauen ž Home of Synchronet ž [vert/cvs/bbs].synchro.net
  • From Angus McLeod@VERT/ANJO to Phil on Sun Aug 26 03:43:00 2007
    Re: Re: This is not working
    By: Phil to Angus McLeod on Sat Aug 25 2007 22:53:00

    This is not even working. When I tyepe in AGREE its not catching it.

    STR INFO
    GETSTR INFO 5 K_UPPER
    COMPARE_STR "AGREE"

    You are storing the input in 'INFO' but comparing the stringconst with the work string.

    ---
    Playing: "The swamp song (version 1)" by "Oasis"
    from the "(What's the story) Morning glory" album.
    ž Synchronet ž Where we BAJA Rob into writing our modules. The ANJO BBS
  • From Phil@VERT/CYBER to Digital Man on Sat Aug 25 22:49:00 2007
    I did this and its still not working.

    !INCLUDE ERRNO.INC
    !INCLUDE FILE_IO.INC
    !INCLUDE USERDEFS.INC
    !INCLUDE SBBSDEFS.INC
    !INCLUDE NODEDEFS.INC
    !global info
    CLS
    printfile "c:\sbbs\text\validate.txt"
    PRINT "\r\n"
    PRINT "\r\n"
    print "\r\nI agree to abide by the follow terms and conditions (AGREE Or Type NO ): "
    STR INFO
    GETSTR INFO 5 K_UPPER
    COMPARE INFO "AGREE"
    IF_TRUE
    print "\r\nThe Word Agree was typed in"
    print "\r\n"Press Enter"
    GETSTR INFO 5 K_UPPER
    END_IF
    STR INFO



    Re: This is not working
    By: Phil to All on Sat Aug 25 2007 08:45 pm

    For some reason this is not working when I run this applicaton and I type
    th word AGREE and press enter.

    !INCLUDE ERRNO.INC
    !INCLUDE FILE_IO.INC
    !INCLUDE USERDEFS.INC
    !INCLUDE SBBSDEFS.INC
    !INCLUDE NODEDEFS.INC
    CLS
    printfile "c:\sbbs\text\validate.txt"
    PRINT "\r\n"
    PRINT "\r\n"
    print "\r\nI agree to abide by the follow terms and conditions (AGREE Or Typ NO ): "
    STR INFO
    GETSTR INFO 5 K_UPPER
    COMPARE_STR "AGREE"

    I think you meant to write: COMPARE INFO "AGREE"

    digital man (xbox-live: digitlman)

    Snapple "Real Fact" #146:
    The smallest county in America is New York County, better known as Manhattan
    Norco, CA WX: 73.2ųF, 56% humidity, 0 mph SSE wind, 0.00 inches rain/24hrs -
    ž Synchronet ž Vertrauen ž Home of Synchronet ž telnet://vert.synchro.net

    ---
    ž Synchronet ž bbs.cyberchatnet.com - Vienna, VA
  • From Phil@VERT/CYBER to Angus McLeod on Sun Aug 26 06:34:00 2007
    Can you please give me working example?

    Thanks
    Phil

    Re: Re: This is not working
    By: Phil to Angus McLeod on Sat Aug 25 2007 22:53:00

    This is not even working. When I tyepe in AGREE its not catching it.

    STR INFO
    GETSTR INFO 5 K_UPPER
    COMPARE_STR "AGREE"

    You are storing the input in 'INFO' but comparing the stringconst with the work string.

    ---
    Playing: "The swamp song (version 1)" by "Oasis"
    from the "(What's the story) Morning glory" album.
    ž Synchronet ž Where we BAJA Rob into writing our modules. The ANJO BBS

    ---
    ž Synchronet ž bbs.cyberchatnet.com - Vienna, VA
  • From MRoblivious1bmf@VERT to Phil on Sun Aug 26 06:25:00 2007
    To: Phil
    .,: This is something about This is not working,
    Phil said it to All on Sat Aug 25 2007 08:45 pm --ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ-ÄÄÄÄ---ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ---ÄÄÄÄÄÄÄÄÄ--ÄÄÄÄÄÄÄÄ
    FLAG 1E if_false TOGGLE_USER_FLAG 1E TOGGLE_USER_FLAG
    2E end_cmd compare_ars FLAG 1F if_false TOGGLE_USER_FLAG


    you cant use end_cmd to close an if

    you need end_if

    ---
    ž Synchronet ž Vertrauen ž Home of Synchronet ž [vert/cvs/bbs].synchro.net
  • From MRoblivious1bmf@VERT to Digital Man on Sun Aug 26 06:25:00 2007
    To: Digital Man
    .,: This is something about This is not working,
    Digital Man said it to Phil on Sat Aug 25 2007 11:08 pm --ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ-ÄÄÄÄ---ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ---ÄÄÄÄÄÄÄÄÄ--ÄÄÄÄÄÄÄÄ
    I think you meant to write: COMPARE INFO "AGREE"


    that too.

    also he should format a bit better, just for working on it.

    ---
    ž Synchronet ž Vertrauen ž Home of Synchronet ž [vert/cvs/bbs].synchro.net
  • From Digital Man@VERT to Phil on Sun Aug 26 06:56:00 2007
    Re: Re: This is not working
    By: Phil to Digital Man on Sun Aug 26 2007 02:49 am

    Please (for the umpteenth time), please post your replies *below* the quoted text!

    I did this and its still not working.

    !INCLUDE ERRNO.INC
    !INCLUDE FILE_IO.INC
    !INCLUDE USERDEFS.INC
    !INCLUDE SBBSDEFS.INC
    !INCLUDE NODEDEFS.INC
    !global info
    CLS
    printfile "c:\sbbs\text\validate.txt"
    PRINT "\r\n"
    PRINT "\r\n"
    print "\r\nI agree to abide by the follow terms and conditions (AGREE Or Typ NO ): "
    STR INFO
    GETSTR INFO 5 K_UPPER
    COMPARE INFO "AGREE"
    IF_TRUE
    print "\r\nThe Word Agree was typed in"
    print "\r\n"Press Enter"
    GETSTR INFO 5 K_UPPER
    END_IF
    STR INFO

    Well I compiled your little code there and ran it and here is the result:

    File not found.
    c:\sbbs\text\validate.txt



    I agree to abide by the follow terms and conditions (AGREE Or Type NO ): AGREE

    The Word Agree was typed in

    ----------------------------------------------------------------------------

    What more do you want it to do? Looks like it's working to me. <shrug>

    digital man (xbox-live: digitlman)

    Snapple "Real Fact" #145:
    Lake Superior is the world's largest lake.
    Norco, CA WX: 78.0ųF, 60% humidity, 0 mph S wind, 0.00 inches rain/24hrs

    ---
    ž Synchronet ž Vertrauen ž Home of Synchronet ž [vert/cvs/bbs].synchro.net
  • From Angus McLeod@VERT/ANJO to Phil on Sun Aug 26 18:26:00 2007
    Re: Re: This is not working
    By: Phil to Angus McLeod on Sun Aug 26 2007 10:34:00

    Can you please give me working example?

    No. I'm going to twit you for top-posting instead.

    ---
    Playing: "Teach U A Lesson" by "Robin Thicke"
    from "The Evolution of Robin Thicke" album.
    ž Synchronet ž Where we BAJA Rob into writing our modules. The ANJO BBS
  • From Creative1@VERT to Angus McLeod on Sun Aug 26 16:28:00 2007
    Re: Re: This is not working
    By: Angus McLeod to Phil on Sun Aug 26 2007 10:26 pm

    No. I'm going to twit you for top-posting instead.

    uhm, excuse me, what does getting "twit'ed" mean?

    -c1

    ---
    ž Synchronet ž Vertrauen ž Home of Synchronet ž [vert/cvs/bbs].synchro.net
  • From Phil@VERT/CYBER to Digital Man on Sun Aug 26 21:27:00 2007
    Ok, this is interesting. I typed baja validate.src and its not working for me.

    Phil


    Re: Re: This is not working
    By: Phil to Digital Man on Sun Aug 26 2007 02:49 am

    Please (for the umpteenth time), please post your replies *below* the quoted
    text!

    I did this and its still not working.

    !INCLUDE ERRNO.INC
    !INCLUDE FILE_IO.INC
    !INCLUDE USERDEFS.INC
    !INCLUDE SBBSDEFS.INC
    !INCLUDE NODEDEFS.INC
    !global info
    CLS
    printfile "c:\sbbs\text\validate.txt"
    PRINT "\r\n"
    PRINT "\r\n"
    print "\r\nI agree to abide by the follow terms and conditions (AGREE Or Typ NO ): "
    STR INFO
    GETSTR INFO 5 K_UPPER
    COMPARE INFO "AGREE"
    IF_TRUE
    print "\r\nThe Word Agree was typed in"
    print "\r\n"Press Enter"
    GETSTR INFO 5 K_UPPER
    END_IF
    STR INFO

    Well I compiled your little code there and ran it and here is the result:

    File not found.
    c:\sbbs\text\validate.txt



    I agree to abide by the follow terms and conditions (AGREE Or Type NO ): AGR

    The Word Agree was typed in
    ----------------------------------------------------------------------------

    What more do you want it to do? Looks like it's working to me. <shrug>

    digital man (xbox-live: digitlman)

    Snapple "Real Fact" #145:
    Lake Superior is the world's largest lake.
    Norco, CA WX: 78.0ųF, 60% humidity, 0 mph S wind, 0.00 inches rain/24hrs ---
    ž Synchronet ž Vertrauen ž Home of Synchronet ž telnet://vert.synchro.net

    ---
    ž Synchronet ž bbs.cyberchatnet.com - Vienna, VA
  • From Phil@VERT/CYBER to Angus McLeod on Mon Aug 27 06:39:00 2007
    Why, I do not do anything wrong and it was a valid question.

    Phil

    Re: Re: This is not working
    By: Phil to Angus McLeod on Sun Aug 26 2007 10:34:00

    Can you please give me working example?

    No. I'm going to twit you for top-posting instead.

    ---
    Playing: "Teach U A Lesson" by "Robin Thicke"
    from "The Evolution of Robin Thicke" album.
    ž Synchronet ž Where we BAJA Rob into writing our modules. The ANJO BBS

    ---
    ž Synchronet ž bbs.cyberchatnet.com - Vienna, VA
  • From Angus McLeod@VERT/ANJO to Creative1 on Mon Aug 27 19:00:00 2007
    Re: Re: This is not working
    By: Creative1 to Angus McLeod on Sun Aug 26 2007 20:28:00

    No. I'm going to twit you for top-posting instead.

    uhm, excuse me, what does getting "twit'ed" mean?

    It means you were put in the twit-list, so your messages will be purged
    from mail packets instead of added to the bases.

    ---
    Playing: "Peace Train" by "Cat Stevens"
    from the "Teaser And The Firecat" album.
    ž Synchronet ž Where we BAJA Rob into writing our modules. The ANJO BBS
  • From Mindless Automaton@VERT/ELDRITCH to Phil on Mon Aug 27 12:35:00 2007
    Phil wrote:
    Why, I do not do anything wrong and it was a valid question.

    Phil


    What he is saying is please type your message on the bottom of your
    reply rather than on top.

    -Mindless Automaton
    ---
    ž Synchronet ž Eldritch Clockwork BBS - eldritch.darktech.org
  • From Mrproper@VERT/WARZONE to Phil on Tue Aug 28 12:12:00 2007
    Re: Re: This is not working
    By: Phil to Angus McLeod on Mon Aug 27 2007 11:39 am

    Why, I do not do anything wrong and it was a valid question.


    Top Posting your replys IS wrong.


    ---
    ž Synchronet ž Warzone BBS -
  • From MRoblivious1bmf@VERT to Phil on Tue Aug 28 17:28:00 2007
    To: Phil
    .,: This is something about Re: This is not working,
    Phil said it to Digital Man on Mon Aug 27 2007 01:27 am --ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ-ÄÄÄÄ---ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ---ÄÄÄÄÄÄÄÄÄ--ÄÄÄÄÄÄÄÄ
    Ok, this is interesting. I typed baja validate.src and its not working for m

    Phil



    HEY PHIL: POST ON THE FREAKING BOTTOM!!!!!!!!!!!


    READ THIS: POST ON THE FREAKING BOTTOM!!!


    QUOTE ON THE TOP, POST ON THE BOTTOM.

    TO PUT IT ANOTHER WAY, FOLLOW THESE INSTRUCTIONS:

    [1] PUT AUTHOR'S MSG ON THE *****FUCKING TOP****
    [2] PUT YOUR REPLY ON THE ****FUCKIGN BOTTOM****

    further denial to comply with my requests will result in coathanger fished up your nose, removing the shrivled, wallnut sized remains of the poor excuse
    for a brain that you have!!

    thank you!!


    post on the fucking bottom

    ---
    ž Synchronet ž Vertrauen ž Home of Synchronet ž [vert/cvs/bbs].synchro.net
  • From Jas Hud@VERT/DSTREAM to Phil on Fri Aug 31 19:32:00 2007
    Re: Re: This is not working
    By: Phil to Angus McLeod on Mon Aug 27 2007 10:39 am

    PHIL WILL YOU PLEASE POST ON THE FREAKING BOTTOM??????????????

    .Ä.Ś Ā ĀĀ ĀĀ.Ä.Ā ĀŚæ
    -³ ³Ćæ³ ³³ ³³³ ³³ ³Ąæ-
    `Ä'ĄŁĮŁĮ`\/'Į`Ä'Ą-ŁĄŁ
    +o edge of oblivion bbs ž eob-bbs.com
    |04An underground bbs with tons of the best games+files
    |05a zer0net node

    ---
    ž Synchronet ž Data Stream - telnet://dsbbs.net - www.dsbbs.net
  • From Raistlin@VERT/TOHS to Jas Hud on Thu Sep 13 04:08:00 2007
    Re: Re: This is not working
    By: Jas Hud to Phil on Fri Aug 31 2007 11:32 pm

    Re: Re: This is not working
    By: Phil to Angus McLeod on Mon Aug 27 2007 10:39 am

    PHIL WILL YOU PLEASE POST ON THE FREAKING BOTTOM??????????????



    HAHAHAH

    Phil, Start the revolution!


    Blahahaha


    *****Tower of HIGH Sorcery BBS************************************************* Telnet to us Today : telnet://tohs.synchro.net - Hottest Gaming BBS Around! FidoNet: 1:102/301 -- TONS of Online Games!!! --
    Land of Devastation, USURPER, LORD 2, DoorMUD, BRE, D&D, Geopolitics,
    Trade Wars 2002, CHESS, Domain Poker, Global War, Planets: TEOS,
    The PIT, Godfather of Crime, Scrabble, Stock Market Simulator and alot more! ******************************************************************************



    ---
    ž Synchronet ž Tower of High Sorcery
  • From Mindless Automaton@VERT/ELDRITCH to Raistlin on Thu Sep 13 15:44:00 2007
    Raistlin wrote:
    Re: Re: This is not working
    By: Jas Hud to Phil on Fri Aug 31 2007 11:32 pm

    Re: Re: This is not working
    By: Phil to Angus McLeod on Mon Aug 27 2007 10:39 am

    PHIL WILL YOU PLEASE POST ON THE FREAKING BOTTOM??????????????


    HAHAHAH

    Phil, Start the revolution!


    Blahahaha

    Don't do it, Phil! Join us.. life is good posting at the bottom..
    Join us.. Join us..

    -Mindless Automaton
    ---
    ž Synchronet ž Eldritch Clockwork BBS - eldritch.darktech.org
  • From MRoblivious1bmf@VERT to Mindless Automaton on Thu Sep 13 20:19:00 2007
    To: Mindless Automaton
    .,: This is something about Re: This is not working,
    Mindless Automaton said it to Raistlin on Thu Sep 13 2007 07:44 pm --ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ-ÄÄÄÄ---ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ---ÄÄÄÄÄÄÄÄÄ--ÄÄÄÄÄÄÄÄ


    Blahahaha

    Don't do it, Phil! Join us.. life is good posting at the bottom..
    Join us.. Join us..



    yeah, but if you think about it.. arent we all <makes quotes with fingers> posting on the _top_<stops> when we should be posting <makes quotes with fingers>on the bottom<stops making quotes with fingers>

    yes people,i am talking about the iraq war.
    <no i'm not>

    ---
    ž Synchronet ž Vertrauen ž Home of Synchronet ž [vert/cvs/bbs].synchro.net