"Visual" stylist?

HyperSonic2097

New member
Messages
50
Points
0
Hi i have seen a stylist script on a server... I have tried to search for this script but i can't find anything. There is somewhere a "visual stylist" like this? I don't think they have coded by herself because the server isn't english, and their scripts are in other language.

photo_2020-05-14_01-07-04.jpg

 
isnt that the dress room

if you cant access it with a script command it might have a better chance on rathena\

 
isnt that the dress room

if you cant access it with a script command it might have a better chance on rathena\
No no, i was believing the dressing room it was some sort of addon. To be honest, i I haven't played ragnarok anymore for a long time (since 2007/2008) and i have never seen a dressing room before now.

Anyway, i have found the script command from myself and i have successfully modified the script. Thanks anyway for your precious help.🙄

 
Last edited by a moderator:
Hi i have seen a stylist script on a server... I have tried to search for this script but i can't find anything. There is somewhere a "visual stylist" like this? I don't think they have coded by herself because the server isn't english, and their scripts are in other language.

View attachment 6011
i need this add on pls help guide to setup or shared your script with me?

becaus i confuse to transfer from Rathena to Hercules on this

https://github.com/idathena/trunk/commit/4bdd552e65a710d0347247aa7c6affe76fc1159a#diff-e76b4c3a9d7a3be07ed23526499aa851L851

pls help

 
use script command openstylist

 
i need this add on pls help guide to setup or shared your script with me?

becaus i confuse to transfer from Rathena to Hercules on this

https://github.com/idathena/trunk/commit/4bdd552e65a710d0347247aa7c6affe76fc1159a#diff-e76b4c3a9d7a3be07ed23526499aa851L851

pls help
It0s because rAthena use dressroom(1); (or something like that, i don't remember exactly), in Hercules the correct syntax is dressroom(DRESSROOM_OPEN);

You can use this script (change the NPC name JP_SUPIKA if you need it).

Anyway you have also to modify jobdresseslist.lub in data\luafiles514\lua files\dressroom in your client, otherwise the dressroom didn't show all your styles!

_DressHeadstyleList_f = {
{ "(1) Style 1", 1 },
{ "(2) Style 2", 2 },
{ "(3) Style 3", 3 },
{ "(4) Style 4", 4 },

(...) add the number of your styles

ANd the same under 

_DressHeadstyleList_m = {
{ "(1) Style 1", 1 },
{ "(2) Style 2", 2 },

_DressBodyPaletteList_m = { is for male palette, f for female ecc

ANyway, since i am too lazy to add manually  Style 1, style 2 ecc i have write a small powershell script that will do for you in a txt file. When you need some other name you can change the script

$defaultFileName = '.\santrevaporca.txt'

For ($cnt=0; $cnt -le 99; $cnt++) {
    Add-Content $defaultFileName ('{ "(' + $cnt + ') Style ' + $cnt + '", ' + $cnt + ' },')
#    Add-Content $defaultFileName ($cnt)
}
Notepad santrevaporca.txt






I'm hope that help

View attachment stylist_1.6.txt
View attachment lista numero progressivo.ps1

 
Back
Top