Jump to content
  • 0

Graphic's Patcher/ Grafica Del Patcher


ProtoMan

Question


  • Group:  Members
  • Topic Count:  26
  • Topics Per Day:  0.01
  • Content Count:  97
  • Reputation:   0
  • Joined:  01/06/13
  • Last Seen:  

Signori, salve!
Sono ProtoMan e aprii tempo fa un server, per un mio problema chiuse ed ora è di nuovo ON.
Principalmente ho fatto tutto, parte e tranne qualche banale problema, va;
solo due cose:

 

1) Come posso cambiare la grafica del patcher (neoncube.exe) ? O meglio, l'ho aperto e modificato in HTML, però quando vado ad aprire il file per aggiornare, non si modifica nulla.

 

2) Quando resetto il look dal control pannel ad un personaggio, mi setta come sprite per i capelli, colore capelli e vestiti la numero zero, ebbene, quando la sprite è settata su 0 il personaggio crasha, a come so non è implementata la sprite zero. Come posso implementarla insieme a tutte le altre? Oppure, dato che le ho già in un .grf a parte ma sembra non leggerle o comunque crasha ugualmente quando le setto con lo Stylist.
 

Di palette non son mai stato molto bravo <<

in ogni caso, grazie davvero in anticipo e spero di poter risolvere qualcosa, a presto!

 

 

Write also in english:

 

Gentlemen, hello!
I'm ProtoMan, time ago I opened a server, for my problem was closed and now it is again ON.
Mainly I did it all, part and apart from a few trivial problem, it should be;
only two things:


1) How can I change the look of the patcher (neoncube.exe)? Or rather, I opened and edited in HTML, but when I go to open the file to update, do not change anything.


2) When I reset the look from the control panel to a character, I like sprite sets for the hair, hair color and clothes the number zero, well, when the sprite is set to 0, the character crashes, how to know the sprite is not implemented zero. How can I implement it along with all the others? Or, since I already have a. Grf apart but it seems not to read or otherwise crashes too when the septum with the Stylist.


Palette I have never been very good <<

In any case, thank you very much in advance and I hope I can fix anything, see you soon!

 

(Sorry for my and Google's bad english) .

 

Link to comment
Share on other sites

3 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  22
  • Topics Per Day:  0.00
  • Content Count:  1479
  • Reputation:   172
  • Joined:  12/14/11
  • Last Seen:  

Hello ProtoMan,

 

Answering your questions,

 

1. Are you changing the SKIN of the Neoncube patcher? if yes, just go to your RO directory\neoncube  or  RO directory\your set patcher's folder name (I think it's the neoncube folder) and you will find the skin somewhere around there (sorry, I forgot about Neoncube. I just remembered about JikariCube)

 

2. Just change the setting of the script to whatever you like. If you would like to, paste your script here and we will help you doing that. wait...

you were saying that you like the sprite numbers 0 right? it means you can see them, right? then, why do you got crashed?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  26
  • Topics Per Day:  0.01
  • Content Count:  97
  • Reputation:   0
  • Joined:  01/06/13
  • Last Seen:  

1) Eh no, I have to change the part below, the empty space that is connected to index.html.


2Hmm not, if I put the sprite number zero, crashes, this happens when I reset the look from the control panel, which by default set to 0 and when Loggo crasho also are not very good at insert palette and configure them in the Stylist, everything here, the script is this, a simply dye.txt:

 



 

//===== eAthena Script =======================================


//= Stylist Script


//===== By: ==================================================


//= eAthena Dev team


//= Revised by Nekosume [pyRO v3.0]


//===== Current Version: =====================================


//= 4.2


//===== Compatible With: =====================================


//= Any eAthena Version


//===== Description: =========================================


//= Revised dye NPC


//===== Additional Comments: =================================


//= v4.2 - Renamed to avoid conflict [Paradox924X]


//= v4.1 - New hairstyles added [Mass Zero]


//= v4.0 - Refined and Combined [Darkchild]


//= v3.0 - Added the 'Browse' options


//= v2.5 - Added more hair colors


//= v2.0 - Changed palette and hair style select


//= v1.5 - Revised script / different dialog


//= v1.0 - Split into two NPCs


//============================================================



 


//Stylist------------------------------------------------------------------------------------------------------------


prontera,170,180,1    script    Stylist#custom_stylist    122,{


    mes "[^FF8000Stylist^000000]";


    mes "I'm the greatest stylist in all of Rune-Midgard~~!";


    mes "I can change your hair style or color!";


    mes "What do you wish to change?";


    next;


    menu "Hair style",Lstyle,"Hair color",Lcolor,"Cloth Color",Lcloth,"Nothing",LCancel;



    Lstyle:


        mes "[^FF8000Stylist^000000]";


        mes "Do you want to browse through the choices, or do you know what you want?";


        next;


        menu "Browse",Lbrowsesty,"I know what I want",Lwantsty;



    Lwantsty:


        mes "[^FF8000Stylist^000000]";


        mes "Great! Now just pick a style and I'll get started!";


        next;


        mes "[^FF8000Stylist^000000]";


        mes "Please pick a style number ^0000FFbetween 0 and 23^000000.";


        mes "Number 0, by the way, is the default style for your character.";


        next;


        input @sty;


        if (@sty>23) close;


        if (@sty<1) close;


        setlook 2,@sty;


        next;


        mes "[^FF8000Stylist^000000]";


        mes "Is this good, or do you want a different style?";


        next;


        menu "This is good",-,"Different style, please",Lwantsty;


        next;


        mes "[^FF8000Stylist^000000]";


        mes "You look great~! Come back again, okay?";


        close;



    Lbrowsesty:


        set @look, -1;


        mes "[^FF8000Stylist^000000]";


        mes "Okay, here we go~! Just stop me when you see something you like, okay?";


        next;



    Lbrowserep:


        set @look,@look+1;


        setlook 2,@look;


        mes "This is Pallete Number^FF9009 "+@look+" ^000000!";


        if(@look == 23) menu "Back To The Begin",Lbrowsesty,"I like this one",Lstop;


        if(@look != 23)    menu "Keep going",Lbrowserep,"I like this one",Lstop;


        


    Lcolor:


        mes "[^FF8000Stylist^000000]";


        mes "Do you want to browse through the choices, or do you know what you want?";


        next;


        menu "Browse",Lbrowsecolor,"I know what I want",Lwantcolor;



    Lwantcolor:


        mes "[^FF8000Stylist^000000]";


        mes "Just pick a color and we can get started.";


        next;


        mes "[^FF8000Stylist^000000]";


        mes "Please pick a style number ^0000FFbetween 0 and 20^000000.";


        mes "Number 0, by the way, is the default color for your character.";


        next;


        mes "[^FF8000Stylist^000000]";


        mes "1 is blonde...";


        mes "2 is lavender...";


        mes "3 is brown...";


        mes "4 is green...";


        mes "5 is blue...";


        mes "6 is white...";


        mes "7 is black...";


        mes "8 is red...";


        mes "and 9-20 are new colors.";


        input @color;


        if (@color>20) close;


        if (@color<1) close;


        setlook 6,@color;


        next;


        mes "[^FF8000Stylist^000000]";


        mes "Is this good, or do you want a different color?";


        next;


        menu "This is good",-,"Different color, please",Lwantcolor;


        next;


        mes "[^FF8000Stylist^000000]";


        mes "You look great~! Come back again, okay?";


        close;



    Lbrowsecolor:


        set @look, -1;


        mes "[^FF8000Stylist^000000]";


        mes "Okay, here we go~! Just stop me when you see something you like, okay?";


        next;



    Lbrowsecolorrep:


        set @look,@look+1;


        setlook 6,@look;


        mes "This is Pallete Number^FF9009 "+@look+" ^000000!";


        if(@look == 20) menu "Back To The Begin",Lbrowsecolor,"I like this one",Lstop;


        if(@look != 20)    menu "Keep going",Lbrowsecolorrep,"I like this one",Lstop;



        Lstop:


            mes "[^FF8000Stylist^000000]";


            mes "You look great~! I love it~! ^_^";


            close;



    LCancel:


        mes "[^FF8000Stylist^000000]";


        mes "Well come again.";


        close;



    Lcloth:


        mes "[^FF8000Stylist^000000]";


        mes "Do you want to browse through the choices, or do you know what you want?";


        next;


        menu "Browse",Lbrowsecloth,"I know what I want",Lwantcloth;



    Lwantcloth:


        mes "[^FF8000Stylist^000000]";


        mes "Great! Now just pick a pallete and I'll get started!";


        next;


        mes "[^FF8000Stylist^000000]";


        mes "Please pick a style number ^0000FFbetween 0 and 77^000000.";


        mes "Number 0, by the way, is the default style for your character.";


        next;


        input @pal;


        if (@pal>77) close;


        if (@pal<1) close;


        setlook 7,@pal;


        next;


        mes "[^FF8000Stylist^000000]";


        mes "Is this good, or do you want a different pallet";


        next;


        menu "This is good",-,"Different pallet, please",Lwantcloth;


        next;


        mes "[^FF8000Stylist^000000]";


        mes "You look great~! Come back again, okay?";


        close;



    Lbrowsecloth:


        set @look, -1;


        mes "[^FF8000Stylist^000000]";


        mes "Okay, here we go~! Just stop me when you see something you like, okay?";


        next;



    Lbrowseclothrep:


        set @look,@look+1;


        setlook 7,@look;


        mes "This is Pallete Number^FF9009 "+@look+" ^000000!";


        if(@look == 77) menu "Back To The Begin",Lbrowsecloth,"I like this one",Lstop;


        if(@look != 77)    menu "Keep going",Lbrowseclothrep,"I like this one",Lstop;


}


 



Thank you very much for the reply and the availability and sorry again for my english <_>

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  26
  • Topics Per Day:  0.01
  • Content Count:  97
  • Reputation:   0
  • Joined:  01/06/13
  • Last Seen:  

Up!

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
Answer this question...

×   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...