diff --git a/xtrn/bublbogl/interbbs.doc b/xtrn/bublbogl/interbbs.doc index e12bf1824e492f46a7bf5c9a78bebe0f6f87890d..0fe980258d5e22692a1f2ad40b3048e5a5c43797 100644 --- a/xtrn/bublbogl/interbbs.doc +++ b/xtrn/bublbogl/interbbs.doc @@ -1,3 +1,11 @@ +*****CONNECTING A GAME TO AN INTER-BBS HOST****** + +There is a SERVER.INI file included with every inter-BBS JavaScript game. +If you wish to connect your BBS to an existing network, edit the file and +put the appropriate hostname or IP address, and the port on which the network is +operating (default: 10088) + + *****UPDATING YOUR LOCAL LIBRARIES****** Before you attempt to install the inter-BBS service, it is recommended that you @@ -8,26 +16,33 @@ with the latest files from the Synchronet CVS repository at: RECOMMENDED UPDATES: - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/irc_protocol.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/socket_bg.js http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/layout.js http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/inputline.js http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/funclib.js http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/calendar.js http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/event-timer.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/timer.js http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/clock.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/msgwndw.js http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/scrollbar.js http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/cvs.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/json-sock.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/json-client.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/chateng.js + http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/frame.js + http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/tree.js NOTE: Replace any outdated local copies with the latest release from the links. *****SETTING UP INTER-BBS SERVICE WITH SYNCHRONET***** +If you wish to host your own inter-BBS service for others to connect to, you must edit +the file SERVICES.INI in your relative 'CTRL/' path. You must also open whichever port you +specify on your router to allow other systems to connect (and edit your local server.ini +files so that you connect to your service). + + Default SERVICES.INI text for the inter-BBS service: + + [JSON] + Port = 10088 + Options = STATIC | LOOP + Command = json-service.js + The inter-BBS features of this program require that the appropriate services be configured, and that all of your files are up to date. The following files are needed to operate this program in inter-BBS mode, and can be downloaded from the Synchronet CVS repository at: @@ -42,36 +57,36 @@ this program in inter-BBS mode, and can be downloaded from the Synchronet CVS re NOTE: Placing these files in their corresponding local equivalent locations will make configuration much easier. -[CHATENG.JS] +[EXEC/LOAD/JSON-CHAT.JS] - This handles all inbound/outbound chat messages, and packages them for delivery via the irc protocol. - this also contains the necessary objects to implement a chat room (windowed or fullscreen). + This handles all inbound/outbound chat messages, and packages them for delivery json client. -[JSON-DB.JS] +[EXEC/LOAD/JSON-DB.JS] This file acts as a JSON object database, which is used by JSON-SERVICE, but can be used on the client side as well. -[JSON-CLIENT.JS] +[EXEC/LOAD/JSON-CLIENT.JS] - This file is the gateway to the program's interbbs server. It contains the methods needed to lock, unlock, - read, write and delete objects from the server database. + This file is the gateway to the program's interbbs server. It contains the methods needed to + lock, unlock, read, write and delete objects from the server database. -[JSON-SERVICE.JS] +[EXEC/JSON-SERVICE.JS] - This file acts as an interbbs server. It contains the methods needed to lock, unlock, + This file acts as an socket service. It contains the methods needed to lock, unlock, read, write and delete objects from the server database, and also accepts JSON-CLIENT connections - and acts as the main source for all dynamic program data. The file contains instructions for + and acts as the main source for all dynamic program data. The file also contains instructions for setting up a server. -[JSON-SERVICE.INI] +[CTRL/JSON-SERVICE.INI] This file tells JSON-SERVICE.JS where a program's files are located. This file is critical for the service to operate properly. If you have installed the programs that - use this service to their default locations, no additional configuration should be required. + use this service to their default locations, no additional configuration should be required other + than to un-comment the lines corresponding with the games you wish to host. -[SERVER.INI] +[XTRN/<GAME_DIR>/SERVER.INI] This file should be located in the program's working directory, as it contains information for the host and port the program will be connecting to. Deleting this file will cause diff --git a/xtrn/bublbogl/server.ini b/xtrn/bublbogl/server.ini index f4995f8a444b642fa5bd94dd66a872eb217851e5..81331d2cdcf848ed466fb9e5a14fd0c43342b2d6 100644 --- a/xtrn/bublbogl/server.ini +++ b/xtrn/bublbogl/server.ini @@ -1,3 +1,3 @@ -host=wlarb.synchro.net +host=localhost port=10088 autoupdate=true \ No newline at end of file diff --git a/xtrn/maze/interbbs.doc b/xtrn/maze/interbbs.doc index e12bf1824e492f46a7bf5c9a78bebe0f6f87890d..0fe980258d5e22692a1f2ad40b3048e5a5c43797 100644 --- a/xtrn/maze/interbbs.doc +++ b/xtrn/maze/interbbs.doc @@ -1,3 +1,11 @@ +*****CONNECTING A GAME TO AN INTER-BBS HOST****** + +There is a SERVER.INI file included with every inter-BBS JavaScript game. +If you wish to connect your BBS to an existing network, edit the file and +put the appropriate hostname or IP address, and the port on which the network is +operating (default: 10088) + + *****UPDATING YOUR LOCAL LIBRARIES****** Before you attempt to install the inter-BBS service, it is recommended that you @@ -8,26 +16,33 @@ with the latest files from the Synchronet CVS repository at: RECOMMENDED UPDATES: - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/irc_protocol.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/socket_bg.js http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/layout.js http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/inputline.js http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/funclib.js http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/calendar.js http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/event-timer.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/timer.js http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/clock.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/msgwndw.js http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/scrollbar.js http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/cvs.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/json-sock.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/json-client.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/chateng.js + http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/frame.js + http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/tree.js NOTE: Replace any outdated local copies with the latest release from the links. *****SETTING UP INTER-BBS SERVICE WITH SYNCHRONET***** +If you wish to host your own inter-BBS service for others to connect to, you must edit +the file SERVICES.INI in your relative 'CTRL/' path. You must also open whichever port you +specify on your router to allow other systems to connect (and edit your local server.ini +files so that you connect to your service). + + Default SERVICES.INI text for the inter-BBS service: + + [JSON] + Port = 10088 + Options = STATIC | LOOP + Command = json-service.js + The inter-BBS features of this program require that the appropriate services be configured, and that all of your files are up to date. The following files are needed to operate this program in inter-BBS mode, and can be downloaded from the Synchronet CVS repository at: @@ -42,36 +57,36 @@ this program in inter-BBS mode, and can be downloaded from the Synchronet CVS re NOTE: Placing these files in their corresponding local equivalent locations will make configuration much easier. -[CHATENG.JS] +[EXEC/LOAD/JSON-CHAT.JS] - This handles all inbound/outbound chat messages, and packages them for delivery via the irc protocol. - this also contains the necessary objects to implement a chat room (windowed or fullscreen). + This handles all inbound/outbound chat messages, and packages them for delivery json client. -[JSON-DB.JS] +[EXEC/LOAD/JSON-DB.JS] This file acts as a JSON object database, which is used by JSON-SERVICE, but can be used on the client side as well. -[JSON-CLIENT.JS] +[EXEC/LOAD/JSON-CLIENT.JS] - This file is the gateway to the program's interbbs server. It contains the methods needed to lock, unlock, - read, write and delete objects from the server database. + This file is the gateway to the program's interbbs server. It contains the methods needed to + lock, unlock, read, write and delete objects from the server database. -[JSON-SERVICE.JS] +[EXEC/JSON-SERVICE.JS] - This file acts as an interbbs server. It contains the methods needed to lock, unlock, + This file acts as an socket service. It contains the methods needed to lock, unlock, read, write and delete objects from the server database, and also accepts JSON-CLIENT connections - and acts as the main source for all dynamic program data. The file contains instructions for + and acts as the main source for all dynamic program data. The file also contains instructions for setting up a server. -[JSON-SERVICE.INI] +[CTRL/JSON-SERVICE.INI] This file tells JSON-SERVICE.JS where a program's files are located. This file is critical for the service to operate properly. If you have installed the programs that - use this service to their default locations, no additional configuration should be required. + use this service to their default locations, no additional configuration should be required other + than to un-comment the lines corresponding with the games you wish to host. -[SERVER.INI] +[XTRN/<GAME_DIR>/SERVER.INI] This file should be located in the program's working directory, as it contains information for the host and port the program will be connecting to. Deleting this file will cause diff --git a/xtrn/maze/maze.js b/xtrn/maze/maze.js index 8f4ef73a1afc7bd6032eb086d24baaf415acc82b..757493fa7effc98f70538470c2a42b9f7357bd6f 100644 --- a/xtrn/maze/maze.js +++ b/xtrn/maze/maze.js @@ -18,8 +18,8 @@ var server_file = new File(root + "server.ini"); server_file.open('r',true); //var autoUpdate=server_file.iniGetValue(null,"autoUpdate"); -var serverAddr=server_file.iniGetValue(null,"host"); -var serverPort=server_file.iniGetValue(null,"port"); +var serverAddr=server_file.iniGetValue(null,"host","localhost"); +var serverPort=server_file.iniGetValue(null,"port",10088); server_file.close(); var client=new JSONClient(serverAddr,serverPort); diff --git a/xtrn/maze/server.ini b/xtrn/maze/server.ini index f4995f8a444b642fa5bd94dd66a872eb217851e5..81331d2cdcf848ed466fb9e5a14fd0c43342b2d6 100644 --- a/xtrn/maze/server.ini +++ b/xtrn/maze/server.ini @@ -1,3 +1,3 @@ -host=wlarb.synchro.net +host=localhost port=10088 autoupdate=true \ No newline at end of file diff --git a/xtrn/synchronetris/interbbs.doc b/xtrn/synchronetris/interbbs.doc index 16eaa841535f56c9efaccc292d83d051304b5d0b..0fe980258d5e22692a1f2ad40b3048e5a5c43797 100644 --- a/xtrn/synchronetris/interbbs.doc +++ b/xtrn/synchronetris/interbbs.doc @@ -1,3 +1,11 @@ +*****CONNECTING A GAME TO AN INTER-BBS HOST****** + +There is a SERVER.INI file included with every inter-BBS JavaScript game. +If you wish to connect your BBS to an existing network, edit the file and +put the appropriate hostname or IP address, and the port on which the network is +operating (default: 10088) + + *****UPDATING YOUR LOCAL LIBRARIES****** Before you attempt to install the inter-BBS service, it is recommended that you @@ -8,66 +16,77 @@ with the latest files from the Synchronet CVS repository at: RECOMMENDED UPDATES: - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/layout.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/inputline.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/funclib.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/calendar.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/event-timer.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/clock.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/scrollbar.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/json-sock.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/json-client.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/json-chat.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/frame.js - + http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/layout.js + http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/inputline.js + http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/funclib.js + http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/calendar.js + http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/event-timer.js + http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/clock.js + http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/scrollbar.js + http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/cvs.js + http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/frame.js + http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/tree.js + NOTE: Replace any outdated local copies with the latest release from the links. *****SETTING UP INTER-BBS SERVICE WITH SYNCHRONET***** +If you wish to host your own inter-BBS service for others to connect to, you must edit +the file SERVICES.INI in your relative 'CTRL/' path. You must also open whichever port you +specify on your router to allow other systems to connect (and edit your local server.ini +files so that you connect to your service). + + Default SERVICES.INI text for the inter-BBS service: + + [JSON] + Port = 10088 + Options = STATIC | LOOP + Command = json-service.js + The inter-BBS features of this program require that the appropriate services be configured, and that all of your files are up to date. The following files are needed to operate this program in inter-BBS mode, and can be downloaded from the Synchronet CVS repository at: http://cvs.synchro.net/cgi-bin/viewcvs.cgi/ - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/json-service.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/json-db.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/json-sock.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/ctrl/json-service.ini + http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/json-service.js + http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/json-db.js + http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/json-sock.js + http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/ctrl/json-service.ini NOTE: Placing these files in their corresponding local equivalent locations will make configuration much easier. -[JSON-CHAT.JS] +[EXEC/LOAD/JSON-CHAT.JS] - This handles all inbound/outbound chat messages, and packages them for delivery. - this also contains the necessary objects to implement a chat room (windowed or fullscreen). + This handles all inbound/outbound chat messages, and packages them for delivery json client. -[JSON-DB.JS] +[EXEC/LOAD/JSON-DB.JS] This file acts as a JSON object database, which is used by JSON-SERVICE, but can be used on the client side as well. -[JSON-CLIENT.JS] +[EXEC/LOAD/JSON-CLIENT.JS] - This file is the gateway to the program's interbbs server. It contains the methods needed to lock, unlock, - read, write and delete objects from the server database. + This file is the gateway to the program's interbbs server. It contains the methods needed to + lock, unlock, read, write and delete objects from the server database. -[JSON-SERVICE.JS] +[EXEC/JSON-SERVICE.JS] - This file acts as an interbbs server. It contains the methods needed to lock, unlock, + This file acts as an socket service. It contains the methods needed to lock, unlock, read, write and delete objects from the server database, and also accepts JSON-CLIENT connections - and acts as the main source for all dynamic program data. The file contains instructions for + and acts as the main source for all dynamic program data. The file also contains instructions for setting up a server. -[JSON-SERVICE.INI] +[CTRL/JSON-SERVICE.INI] This file tells JSON-SERVICE.JS where a program's files are located. This file is critical for the service to operate properly. If you have installed the programs that - use this service to their default locations, no additional configuration should be required. + use this service to their default locations, no additional configuration should be required other + than to un-comment the lines corresponding with the games you wish to host. -[SERVER.INI] +[XTRN/<GAME_DIR>/SERVER.INI] This file should be located in the program's working directory, as it contains information for the host and port the program will be connecting to. Deleting this file will cause diff --git a/xtrn/synchronetris/server.ini b/xtrn/synchronetris/server.ini index f4995f8a444b642fa5bd94dd66a872eb217851e5..81331d2cdcf848ed466fb9e5a14fd0c43342b2d6 100644 --- a/xtrn/synchronetris/server.ini +++ b/xtrn/synchronetris/server.ini @@ -1,3 +1,3 @@ -host=wlarb.synchro.net +host=localhost port=10088 autoupdate=true \ No newline at end of file diff --git a/xtrn/uberblox/interbbs.doc b/xtrn/uberblox/interbbs.doc index e12bf1824e492f46a7bf5c9a78bebe0f6f87890d..0fe980258d5e22692a1f2ad40b3048e5a5c43797 100644 --- a/xtrn/uberblox/interbbs.doc +++ b/xtrn/uberblox/interbbs.doc @@ -1,3 +1,11 @@ +*****CONNECTING A GAME TO AN INTER-BBS HOST****** + +There is a SERVER.INI file included with every inter-BBS JavaScript game. +If you wish to connect your BBS to an existing network, edit the file and +put the appropriate hostname or IP address, and the port on which the network is +operating (default: 10088) + + *****UPDATING YOUR LOCAL LIBRARIES****** Before you attempt to install the inter-BBS service, it is recommended that you @@ -8,26 +16,33 @@ with the latest files from the Synchronet CVS repository at: RECOMMENDED UPDATES: - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/irc_protocol.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/socket_bg.js http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/layout.js http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/inputline.js http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/funclib.js http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/calendar.js http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/event-timer.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/timer.js http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/clock.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/msgwndw.js http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/scrollbar.js http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/cvs.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/json-sock.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/json-client.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/chateng.js + http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/frame.js + http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/tree.js NOTE: Replace any outdated local copies with the latest release from the links. *****SETTING UP INTER-BBS SERVICE WITH SYNCHRONET***** +If you wish to host your own inter-BBS service for others to connect to, you must edit +the file SERVICES.INI in your relative 'CTRL/' path. You must also open whichever port you +specify on your router to allow other systems to connect (and edit your local server.ini +files so that you connect to your service). + + Default SERVICES.INI text for the inter-BBS service: + + [JSON] + Port = 10088 + Options = STATIC | LOOP + Command = json-service.js + The inter-BBS features of this program require that the appropriate services be configured, and that all of your files are up to date. The following files are needed to operate this program in inter-BBS mode, and can be downloaded from the Synchronet CVS repository at: @@ -42,36 +57,36 @@ this program in inter-BBS mode, and can be downloaded from the Synchronet CVS re NOTE: Placing these files in their corresponding local equivalent locations will make configuration much easier. -[CHATENG.JS] +[EXEC/LOAD/JSON-CHAT.JS] - This handles all inbound/outbound chat messages, and packages them for delivery via the irc protocol. - this also contains the necessary objects to implement a chat room (windowed or fullscreen). + This handles all inbound/outbound chat messages, and packages them for delivery json client. -[JSON-DB.JS] +[EXEC/LOAD/JSON-DB.JS] This file acts as a JSON object database, which is used by JSON-SERVICE, but can be used on the client side as well. -[JSON-CLIENT.JS] +[EXEC/LOAD/JSON-CLIENT.JS] - This file is the gateway to the program's interbbs server. It contains the methods needed to lock, unlock, - read, write and delete objects from the server database. + This file is the gateway to the program's interbbs server. It contains the methods needed to + lock, unlock, read, write and delete objects from the server database. -[JSON-SERVICE.JS] +[EXEC/JSON-SERVICE.JS] - This file acts as an interbbs server. It contains the methods needed to lock, unlock, + This file acts as an socket service. It contains the methods needed to lock, unlock, read, write and delete objects from the server database, and also accepts JSON-CLIENT connections - and acts as the main source for all dynamic program data. The file contains instructions for + and acts as the main source for all dynamic program data. The file also contains instructions for setting up a server. -[JSON-SERVICE.INI] +[CTRL/JSON-SERVICE.INI] This file tells JSON-SERVICE.JS where a program's files are located. This file is critical for the service to operate properly. If you have installed the programs that - use this service to their default locations, no additional configuration should be required. + use this service to their default locations, no additional configuration should be required other + than to un-comment the lines corresponding with the games you wish to host. -[SERVER.INI] +[XTRN/<GAME_DIR>/SERVER.INI] This file should be located in the program's working directory, as it contains information for the host and port the program will be connecting to. Deleting this file will cause diff --git a/xtrn/uberblox/server.ini b/xtrn/uberblox/server.ini index f4995f8a444b642fa5bd94dd66a872eb217851e5..81331d2cdcf848ed466fb9e5a14fd0c43342b2d6 100644 --- a/xtrn/uberblox/server.ini +++ b/xtrn/uberblox/server.ini @@ -1,3 +1,3 @@ -host=wlarb.synchro.net +host=localhost port=10088 autoupdate=true \ No newline at end of file diff --git a/xtrn/uberblox/sysop.doc b/xtrn/uberblox/sysop.doc index ae80559f3c99cd5482d0f0761553d930d54a8d10..e73db779b22b41cdbd1c7551f85d4137624bae46 100644 --- a/xtrn/uberblox/sysop.doc +++ b/xtrn/uberblox/sysop.doc @@ -45,25 +45,6 @@ update your relative 'EXEC/' and 'EXEC/LOAD/' paths (typically '/SBBS/EXEC' and with the latest files from the Synchronet CVS repository at: http://cvs.synchro.net/cgi-bin/viewcvs.cgi/exec/load/ - - RECOMMENDED UPDATES: - - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/irc_protocol.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/socket_bg.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/layout.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/inputline.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/funclib.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/calendar.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/event-timer.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/timer.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/clock.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/msgwndw.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/scrollbar.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/cvs.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/json-sock.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/json-client.js - http://cvs.synchro.net/cgi-bin/viewcvs.cgi/*checkout*/exec/load/chateng.js - NOTE: Replace any outdated local copies with the latest releases from these links. Please report any bugs, issues or questions to: mcmlxxix at bbs dot thebrokenbubble dot com