Jump to content

pueblodefairy

Members
  • Posts

    74
  • Joined

  • Last visited

Posts posted by pueblodefairy

  1. 16 hours ago, AnnieRuru said:
    
    prontera,147,174,5	script	Change Dress	509,{
    	if ( !(eaclass() & EAJL_THIRD) || BaseJob == Job_SuperNovice ) {
    		mes "I'm sorry, but you do not have 3rd class.";
    		close;
    	}
    	mes "Hi "+strcharinfo(0)+" do you want to change your dress?";
    	next;
    	if ( select ( "Yes", "No" ) == 2 ) close;
    	if ( Zeny < 100000000 ) {
    		mes "You need 100,000,000 Zeny";
    		close;
    	}
    	.@s = select("Primary Dress", "Second Dress") -1;
    	if ( getlook(LOOK_BODY2) == .@s ) {
    		mes "You already wearing that dress";
    		close;
    	}
    	setlook LOOK_BODY2, .@s;
    	Zeny -= 100000000;
    	mes "Done!";
    	close;
    }

    this script was like... just few topics down below ...

    Thanks a lot its works good, but it has a problem when i log out the sprite change again. Do i have to change sprites names to fix it? or something different?

  2. On 10/10/2018 at 6:52 AM, Anacondaqq said:

    Hi. data.ini is a file where order what GRF's will overwrite original data.grf.

    
    [Data]
    1=palettes.grf    <----------- this GRF will load LAST and will overwritet myserver.grf + data.grf sprites / acts, etc
    2=myserver.grf    <----------- this grf will OVERWRITE data from data.grf because it will load AFTER data.grf all customs must be added here
    3=data.grf        <----------- this grf will load first by the game client it contains all data inside (basic from RO client)

    What does it mean? Usually, RO admins create their own grf which they put in higher order (for example 1=myserver.grf) where they add their custom content and do not touch data.grf. Because data.grf by default have tons of sprites, and images, and content which is required by RO, and all your custom stuff (wings, etc) need to add to GRF with lower number in a queue in data.ini. So you need edit only myserver.grf , because it will contain all your data, and will overwrite data.grf Sounds confusing, just read text box above, and you will understand what I wish to explain, it's easy.

    so, only rathena_RENEWAL_2018.grf should be modify to add my custom wings? using grf editor to add the sprites and textures inside DATA.GRF and modIfy accesoryid.lub and accname.lub inside rathena_RENEWAL_2018.grf and finally use Server database editor to modify ONLY  rathena_RENEWAL_2018.gr and my wings should be ready??

  3. 33 minutes ago, Anacondaqq said:

    In system/ folder tipbox or towninfo.lua, I do not remember. But I saw it too... You can use in GRF Editor option called "advanced search" which will search over whole GRF for the text to find exactly in which file the line is exist. 

    i found it in textures but if i delete it , it causes a problem when i log in, so i used my creativity and place a Npc down that icon... hahaha.... thanks a lot for your help

×
×
  • Create New...