Jump to content

alexander03

Members
  • Posts

    154
  • Joined

  • Last visited

Posts posted by alexander03

  1. On 9/27/2023 at 9:16 AM, hendra814 said:

    check at this link, this post give the guide how to create it click this

    Sir thank you very muchhh appreciated thank you thank you soo muchhh you guys have good heart

     

    ry very muchhh i really2 appreciated you guys have good heart thank you allot sir

     

    On 9/27/2023 at 10:18 AM, khyle650 said:

    Update: My project all Auras. (09/27/2023)

    Link only pack Auras: https://www.mediafire.com/file/89cdcv63zctjucl/Auras.7z/file

     

    Too my project Ragnarok Online Pre-Renewal and guide for easy update.

    - Data Folder + Server: https://drive.google.com/file/d/1ZnhVBUOOdFZBRnlJZgaPwECWykqN2gCa/view?usp=drivesdk

    - Client RO: https://drive.google.com/file/d/1yPANTBDcTjYfvZu7A78ct8XXVtO0WEdU/view?usp=drivesdk

    Thanks allot sir you save my life hahaha 🙂 1 more question sir,can i paste all you made into my grf and client side? Cause im using rathena emulator,.the name of iteminfo.lua and item_db is dfrrent aand the script also 🙂

  2. On 3/3/2023 at 3:51 AM, khyle650 said:

    1. rathena/src/map/script.hpp

    Search:

    	HAT_EF_MAX

    Replace:

    	/* Custom Hateffects */
    	HAT_EF_arcane_aura_A,
    	HAT_EF_arcane_aura_B,
    	HAT_EF_gluttony_aura_A,
    	HAT_EF_gluttony_aura_B,
    
    	HAT_EF_MAX = 9999

    2. rathena/src/map/script_constants.hpp

    Search:

    	export_constant(HAT_EF_EFST_C_20TH_ANNIVERSARY_HAT);

    Replace:

    	export_constant(HAT_EF_EFST_C_20TH_ANNIVERSARY_HAT);
    	/* Custom Hateffects */
    	export_constant(HAT_EF_arcane_aura_A);
    	export_constant(HAT_EF_arcane_aura_B);
    	export_constant(HAT_EF_gluttony_aura_A);
    	export_constant(HAT_EF_gluttony_aura_B);

    3. Compile you Server.

    4. Copy in you Data/texture/effect/(arcane_aura) and (gluttony_aura) Data(Example_Auras).zip

    5. Data/luafiles514/lua files/hateffectinfo/hateffectinfo.lub

    Search:

    	HAT_EF_efst_C_20th_Anniversary_Hat = 176
    }

    Replace:

    	HAT_EF_efst_C_20th_Anniversary_Hat = 176,
    	HAT_EF_arcane_aura_A = 177,
    	HAT_EF_arcane_aura_B = 178,
    	HAT_EF_gluttony_aura_A = 179,
    	HAT_EF_gluttony_aura_B = 180
    }

    resourceFileName: route effect(Data/effect/name you effect folder/name you str file.str)
    IsIgnoreRiding: if true when mounting a mount or asking for hateffect will not go up, it will ignore this action
    isRenderBeforeCharacter: If true when using hateffect it will be over the character.
    hatEffectPos: Position the Y anchor (up and down) of the hateffect
    hatEffectPosX: Positions hateffect X anchor (left right)
    isAdjustPositionWhenShrinkState: always true
    isAdjustSizeWhenShrinkState: always true

    Search:

    	[HatEFID.HAT_EF_efst_C_20th_Anniversary_Hat] = {
    		resourceFileName = "efst_C_20th_Anniversary_Hat\\20th_f.str",
    		hatEffectPos = -6,
    		hatEffectPosX = 0,
    		isIgnoreRiding = true,
    		isAdjustPositionWhenShrinkState = true,
    		isAdjustSizeWhenShrinkState = true
    	}
    }

    Replace:

    	[HatEFID.HAT_EF_efst_C_20th_Anniversary_Hat] = {
    		resourceFileName = "efst_C_20th_Anniversary_Hat\\20th_f.str",
    		hatEffectPos = -6,
    		hatEffectPosX = 0,
    		isIgnoreRiding = true,
    		isAdjustPositionWhenShrinkState = true,
    		isAdjustSizeWhenShrinkState = true
    	},
    	[HatEFID.HAT_EF_arcane_aura_A] = {
    		resourceFileName = "arcane_aura\\arcane_aura_particle.str",
    		hatEffectPos = -1,
    		hatEffectPosX = 0,
    		isRenderBeforeCharacter = false,
    		isIgnoreRiding = false,
    		isAdjustPositionWhenShrinkState = true,
    		isAdjustSizeWhenShrinkState = true
    	},
    	[HatEFID.HAT_EF_arcane_aura_B] = {
    		resourceFileName = "arcane_aura\\arcane_aura.str",
    		hatEffectPos = -2,
    		hatEffectPosX = 0.2,
    		isRenderBeforeCharacter = true,
    		isIgnoreRiding = true,
    		isAdjustPositionWhenShrinkState = true,
    		isAdjustSizeWhenShrinkState = true
    	},
    	[HatEFID.HAT_EF_gluttony_aura_A] = {
    		resourceFileName = "gluttony_aura\\gluttony_aura_particle.str",
    		hatEffectPos = -1,
    		hatEffectPosX = 0,
    		isRenderBeforeCharacter = false,
    		isIgnoreRiding = false,
    		isAdjustPositionWhenShrinkState = true,
    		isAdjustSizeWhenShrinkState = true
    	},
    	[HatEFID.HAT_EF_gluttony_aura_B] = {
    		resourceFileName = "gluttony_aura\\gluttony_aura.str",
    		hatEffectPos = -2,
    		hatEffectPosX = 0.2,
    		isRenderBeforeCharacter = true,
    		isIgnoreRiding = true,
    		isAdjustPositionWhenShrinkState = true,
    		isAdjustSizeWhenShrinkState = true
    	}
    }

     

    6. Add Script NPC: rathena\npc\custom\hateffect.txt (Use command @efc in game)

    -	script	HATEFFECT	-1,{
    
    OnHatEffect:
    	if(getgmlevel()>= 80){
    	input .@number;
    	if (.@number < 1) end;
    	if (.@number >= 301) end;
    	for(.@i = 1; .@i < 300; ++.@i)
    		hateffect .@i,false;
    	hateffect .@number,true;
    	end;
    	}
    
    	
    OnInit:
    	bindatcmd "efc",strnpcinfo(3)+"::OnHatEffect";
    	end;
    }

    7. Add npc in rathena\npc\scripts_custom.conf

    npc: npc/custom/hateffect.txt

    8. (OPTIONAL) Add Hateffect in item:
    Example:

      - Id: 2301
        AegisName: Cotton_Shirt
        Name: Cotton Shirt
        Type: Armor
        Buy: 10
        Weight: 100
        Defense: 1
        Locations:
          Armor: true
        ArmorLevel: 1
        Refineable: true
        Script: |
          hateffect HAT_EF_arcane_aura_A,true;
          hateffect HAT_EF_arcane_aura_B,true;
        UnEquipScript: |
          hateffect HAT_EF_arcane_aura_A,false;
          hateffect HAT_EF_arcane_aura_B,false;

    Gluttony Aura:

    FiDaoY3.gif

    Arcane Aura:

    11JApSs.gif

    Credits:
    LCDTheOG
    Frost

    Hello sir can i ask how to make str on aura ? I dont get that you said aura_particle.str and aura.str? 

  3. Mga boss,good day to all,. 

    Mga boss paturo sana ako mga boss kung paano ko ilagay yung mga aura ko sa RO ko mga aura na nadownload ko sa aura compilation mga boss, nagbasa na po ako ng mga guide kung paano ko ilagay sa server side at s client side na edit ko na po 

    Src/map/script_constant.h

    Src/map/scipt.h

    Grf/data/tesxture/effect

    Grf/hateffect/hateffect.lub

     

    Gagawin ko sana po hateffect yung aura po pra ilagay ko sa custom garment para mkapag palit2 ng aura gamit yung garment na edit ko na din po yung custom garment itemdb script pero wla pa rin po mali po yata,patulong naman po ako sa tamang guide mga kabayan kung paano ko gagawin ng tama hirap n po tlga ako,tsala marami n po ako topic tungkol dito kaso wala po mga nagcocomment,.plsss po mga kabayan patulong nmn po 😞

  4. Hello , somebody please help me to a guide or anybody have a guide how to ,can i use the custom aura compilation i downloaded from here? Is there anyone know how to put it into my client and into my server and the npc that i can change aura everytime when i wanted to change it? Plsss. Help

  5. but they dont say that how to edit files on it sir for hateffect, is there any NPC like that ,you just pay NPC and you can change your aura and also no require level limit,

    On 9/12/2023 at 9:43 AM, hendra814 said:

    use aura hat effect, to create into STR file please check at STR Editor topic.

    for script already share in the aura hat effect topic.

    Hateffect not include .tga files sir,aura like level 99 i think have a tga files,.

  6. Good day to all, sorry for my english 🙂
    any body can i ask script for an NPC that if you just pay zeny bag or zeny he just change your effect aura, what i mean is the aura that shows when you become lvl 99 i dont know what is that call hehe, but just like that sir and maam, i have a lot of aura effect in my grf but i dont know how to put it on game ,. please help maam and sir,

  7. hello sir, can i ask if how to make script like NPC that you can pay the NPC zeny or zeny bag to change an aura, i have a lot of aura collection in my GRF but i dont know how to use it and make npc for this so i can use, only blvl99 can aura blue set from server, but if u dont mine sir,i just want to ask how to get aura change even what kind of lvl and i can change the look/effect of an aura on just NPC ?

     

  8. 2 hours ago, Jayz said:

    Use router,, because you need to portforward your LANIP to connect,, if you trouble with your connection and you want to use pocketwifi,, use hamachi instead but you need data service in your pocketwifi

    i only have 1 chord like rj45 from laptop 1 to laptop 2, so its not possible to play each other? if im going to use pocket wifi with no simcard inside, , is it possible sir that we both connect to pocket wifi without internet or simcard then im going to edit laptop 1 and laptop 2 xclient change it into pocket wifi IP address? is that possible ?

     

  9. good day to all, sir and maam, any body can i ask how exactly connect 2 pc on my rathena server, i just want me and my friend play i have server and we connect it already with rj45 or crossover chord we can do already share folder each other but the problem is ,when in ragnarok ,i open my server and log in then he open his client only but it said fail to connect server, any body please can teach 1 by 1 how to do it exactly? and what kind of client IP adress like sclient and xclient on grf we need to put on ,because i already edit it his client and xclient IP on his grf same what mine, but it still not working 😞 help me please :(

     

  10. 23 hours ago, Chaos92 said:

    conf/battle/client.conf.

    min_hair_style: 0
    max_hair_style: 42
    min_hair_color: 0
    max_hair_color: 8
    min_cloth_color: 0 
    max_cloth_color: 7
    min_body_style: 0
    max_body_style: 1

    change max cloth color to your existing dye numbers. the grf that u said u already added might be cloth color. and maybe can start from number 1 if you have issue while reset look.

    thank u sir for your reply, do you know sir how i can continuesly added it into my GRF palette i have already the 553/251 cloths color from downloadables rathena, and i want to add more from other GRF which is i want to add it into my grf palette ,how can i do that? if i got 553 cloth color should i edit my existing palette continuesly 554 ..555. ..556 even until 1000? and change the max cloth color to 1000? is that right sir ? is that what u mean how i add it to my 553 cloth color?

     

  11. Hello Good day Everybody, any body can help me how to add more palettes on my grf and how to maximize it on my server side, first thing i wanna know pls how to add it into my grf i have already the 553/251 dyes already on my grf and i have more palette from other server, any body know how to add it also into my existing palette? and how to maximize it into my server side?

     

  12. On 4/5/2022 at 11:50 AM, Chaos92 said:

    not yet compiled. after compiled then .exe will be created.
    See the video. it compiling with some information output at the lower part of visual studio.

    thank you sir for replying me, i solve my problem, i only just turn off my firewall defender anti virus before build, clean sol. then build and done ? thank u

  13. good day to all, any body can i ask help about my rathena server,. i have an server rathena in my old computer windows 8 and my rathena sever is working well,but now ill buy new acer predator and copy paste all files for my ragnarok offline server to it and run, but this is what pop up, i cannot connect loginserver exe. this what it says .plss any body help?
    i dont cahnge anything from my old computer ill just copy the all RO files and files that needed to run the server but its not work.

    188300.jpg

    188325.jpg

×
×
  • Create New...