kennykiro Posted February 21, 2017 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 75 Reputation: 1 Joined: 05/22/15 Last Seen: April 17, 2024 Share Posted February 21, 2017 Ola pessoal eu add as novas roupas que baixei aqui no forum Third Job Costumes: Corrected 1.3.2 so que a roupa da wanderer não vai eu uso o comando @bodystyle mais da falha não sei por que coloquei no lugar certo as outras classes foi normal so a do wanderer e Minstrel so as deles alguem sabe por que aconteceu isso?? e outra coisa eh o estilista o meu so fika assim ajuda arrumar plz . Obrigado a quem me ajudar ^^ Quote Link to comment Share on other sites More sharing options...
FXFreitas Posted February 21, 2017 Group: Members Topic Count: 8 Topics Per Day: 0.00 Content Count: 354 Reputation: 110 Joined: 01/30/13 Last Seen: June 7, 2024 Share Posted February 21, 2017 Tem que habilitar os artistas na conf da dress room, procura o dress pack postado pelo rytech lá em downloads, é o script que habilita essas roupas, o hercules ja possui mas o tópico ensina a usar. Quote Link to comment Share on other sites More sharing options...
kennykiro Posted February 21, 2017 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 75 Reputation: 1 Joined: 05/22/15 Last Seen: April 17, 2024 Author Share Posted February 21, 2017 FXFreitas você poderia me passar como eu habilito teria como mando o tópico do hercules pra mim?? pq eu uso o rathena Quote Link to comment Share on other sites More sharing options...
kennykiro Posted February 21, 2017 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 75 Reputation: 1 Joined: 05/22/15 Last Seen: April 17, 2024 Author Share Posted February 21, 2017 FXFreitas você tbm cosneguiria fazer um npc estilista com a opção bodystyle?? Quote Link to comment Share on other sites More sharing options...
FXFreitas Posted February 22, 2017 Group: Members Topic Count: 8 Topics Per Day: 0.00 Content Count: 354 Reputation: 110 Joined: 01/30/13 Last Seen: June 7, 2024 Share Posted February 22, 2017 (edited) O tópico tá aqui (Não postei antes por estar pelo celular): http://herc.ws/board/files/file/230-dress-pack/ O Dress Pack vem com um Read ME, que vem com as instruções de uso, manjando um pouco de google translatês você consegue achar as partes que explicam como da job funciona, eu mesmo apliquei o dress pack no RagEMU pra testar e adicionei a roupa Clássica do Cavaleiro Rúnico. Primeiramente precisa ir para pasta lua files e depois dressroom, para abrir o arquivo JobDressList.lub, basta adicionar a roupa alternativa, igual aos outros jobs: _DressList_m = { -- Rune Knight [4054] = { { "(0) Default", 0 } }, -- Warlock [4055] = { { "(0) Default", 0 } }, -- Ranger [4056] = { { "(0) Default", 0 } }, -- Arch Bishop [4057] = { { "(0) Default", 0 } }, -- Mechanic [4058] = { { "(0) Default", 0 }, { "(1) Alternate Outfit", 1 } Basta adicionar o { "(1) Alternate Outfit", 1} nos que já tem a roupa alternativa, igual ao do mecânico. Isso servirá apenas para que a dress room reconheça a sprite alternativa. Não esquece de achar o trans e o baby para adicionar as sprites tambem rsrs. Depois vir em: src/map/atcommand.c /*========================================== * @bodystyle [Rytech] *------------------------------------------*/ ACMD(bodystyle) { int body_style = 0; nullpo_retr(false, sd); memset(atcmd_output, '\0', sizeof(atcmd_output)); 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) { clif->message(fd, msg_txt(35)); // This job has no alternate body styles. return false; } if (!*message || sscanf(message, "%d", &body_style) < 1) { sprintf(atcmd_output, "Please, enter a body style (usage: @bodystyle <body ID: %d-%d>).", MIN_BODY_STYLE, MAX_BODY_STYLE); clif->message(fd, atcmd_output); return false; } if (body_style >= MIN_BODY_STYLE && body_style <= MAX_BODY_STYLE) { pc->changelook(sd, LOOK_BODY2, body_style); clif->message(fd, msg_txt(36)); // Appearence changed. } else { clif->message(fd, msg_txt(37)); // An invalid number was specified. return false; } return true; } Bem, vê onde está || (sd->class_&MAPID_THIRDMASK) == MAPID_ARCH_BISHOP || (sd->class_&MAPID_THIRDMASK) == MAPID_RANGER)? Basta adicionar o job que deseja tipo: || (sd->class_&MAPID_THIRDMASK) == MAPID_RUNE_KNIGHT Isso fará com que o comando @bodystyle e a função setlook 13,(número aqui) reconheçam o job que você adicionou. Depois salve e compile o Emulador. Talvez eu possa ter esquecido algum arquivo, faz muito tempo que fiz esse procedimento (quando lançaram a sprite do Ranger) e precisa testar tambem, mas acredito que não tenha esquecido nada. Edited February 22, 2017 by FXFreitas Half of my topic just not entered? Quote Link to comment Share on other sites More sharing options...
kennykiro Posted February 22, 2017 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 75 Reputation: 1 Joined: 05/22/15 Last Seen: April 17, 2024 Author Share Posted February 22, 2017 Mto obrigado FXFreitas irei fazer esses procedimentos *---* queria mais uma coisinha rsrs você teria um estilista com a opção mudar estilo de roupa? para mudar para roupas novas? Quote Link to comment Share on other sites More sharing options...
kennykiro Posted February 22, 2017 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 75 Reputation: 1 Joined: 05/22/15 Last Seen: April 17, 2024 Author Share Posted February 22, 2017 esta dando erro :/ Quote Link to comment Share on other sites More sharing options...
FXFreitas Posted February 22, 2017 Group: Members Topic Count: 8 Topics Per Day: 0.00 Content Count: 354 Reputation: 110 Joined: 01/30/13 Last Seen: June 7, 2024 Share Posted February 22, 2017 Acredito que esteja usando o nome errado. Talvez ao invés de minstrel seja MAESTRO ou algo assim e lembre que tem que adicionar a WANDERER tambem pois são bases separadas, e que eu lembre a tradução que o rAthena usa pra transclasse de bardo é Minstrel e não clown... e pra 3rd é outro nome, procura na source do Hercules pelo github deles, o mesmo arquivo na mesma parte. Lá já deve ter, eu postaria link se tivesse no pc Quote Link to comment Share on other sites More sharing options...
kennykiro Posted February 22, 2017 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 75 Reputation: 1 Joined: 05/22/15 Last Seen: April 17, 2024 Author Share Posted February 22, 2017 Blz mano irei da uma olhada :3 Quote Link to comment Share on other sites More sharing options...
kennykiro Posted February 22, 2017 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 75 Reputation: 1 Joined: 05/22/15 Last Seen: April 17, 2024 Author Share Posted February 22, 2017 Freitas você teria um estilista com essa opção de bodystyle em br? Quote Link to comment Share on other sites More sharing options...
FXFreitas Posted February 22, 2017 Group: Members Topic Count: 8 Topics Per Day: 0.00 Content Count: 354 Reputation: 110 Joined: 01/30/13 Last Seen: June 7, 2024 Share Posted February 22, 2017 Na verdade não, o único que eu conheço é o super stylist (em inglês) que pega a opção do bodystyle, acho que tem ele na seção de downloads do 3CeAM. Mas não sei se é compatível com rAthena, teria que testar. Eu não faço scripts então não posso ajudar nessa parte. Quote Link to comment Share on other sites More sharing options...
kennykiro Posted February 22, 2017 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 75 Reputation: 1 Joined: 05/22/15 Last Seen: April 17, 2024 Author Share Posted February 22, 2017 ae mano fui na github do hercules e fui em atcommand.c e não tem nada la ate achei estranho Quote Link to comment Share on other sites More sharing options...
FXFreitas Posted February 22, 2017 Group: Members Topic Count: 8 Topics Per Day: 0.00 Content Count: 354 Reputation: 110 Joined: 01/30/13 Last Seen: June 7, 2024 Share Posted February 22, 2017 Acabei de olhar o github do herc e realmente, eles mudaram a estrutura do comando, não conheço essa, mas parece que não restringe o comando pelo job. Quote Link to comment Share on other sites More sharing options...
kennykiro Posted February 22, 2017 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 75 Reputation: 1 Joined: 05/22/15 Last Seen: April 17, 2024 Author Share Posted February 22, 2017 putz e agora como faço pra arrumar isso :/ so essa roupa do wanderer e minstrel q nao vai Quote Link to comment Share on other sites More sharing options...
kennykiro Posted February 22, 2017 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 75 Reputation: 1 Joined: 05/22/15 Last Seen: April 17, 2024 Author Share Posted February 22, 2017 agora n sei oq fazer pra arrumar isso Quote Link to comment Share on other sites More sharing options...
FXFreitas Posted February 23, 2017 Group: Members Topic Count: 8 Topics Per Day: 0.00 Content Count: 354 Reputation: 110 Joined: 01/30/13 Last Seen: June 7, 2024 Share Posted February 23, 2017 aguardar o rathena atualizar a função aqui para dar suporte as classes que ainda restam. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.