• Re: MPL Scripting

    From bamageek@21:1/140 to g00r00 on Sat Feb 15 20:11:21 2020
    Yes, you could do the IT with menucmd in MPL or MPY if you wanted to (or directly from a menu of course). In MPL it would be:

    Begin
    MenuCmd('IT', '/addr=mybbs.com');
    End.

    Thanks I got it to work with the IT. Thought I tried it before but I got it
    to work. Never used Python before but its a really cool and powerful
    language!

    --- Mystic BBS v1.12 A44 2020/02/04 (Windows/32)
    * Origin: Dave's BBS (21:1/140)
  • From g00r00@21:1/108 to bamageek on Sat Feb 15 21:21:21 2020
    I figured it out:
    menucmd("IT", "/addr=games.bbslink.net /port=23")

    One more question; Is there a way to pass arguments in to a .mpy script via data on a menu command?

    Yep. It should be:

    Menu command: GY (Execute Mystic Python)
    Data: myscript option1 option2 option3

    And then in the script param_count gives you the number of options passed to the script, and param_str(number) should return the requested option number.

    --- Mystic BBS v1.12 A45 2020/02/15 (Windows/64)
    * Origin: Sector 7 (21:1/108)
  • From Analog@21:2/123 to bamageek on Sat Feb 15 19:45:06 2020
    One more question; Is there a way to pass arguments in to a .mpy script via data on a menu command?

    Yes, you can just add the arguments after the script name on the DATA
    command. Inside Python, just use "param_str" from mystic_bbs. For instance:

    Command: GY
    Data: script_name arg1 arg2

    Then in the script:

    value1 = param_str(1)
    value2 = param_str(2)

    NOTE: param_str(0) is the name of the script. This is useful for displaying usage notes.

    Enjoy.

    |20|15┌─|16|08┤ |08De|07ad|15be|07a|08tz b|07b|15s
    |08└─┘├─┐ |08:>.|07A|08rk |0710|08:|07101|08/|0714|08.
    |04■ |08└|20|15─|16|08┘ |08:>.|10A|02gn |1046|08:|101|08/|10123|08.
    |04A|07n|15al|07o|08g |08:>.|12F|04sx |1221|08:|122|08/|12123|08.
    |08:>.|15S|07ci |1577|08:|151|08/|15131|08. |04░▒░|08▒██▄▌|08:>.|11T|03qw |111337|08:|113|08/|1113|08.

    --- Mystic BBS v1.12 A45 2020/02/09 (Linux/64)
    * Origin: deadbeatz.org (21:2/123)
  • From ryan@21:1/168 to g00r00 on Sat Feb 15 21:45:30 2020
    MenuCmd('IT', '/addr=mybbs.com');

    This hasn't ever worked for me, btw. It works in MPY, I think, but not MPL.

    --- Mystic BBS v1.12 A44 2020/02/04 (Linux/64)
    * Origin: monterey bbs (21:1/168)
  • From bamageek@21:1/140 to Analog on Sun Feb 16 08:16:39 2020

    Yes, you can just add the arguments after the script name on the DATA command. Inside Python, just use "param_str" from mystic_bbs. For instance:

    Command: GY
    Data: script_name arg1 arg2

    Then in the script:

    value1 = param_str(1)
    value2 = param_str(2)


    I think I was trying to use brackets earlier. I think I got it working:

    if param_str(1) is None:
    doorcode="menu"
    else:
    doorcode = param_str(1)

    --- Mystic BBS v1.12 A44 2020/02/04 (Windows/32)
    * Origin: Dave's BBS (21:1/140)
  • From g00r00@21:1/108 to ryan on Sun Feb 16 11:41:57 2020
    MenuCmd('IT', '/addr=mybbs.com');

    This hasn't ever worked for me, btw. It works in MPY, I think, but not MPL.

    I can't seem to reproduce that issue. I tested telnet, rlogin and SSH with A45 in Linux and Windows yesterday from both a menu and MPL. I am not sure where to go with it. I did find that SSH outbound was broken at one point recently and I have fixed that part but it wasn't specific to MPL.

    I'm not sure what else to do.

    --- Mystic BBS v1.12 A45 2020/02/15 (Windows/64)
    * Origin: Sector 7 (21:1/108)
  • From ryan@21:1/168 to g00r00 on Sun Feb 16 14:46:17 2020
    I can't seem to reproduce that issue. I tested telnet, rlogin and SSH with A45 in Linux and Windows yesterday from both a menu and MPL. I am not sure where to go with it. I did find that SSH outbound was broken
    at one point recently and I have fixed that part but it wasn't specific
    to MPL.

    Excellent! I'll test it out in that case to see if it's also fixed on my end. Thanks! Perhaps it was something that was fixed at some point and I wasn't tracking.

    --- Mystic BBS v1.12 A44 2020/02/04 (Linux/64)
    * Origin: monterey bbs (21:1/168)
  • From g00r00@21:1/108 to ryan on Sun Feb 16 19:50:33 2020
    I can't seem to reproduce that issue. I tested telnet, rlogin and SS with A45 in Linux and Windows yesterday from both a menu and MPL. I not sure where to go with it. I did find that SSH outbound was broke at one point recently and I have fixed that part but it wasn't specif to MPL.

    Excellent! I'll test it out in that case to see if it's also fixed on my end. Thanks! Perhaps it was something that was fixed at some point and I wasn't tracking.

    Very possible. I think the SSH thing was fixed in A45 so at least for SSH it will probably be broken in A44 but I think the rest should work.

    The SSH thing was broken everywhere because I changed my SSH code and forgot to touch up the outbound SSH code.

    I'm planning to release A45 within the next 2 days or so and I want to try to fix everything I can before I start making sweeping changes again as I tend
    to do lol

    --- Mystic BBS v1.12 A45 2020/02/15 (Windows/64)
    * Origin: Sector 7 (21:1/108)