Jump to content

Error con dressroom


Vicious

Recommended Posts


  • Group:  Members
  • Topic Count:  11
  • Topics Per Day:  0.00
  • Content Count:  52
  • Reputation:   11
  • Joined:  07/19/17
  • Last Seen:  

Hola gente, como va?

Tengo un problema, he descargado el npc scrips del dressroom 3CeAM, pero al ponerlo nose porke el cliente hace crash... osea al hablarle y elegir la opcion "sure" para que abra la ventana del dressroom, el juego se tilda y dice que dejo de funcionar... sin embargo en la consola no tira ningun error al cargar o al cerrarse... podrian darme una mano con esto?

 5989d9f8e7150_8-8-201712.8_91.jpg.2c7915c496f756098510a6d4e4387031.jpg5989da081879c_8-8-201712.8_392.jpg.e38dc53f2976838716904f8487a02c22.jpg

Edited by Vicious
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  88
  • Reputation:   10
  • Joined:  01/15/16
  • Last Seen:  

Debes descargar también el archivo de dressroom y agregarlo a tu grf

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  11
  • Topics Per Day:  0.00
  • Content Count:  52
  • Reputation:   11
  • Joined:  07/19/17
  • Last Seen:  

Hola, muchas gracias por tu respuesta, yo estoy usando el cliente+server offline 2017, efectivamente, su grf con el archivo del dressroom al parecer esta mal, asique arme un custom.grf y le meti el dresspack.grf alli... asique ahora anda bien!. Salvo algunos detalles que tube que modificar para que lea los peinados, y trajes alternativos. 

Tengo una duda, el npc lee bien los trajes de Sorcerer, Minstrel y Shadow chaser, pero el comando @bodystyle 1 no sirve para esos jobs, me dice "This job has no alternative body styles", sin embargo en el ultimo dresspack ya los trae. Hay alguna forma de modificar eso y que el comando los pueda leer y ejecutar?

598c0e1cc152f_10-8-20174.8_3411.jpg.852315fb952e92c0bee328c4fda5a74b.jpg

 

 

598c0c6885efe_10-8-20174.8_548.jpg.0bdef0bd77e5564b5c54d527faa2edc7.jpg598c0ca7492f2_10-8-20174.8_509.jpg.43e9acd1c7c222cbbd55432455753be1.jpg

 

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  88
  • Reputation:   10
  • Joined:  01/15/16
  • Last Seen:  

Si, eso ya esta capado por parte del servidor, a pesar de ya estar en la grf.
En tu servidor debes buscar en la carpeta conf/battle/client.conf las opciones para el bodystyle

Link to comment
Share on other sites

  • 3 weeks later...

  • Group:  Members
  • Topic Count:  11
  • Topics Per Day:  0.00
  • Content Count:  52
  • Reputation:   11
  • Joined:  07/19/17
  • Last Seen:  

Hola, gracias por responder, finalmente he podido solucionarlo editando el atcommand.c y agregando las lineas de los jobs que faltaban para que los trajes alternativos sean ejecutados por el @bodystyle 1 :

/*==========================================
 * @bodystyle [Rytech]
 *------------------------------------------*/

ACMD_FUNC(bodystyle)
{
    int body_style = 0;
    nullpo_retr(-1, sd);

    memset(atcmd_output, '\0', sizeof(atcmd_output));

    // Limit body styles to certain jobs since not all of them are released yet.
    if (!((sd->class_&MAPID_THIRDMASK) == MAPID_GUILLOTINE_CROSS || (sd->class_&MAPID_THIRDMASK) == MAPID_GENETIC
        || (sd->class_&MAPID_THIRDMASK) == MAPID_MECHANIC || (sd->class_&MAPID_THIRDMASK) == MAPID_ROYAL_GUARD
        || (sd->class_&MAPID_THIRDMASK) == MAPID_ARCH_BISHOP || (sd->class_&MAPID_THIRDMASK) == MAPID_RANGER
        || (sd->class_&MAPID_THIRDMASK) == MAPID_WARLOCK    ||    (sd->class_&MAPID_THIRDMASK) == MAPID_MINSTRELWANDERER
        ||    (sd->class_&MAPID_THIRDMASK) == MAPID_SORCERER     ||    (sd->class_&MAPID_THIRDMASK) == MAPID_SHADOW_CHASER

        ||    (sd->class_&MAPID_THIRDMASK) == MAPID_RUNE_KNIGHT)) {

clif_displaymessage(fd, msg_txt(sd,740));    // This job has no alternate body styles.
        return -1;
    }

 

 

Por cierto, hay algun add on para implementar el STYLING SHOP SYSTEM?

Edited by Vicious
  • Upvote 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...