• Random Lines

    From Willowolf@VERT/WOLFGROT to All on Mon Aug 20 20:44:00 2001
    How would I program a random selection in Baja? I want to display random one-liners at logon to my users. I don't care if I have to program the one-liners into the baja .src file, I just want it simple.

    Thanks,
    \\/

    ---
    þ Synchronet þ Wolf Grotto -Las Vegas, NV- telnet://wolfgrotto.2y.net
  • From Amcleod@VERT to Willowolf on Tue Aug 21 00:41:00 2001
    RE: Random Lines
    BY: Willowolf to All on Tue Aug 21 2001 07:44 am

    How would I program a random selection in Baja? I want to display rand one-liners at logon to my users. I don't care if I have to program the one-liners into the baja .src file, I just want it simple.

    Get the BAJA documentation and look for the section on SWITCH/CASE which gives as an example, a small fragment of code that does random selections. Expand on this to your hearts content.

    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From Jas Hud@VERT to Willowolf on Wed Aug 22 21:53:00 2001
    RE: Random Lines
    BY: Willowolf to All on Tue Aug 21 2001 07:44 am

    How would I program a random selection in Baja? I want to display rand one-liners at logon to my users. I don't care if I have to program the one-liners into the baja .src file, I just want it simple.

    Thanks,
    \\/


    compare_ars RANDOM 3 (or whatever you want)
    if_true
    printfile "x:\shit.txt"
    end_if
    compare_ars random 3
    if_true
    printfile "x:\shit2.txt"
    end_if
    # fallthrough
    printfile "x:\shit3.txt"
    goto duh
    :duh
    # oops, i forgot to put a "goto duh " before each end_if
    # ah well, might/might not be applicable

    you can also use random with an interger, but this way is easy

    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From Jas Hud@VERT to All on Wed Aug 22 21:54:00 2001
    RE: Random Lines
    BY: Amcleod to Willowolf on Tue Aug 21 2001 11:41 am

    RE: Random Lines
    BY: Willowolf to All on Tue Aug 21 2001 07:44 am

    How would I program a random selection in Baja? I want to display r one-liners at logon to my users. I don't care if I have to program the one-liners into the baja .src file, I just want it simple.

    Get the BAJA documentation and look for the section on SWITCH/CASE which giv as an example, a small fragment of code that does random selections. Expand this to your hearts content.

    that one mime rumos thing is helpfull, so is aces one, though you have to
    fix up the code to get it to work.

    ---
    þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.net
  • From Willowolf@VERT/WOLFGROT to Jas Hud on Fri Aug 24 17:11:00 2001
    RE: Random Lines
    BY: Jas Hud to Willowolf on Thu Aug 23 2001 08:53 am

    compare_ars RANDOM 3 (or whatever you want)
    if_true
    printfile "x:\shit.txt"
    end_if
    compare_ars random 3
    if_true
    printfile "x:\shit2.txt"
    end_if
    # fallthrough
    printfile "x:\shit3.txt"
    goto duh
    :duh
    # oops, i forgot to put a "goto duh " before each end_if
    # ah well, might/might not be applicable

    Thanks, I'll try that.

    \\/
    s/


    ---
    þ Synchronet þ Wolf Grotto -Las Vegas, NV- telnet://wolfgrotto.2y.net