LEGO® Universe Nuevamente Imaginado
Menu
  • Inicio
  • Descargar
    • Música
  • Foros
  • Info
    • World
    • FAQ
    • Objects
  • Tutorial
    • Compile in Visual Studio
    • Servidor 0.3
    • Servidor 0.4 (Pre-2)
    • Servidor 0.5.1
  • Inicio
  • Descargar
    • Música
  • Foros
  • Info
    • World
    • FAQ
    • Objects
  • Tutorial
    • Compile in Visual Studio
    • Servidor 0.3
    • Servidor 0.4 (Pre-2)
    • Servidor 0.5.1

Xiphoseer


  • Perfil
  • Debates iniciados
  • Respuestas creadas
  • Participaciones
  • Favoritos

Respuestas de foro creadas

Viendo 15 entradas - de la 151 a la 165 (de un total de 182)
← 1 2 3 … 10 11 12 13 →
  • Autor
    Entradas
  • agosto 31, 2015 a las 10:36 am en respuesta a: Loading Venture Explorer stuck at 0% #465
    Xiphoseer
    Moderador

    ok this log shows indeed that the client could not connect to the char/world server. Please post the server console (especially the «started on … » parts) and your config.ini

    agosto 31, 2015 a las 10:31 am en respuesta a: Change Spawn location #464
    Xiphoseer
    Moderador

    No version of LUNI can currently provide that afaik, sorry

    agosto 31, 2015 a las 10:27 am en respuesta a: Help with 0.7 #460
    Xiphoseer
    Moderador

    I think the server only uses the name you can freely choose atm so please type on in there

    agosto 31, 2015 a las 9:50 am en respuesta a: Help with 0.7 #457
    Xiphoseer
    Moderador

    Did you choose a different name AND temporary name out of three words?

    agosto 31, 2015 a las 7:51 am en respuesta a: Change Spawn location #441
    Xiphoseer
    Moderador

    There is a system the client software requires us to use, that manages all objects in the game. When anything appears in your game, this system «created» it for your client. At the moment that only works for the player your joining the server with, and no form of recieving updates from the server is implemented.

    agosto 31, 2015 a las 7:48 am en respuesta a: When is LuniServer 0.7.0 out #440
    Xiphoseer
    Moderador

    Mater did some work on 0.7, it was linked somewhere (look at timtechsoftware.com). Mater’s version has launchpads working. I can’t tell you anything else about future releases.

    • Esta respuesta fue modificada hace 9 años, 8 meses por Timtech. Razón: timtechsoftware.net -> timtechsoftware.com
    agosto 31, 2015 a las 5:51 am en respuesta a: How to edit my profile picture after registering #434
    Xiphoseer
    Moderador

    @XYQuadrat I merged that first post by @LegoClub from another topic, so that’s why the question appeared again. But yeah, look at existing topics first!

    agosto 31, 2015 a las 5:45 am en respuesta a: Loading Venture Explorer stuck at 0% #432
    Xiphoseer
    Moderador

    Ok the client log should not be deleted while the client is still running. Go to C:\Users\[Your Username]\AppData\Local\LEGO Software\LEGO Universe\Log Files while the client is stuck at ‘Submitting Username’ and save the file somwhere else and upload it on pastebin.com.

    To me it sounds like the client tries to connect to the char server and fails, so please go to config.ini in the debug folder and tell us the redirect_ip. Which IP address do you connect with your client? (AUTHSERVERIP in boot.cfg)

    agosto 31, 2015 a las 5:39 am en respuesta a: LUNI Research #431
    Xiphoseer
    Moderador

    If you mean LDF Key/Values in general, Appendix A of the docs explains that quite well.

    [L:4] - number of keys
        [L:1] - key length in bytes
        [L:V] - key, wchar
        [L:1] - data type (see below)
        [L:according to data type] - data

    Is the basic structure of a LDF part.

    Now there is a list of data types:

    0 : String (variable wstring?)
    1 : s32
    3 : Float (32bit, signed)
    5 : u32
    7 : Boolean (8bit, 0 or 1)
    8 : s64
    9 : s64, Used only for (object?) IDs?
    13 : bytes?

    for each key/value pair that you want to encode, just write
    – the length of your key string *2 (bytelength) in one byte
    – the key itself with wchar_t’s / as wstring
    – the data type as 1 byte
    – the data itself

    for the data itself, just write them out with the specified length or for variable length data types, prepend the data with a u32/unsigned long length specifier.

    agosto 31, 2015 a las 5:13 am en respuesta a: Change Spawn location #430
    Xiphoseer
    Moderador

    You can’t see other players, because the server can not at this point send information about one player to other players, e.g. create them for the client or update their position.

    agosto 30, 2015 a las 12:37 pm en respuesta a: Change Spawn location #414
    Xiphoseer
    Moderador

    EasyWorld Changer does nothing else than change hex values afaik, but is easier to use, yes. Is the second sentence a different question?

    agosto 30, 2015 a las 12:05 pm en respuesta a: Loading Venture Explorer stuck at 0% #411
    Xiphoseer
    Moderador

    Then please provide the same documents!

    agosto 30, 2015 a las 8:47 am en respuesta a: Need Help!! #409
    Xiphoseer
    Moderador

    Ok «System» has port 80 blocked. Since I guess you only use it for phpmyadmin now, you might be able to start the Apache server on port 81 (In the Apache row click «Config» then «Apache (httpd.conf)» and search for «Listen 80» and replace it with «Listen 81» then open http://localhost:81/phpmyadmin

    agosto 30, 2015 a las 8:44 am en respuesta a: Change Spawn location #408
    Xiphoseer
    Moderador

    @HailStorm, when you log out and log back in, you used to reappear where you logged out. That means when joining a world, any position is possible. The problem with the coordinates is that the server uses the RM to spawn a Player object that you then control. It’s this Player object that is responsable for where your minifigure finally appears.

    – When you logged into LEGO Universe and were on the same map as your friend but couldn’t see each other, you were on different map instances, that’s at least how I see it atm. map clone is also there, i think it has something to do with properties.
    – I have sadly no idea what that does
    – There is a list of map ids at Infos/Worlds on this site.

    There is a place where all this is stored, but it doesn’t really help to know it without the knowledge how to implement it into the server. Character customization will come.

    Actually we hope to create some docs, and there already are some, but it depends on what you know and what you plan to do.

    agosto 30, 2015 a las 8:04 am en respuesta a: Loading Venture Explorer stuck at 0% #403
    Xiphoseer
    Moderador

    Hi @neosaurus, can you post the full log on pastebin or so and post the link here?
    And go to C:\Users\[Your Username]\AppData\Local\LEGO Software\LEGO Universe\Log Files in your User folder and post the file there in the same way. Please mind that the old log gets deleted every time you restart the game.

  • Autor
    Entradas
Viendo 15 entradas - de la 151 a la 165 (de un total de 182)
← 1 2 3 … 10 11 12 13 →

Idioma Preferido


  • English (en) English (en)
  • Deutsch (de) Deutsch (de)
  • Español (es) Español (es)

Busca en los Foros


Los Últimos Temas


  • Happy New Year
  • FORUMS CLOSED

Foros

  • General Discussion

Otros Sitios

  • LU Server Projects Github online
  • Community Discord online
  • buscar el LUNIverso

    Tenga en cuenta

    El Grupo LEGO no ha aceptado o autorizado el funcionamiento de este juego y no es responsable de los problemas de seguridad en relación con la operación de este juego.

    © 2015-2021 Proyecto LUNI™ Servidor

    Organizada por TimTech Software