スタンドアローンからスタンドアローンハイパーグリッドモードへ変更するための設定方法 ※かすみの経験によるため,確実にできるという保証は持てません。  回線の環境によっては,全くダメという場合もあります。 (1)「OpenSim.ini」の設定変更 フォルダ名「bin」の中にあります。 OpenSim.iniをワードパッドかメモ帳で開いてください。 その中の[Architecture]を変更します。 <変更前>  [Architecture]   Include-Standalone = "config-include/Standalone.ini"  ;Include-HGStandalone = "config-include/StandaloneHypergrid.ini"  ;Include-Grid = "config-include/Grid.ini"  ;Include-HGGrid = "config-include/GridHypergrid.ini"  ;Include-SimianGrid = "config-include/SimianGrid.ini" <変更後>  [Architecture]   ;Include-Standalone = "config-include/Standalone.ini"  Include-HGStandalone = "config-include/StandaloneHypergrid.ini"  ;Include-Grid = "config-include/Grid.ini"  ;Include-HGGrid = "config-include/GridHypergrid.ini"  ;Include-SimianGrid = "config-include/SimianGrid.ini" これで,モードがスタンドアローンモードから,スタンドアローンハイパーグリッドモードに切り替わりました。 (2)「StandaloneCommon.ini」の設定変更 フォルダ名「bin」の中の「config-include」の中にあります。 StandaloneCommon.iniをワードパッドかメモ帳で開いてください。 その中の[Hypergrid],[LoginService],[GridInfoService], [GatekeeperService]を変更します。 ※私見ですが,「http://127.0.0.1:9000」を「グローバルIPアドレスか,DDNSのアドレス」に変換する際に,一括変換はしない方がよいかと思います。 ※一括変換して見たこともあるのですが,状況がなお悪くなったように思います。(あくまで,私見です)  [Hypergrid]の変更 <変更前>  [Hypergrid]  ; Uncomment the variables in this section only if you are in  ; Hypergrid configuration. Otherwise, ignore.    ;# {HomeURI} {Hypergrid} {The Home URL of this world} {}  ;; If this is a standalone world, this is the address of this instance.  ;; If this is a grided simulator, this is the address of the external robust server that  ; ; runs the UserAgentsService.  ;; For example http://myworld.com:9000 or http://myworld.com:8002  ;; This is a default that can be overwritten in some sections.   HomeURI = "http://127.0.0.1:9000"   ;# {GatekeeperURI} {Hypergrid} {The URL of the gatekeeper of this world} {}   ;; If this is a standalone world, this is the address of this instance.   ;; If this is a grided simulator, this is the address of the external robust server  ;; that runs the Gatekeeper service.  ;; For example http://myworld.com:9000 or http://myworld.com:8002   ;; This is a default that can be overwritten in some sections.  GatekeeperURI = "http://127.0.0.1:9000" <変更後>  [Hypergrid]  ; Uncomment the variables in this section only if you are in  ; Hypergrid configuration. Otherwise, ignore.    ;# {HomeURI} {Hypergrid} {The Home URL of this world} {}  ;; If this is a standalone world, this is the address of this instance.  ;; If this is a grided simulator, this is the address of the external robust server that  ; ; runs the UserAgentsService.  ;; For example http://myworld.com:9000 or http://myworld.com:8002  ;; This is a default that can be overwritten in some sections.   HomeURI = "http://【グローバルIPアドレスか,DDNSのアドレス】:9000"   ;# {GatekeeperURI} {Hypergrid} {The URL of the gatekeeper of this world} {}   ;; If this is a standalone world, this is the address of this instance.   ;; If this is a grided simulator, this is the address of the external robust server  ;; that runs the Gatekeeper service.  ;; For example http://myworld.com:9000 or http://myworld.com:8002   ;; This is a default that can be overwritten in some sections.  GatekeeperURI = "http://【グローバルIPアドレスか,DDNSのアドレス】:9000" [LoginService]の変更 <変更前>  [LoginService]   SRV_HomeURI = "http://127.0.0.1:9000"  SRV_InventoryServerURI = "http://127.0.0.1:9000"   SRV_AssetServerURI = "http://127.0.0.1:9000"   SRV_ProfileServerURI = "http://127.0.0.1:9000"  SRV_FriendsServerURI = "http://127.0.0.1:9000"  SRV_IMServerURI = "http://127.0.0.1:9000"  ;; For Viewer 2  MapTileURL = "http://127.0.0.1:9000" <変更後>  [LoginService]   SRV_HomeURI = "http://【グローバルIPアドレスか,DDNSのアドレス】:9000"  SRV_InventoryServerURI = "http://【グローバルIPアドレスか,DDNSのアドレス】:9000"  SRV_AssetServerURI = "http://【グローバルIPアドレスか,DDNSのアドレス】:9000"   SRV_ProfileServerURI = "http://【グローバルIPアドレスか,DDNSのアドレス】:9000"  SRV_FriendsServerURI = "http://【グローバルIPアドレスか,DDNSのアドレス】:9000"  SRV_IMServerURI = "http://【グローバルIPアドレスか,DDNSのアドレス】:9000" ;; For Viewer 2 MapTileURL = "http://【グローバルIPアドレスか,DDNSのアドレス】:9000" [GridInfoService]の変更 ※この部分は,シノバーさんのブログより <変更前>  [GridInfoService]  login = http://127.0.0.1:9000   gridname = "the lost continent of hippo"   gridnick = "hippogrid"  ;uas = http://127.0.0.1:9000 <変更後>  [GridInfoService]  login = http://【グローバルIPアドレスか,DDNSのアドレス】:9000  gridname = "【グリッドの名前を付けてください】"  gridnick = "【グリッドのニックネームを付けてください】"  uas = http://【グローバルIPアドレスか,DDNSのアドレス】:9000 [GatekeeperService]の変更 <変更前>  [GatekeeperService]  ExternalName = "http://127.0.0.1:9000" <変更後>  [GatekeeperService]  ExternalName = "http://【グローバルIPアドレスか,DDNSのアドレス】:9000" (3)「Regions.ini」の設定変更 フォルダ名「bin」の中の「Regions」の中にあります。 Regions.iniをワードパッドかメモ帳で開いてください。 その中の項目を変更します。 ※SIMが複数ある場合には,すべてのSIMについて設定する必要があります。 <変更前>  [【SIMの名前】]   InternalAddress = 0.0.0.0   ExternalHostName = SYSTEMIP <変更後>  [【SIMの名前】]   InternalAddress = 【ローカルIPアドレスに変更しても,0.0.0.0でもいい】   ExternalHostName = 【グローバルIPアドレスか,DDNSのアドレス】