• Node Status...

    From Ktulu@VERT/ROI to All on Mon May 23 01:59:00 2005
    Hello all! ããBecause I am trying to be self-taught at this Synchronet Javascript thing..ãhow do I go about changing the who's online listing to reflect someoneãrunning my mod? Are there some lines in nodedefs.js that I need to change /ãadd?ããIn other words, if someone on the BBS requests who's online how can I make itãdisplay that the user is running "mymod" or something like that? ããAlso, is there a way to determine whether or not the sysop is available forãchat within javascript?ããThanks!ããKtuluãã---ã þ Synchronet þ Realm of Insanity - telnet://roi.forem.org - Milwaukee, WIã
  • From Digital Man@VERT to Ktulu on Mon May 23 13:31:37 2005
    Re: Node Status...ã By: Ktulu to All on Mon May 23 2005 01:59 amãã > Hello all!ã > ã > Because I am trying to be self-taught at this Synchronet Javascript thing..ã > how do I go about changing the who's online listing to reflect someoneã > running my mod? Are there some lines in nodedefs.js that I need to change /ã > add?ã > ã > In other words, if someone on the BBS requests who's online how can I make iã > display that the user is running "mymod" or something like that?ããIf "mymod" is installed as an external progarm (in SCFG), then this shouldãalready be the case.ããIf not, you'd have to make some custom node listing module and run that for theãglobal Ctrl-U key handler in SCFG->External Programs->Global Hot Keys.ãã > Also, is there a way to determine whether or not the sysop is available forã > chat within javascript?ããif(bbs.startup_options&BBS_OPT_SYSOP_AVAILABLE)ã print("Sysop is available"):ãelseã print("Sysop is NOT available");ãã digital manããSnapple "Real Fact" #81:ãAlaska has more caribou then people.ã---ã þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.netã
  • From Ktulu@VERT/ROI to Digital Man on Tue May 24 00:35:00 2005
    Re: Node Status...ã By: Digital Man to Ktulu on Mon May 23 2005 02:31 pmãã > If "mymod" is installed as an external progarm (in SCFG), then this shouldã > already be the case.ã > ã > If not, you'd have to make some custom node listing module and run that for ã > global Ctrl-U key handler in SCFG->External Programs->Global Hot Keys.ã > ã > > Also, is there a way to determine whether or not the sysop is available fã > > chat within javascript?ã > ã > if(bbs.startup_options&BBS_OPT_SYSOP_AVAILABLE)ã > print("Sysop is available"):ã > elseã > print("Sysop is NOT available");ãããWow! Thanks a lot for the quick reply, DM! I didn't see that one in the JSãdocs! Thanks again!!ããã---ã þ Synchronet þ Realm of Insanity - telnet://roi.forem.org - Milwaukee, WIã
  • From Digital Man@VERT to Ktulu on Tue May 24 00:18:03 2005
    Re: Node Status...ã By: Ktulu to Digital Man on Tue May 24 2005 12:35 amãã > Re: Node Status...ã > By: Digital Man to Ktulu on Mon May 23 2005 02:31 pmã > ã > > If "mymod" is installed as an external progarm (in SCFG), then this shoulã > > already be the case.ã > >ã > > If not, you'd have to make some custom node listing module and run that fã > > global Ctrl-U key handler in SCFG->External Programs->Global Hot Keys.ã > >ã > > > Also, is there a way to determine whether or not the sysop is availablã > > > chat within javascript?ã > >ã > > if(bbs.startup_options&BBS_OPT_SYSOP_AVAILABLE)ã > > print("Sysop is available"):ã > > elseã > > print("Sysop is NOT available");ã > ã > ã > Wow! Thanks a lot for the quick reply, DM! I didn't see that one in the JSã > docs!ããSee "startup_options" under http://synchro.net/docs/jsobjs.html#bbs_propertiesãã > Thanks again!!ããNo prob.ãã digital manããSnapple "Real Fact" #4:ãSlugs have 4 noses.ã---ã þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.netã
  • From Ktulu@VERT/ROI to Digital Man on Tue May 24 10:12:00 2005
    Re: Node Status...ã By: Digital Man to Ktulu on Tue May 24 2005 01:18 amããDM,ããHow do I go about making a prompt that responds with hotkeys? I see there's a ãread() function. However it returns right away. Do I have to enclose it within aãloop or something? And yes. I'm obviously playing with JS on the console sideãof things. :) ããKtuluãã---ã þ Synchronet þ Realm of Insanity - telnet://roi.forem.org - Milwaukee, WIã
  • From Digital Man@VERT to Ktulu on Tue May 24 12:25:43 2005
    Re: HotKeys...ã By: Ktulu to Digital Man on Tue May 24 2005 10:12 amãã > Re: Node Status...ã > By: Digital Man to Ktulu on Tue May 24 2005 01:18 amã > ã > DM,ã > ã > How do I go about making a prompt that responds with hotkeys?ããconsole.getkey()ããSee http://synchro.net/docs/jsobjs.html#console_methods for details.ãã digital manããSnapple "Real Fact" #151:ãThe fastest served ball in tennis was clocked at 154 miles per hour in 1963. ã---ã þ Synchronet þ Vertrauen þ Home of Synchronet þ [vert/cvs/bbs].synchro.netã
  • From Ktulu@VERT/ROI to Digital Man on Wed May 25 11:02:00 2005
    Re: HotKeys...ã By: Digital Man to Ktulu on Tue May 24 2005 01:25 pmãã > ã > console.getkey()ã > ã > See http://synchro.net/docs/jsobjs.html#console_methods for details.ã > ãããThanks again, DM! You're a big help!ããã---ã þ Synchronet þ Realm of Insanity - telnet://roi.forem.org - Milwaukee, WIã