-
Posts
686 -
Joined
-
Days Won
9
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Posts posted by Gidz Cross
-
-
1 hour ago, Farrell said:
Well we have patchers out there and the popular one is the Thor Patcher. From the tools there you will be able to push updates to your players.
You can found more at
rathena-wiki/Thor_Patcher.md at master · cydh/rathena-wiki (github.com)
Some google searches
Setup Thor Patcher - Mga Guides at Tips - rAthena
Making a patch in Thor Patcher with GRF - Knowledgebase - GoManilaHost.Net Web Services
To do this, your server should be live. What does it mean? It means your server should be online. -
2 hours ago, norightinfo said:
Thank you for answer on this one, What happen is that I used an existing Costume (Upper) and tried to relocate the postion from Upper to Shadowgear Armor, however it doesn't seem to work (probably because of the sprite position which conflicts with another Costume (Upper) headgear.
I can however reused the Costume (Lower) since it doesn't conflict much as well as adding hateffect trick.It should work. Refer to this guideline for positions:
Quote//1 = Lower headgear
//2 = Right hand
//4 = Garment/Robe
//8 = Accessory 1
//16 = Armor
//32 = Left hand
//64 = Shoes
//128 = Accessory 2
//256 = Upper headgear
//512 = Middle headgear
//1024 = Costume Upper headgear
//2048 = Costume Middle headgear
//4096 = Costume Lower headgear
//8192 = Costume Garment/Robe -
So what do we have here again?
-
9 hours ago, wakefield21 said:
In your translation files. Remove the itemwin_mid
Quote\data/texture\À¯ÀúÀÎÅÍÆäÀ̽º\basic_interface
-
Yep gepard is the key. Basic gepard aint gonna cut it. Prepare atleast 200 bucks to have that option.
-
On 7/9/2021 at 11:04 AM, alexander03 said:
hello sir good day, i wanna know how to modify the thanatos card effect like when the base vit getting bigger or like the vit def increase the thanatos card getting more damage and more once vit too high, ill say 50vit of player is a non thanable player,
,. also in incantation samurai card the lowest the vit def the higher the damage he gets ,. 50vit also the balance of the base vit for it,. like DRO any body how to do it ? plsss helpp!dark RO is using default item script for Thanatos Card.
-
On 6/15/2021 at 2:36 AM, Mitosky said:
Hello people, I would like to ask about how to apply a diff patch via winscp putty, I stay tuned and thank you very much.
edit your local files first. Once you applied your changes you can use winscp to upload your modified file.
-
On 7/9/2021 at 7:36 AM, lowkey said:
I also asked this on herc forums. To make an unbiased-community opinion, I will also ask here. Current differences of herc and rathena as of 2021?
I asked that to myself before. My reference is this rAthena vs Hercules - rAthena General - rAthena.
-
The answer to your question is YES by default. You can wear Upper Middle and Lower (Shadowgear) as a costume. Please check this Custom Items · rathena/rathena Wiki (github.com)
For the shadow weapon costume you may contact @Haziel -
41 minutes ago, Tearz said:
okay i'll try...
after i made my custom grf, what should i do with the kRO original one?
can i just delete it, or must i save it for another day?
or must i just let it there and collaborating it with my own custom grf on data.ini?
You let it there. Your .ini should be...
Quote[Data]
1=yourcustom.grf
2=rdata.grf
3=data.grf-
1
-
-
41 minutes ago, Tearz said:
so, you mean, i must make my own grf too?
do you have any tutorial link to make it?
Yes. Having own custom grf is a must. Its very easy to make grf. Download grf tool here on the forums. See the translation files from chris's thread. You will have idea by then.
-
-
On 7/24/2021 at 5:12 AM, Tearz said:
how to implement his grf to my own ro?
im a newbie here, so i am sorryBy making your own custom ro. Or you can merge it to data.grf
-
On 7/15/2021 at 10:50 AM, chadness said:
Translation files. Ragnarok English Translation Project by llchrisll - Project Releases - rAthena
-
1 hour ago, WhiteEagle said:
That's the problem. I don't do any modifications on monk skills or with 'spiritball' values.
Start from scratch i guess? Since you dont have any modifications yet. That would be the best option.
-
Use this state icon for devo. Much better!
devotion.tgaOn 7/26/2021 at 8:00 PM, Frost Diver said:How to make it work for devotion sir?
It was already declared in SRC so you only need to do it via client. And it's easy.
efstids.lub
EFST_DEVOTION = 60,
stateimgiconinfo.lub[EFST_IDs.EFST_DEVOTION] = "devotion.tga"
finally in stateiconinfo.lub
StateIconList[EFST_IDs.EFST_DEVOTION] = { haveTimeLimit = 1, posTimeLimitStr = 2, descript = { { "Devotion", COLOR_TITLE_BUFF }, { "%s", COLOR_TIME }, { "Under influence of devotion." }, { "Received shield buff." }, } }
-
3
-
-
By default, MO_CALLSPIRITS is set to have 5 spirit balls (1 per cast). Maybe you did something? Backtrack your modifications.
-
Okay. To mirror Endure to devoted party
status.c
look for this line:
case SC_IMPOSITIO: case SC_KAAHI: //These status changes always overwrite themselves even when a lower level is cast status_change_end(bl, type, INVALID_TIMER); break; case SC_ENDURE: if (sd && sd->special_state.no_walk_delay) return 1; break; }
change it to
case SC_IMPOSITIO: case SC_KAAHI: //These status changes always overwrite themselves even when a lower level is cast status_change_end(bl, type, INVALID_TIMER); break; case SC_ENDURE: if (sd) { struct map_session_data *tsd; int i; for (i = 0; i < MAX_DEVOTION; i++) { // See if there are devoted characters, and pass the status to them. [Skotlex] if (sd->devotion[i] && (tsd = map_id2sd(sd->devotion[i]))) status_change_start(src,&tsd->bl,type,10000,val1,val2,val3,val4,tick,SCSTART_NOAVOID); } } if (sd && sd->special_state.no_walk_delay) return 1; break; }
For the reflect shieldstatus.c
look for this line:
case SC_PROVIDENCE: val2 = val1*5; // Race/Ele resist break; case SC_REFLECTSHIELD: val2 = 10+val1*3; // %Dmg reflected // val4 used to mark if reflect shield is an inheritance bonus from Devotion if( !(flag&SCSTART_NOAVOID) && (bl->type&(BL_PC|BL_MER)) ) { struct map_session_data *tsd; if( sd ) { int i; for( i = 0; i < MAX_DEVOTION; i++ ) { if( sd->devotion[i] && (tsd = map_id2sd(sd->devotion[i])) ) status_change_start(src,&tsd->bl, type, 10000, val1, val2, 0, 1, tick, SCSTART_NOAVOID|SCSTART_NOICON); } } else if( bl->type == BL_MER && ((TBL_MER*)bl)->devotion_flag && (tsd = ((TBL_MER*)bl)->master) ) status_change_start(src,&tsd->bl, type, 10000, val1, val2, 0, 1, tick, SCSTART_NOAVOID|SCSTART_NOICON); }
change it to
case SC_PROVIDENCE: val2 = val1*5; // Race/Ele resist break; case SC_REFLECTSHIELD: val2 = 10+val1*3; // %Dmg reflected // val4 used to mark if reflect shield is an inheritance bonus from Devotion if( !(flag&SCSTART_NOAVOID) && (bl->type&(BL_PC|BL_MER)) ) { struct map_session_data *tsd; if( sd ) { int i; for( i = 0; i < MAX_DEVOTION; i++ ) { if( sd->devotion[i] && (tsd = map_id2sd(sd->devotion[i])) ) status_change_start(src,&tsd->bl, type, 10000, val1, val2, 0, 1, tick, SCSTART_NOAVOID); } } else if( bl->type == BL_MER && ((TBL_MER*)bl)->devotion_flag && (tsd = ((TBL_MER*)bl)->master) ) status_change_start(src,&tsd->bl, type, 10000, val1, val2, 0, 1, tick, SCSTART_NOAVOID|SCSTART_NOICON); } break;
To be honest im not sure about to reflect shield. I might delete some function. But it works upon testing it.Nevermind. I edit it.
Limitations i found:
The Devo caster should recast (Endure & Reflect Shield) buffs to appear the state icons to devoted party member.
P.S
I wonder why recasting is needed.-
1
-
-
On 7/22/2021 at 10:01 AM, Yuno said:
Hi rAthena, long time no see!!
After a few hours of research, i found that devotion skill give shield buff and other buff like Endure.
I don't know if i have a real information but according to iro wiki and ratemyserver.
So I tried adding a stateicon for the Devotion skill, successful as you can see.
And I said to myself ok, now I'm going to see if the icons for Endure, Auto Guard and Reflect Shield appears when I am under the influence of Devotion and it looks like only the Defender icon is displayed. Could someone have an explanation for me?
Thank you for the time you take to answer me!Oh why didnt i think of this. I have custom state icons too. Like when you stepped on land protector or you cast ecall. But ive done it in a very long time. Now i forgot. I want to help with this. Since the defender state can be mirrored in the devo'ed party. Mirroring Endure and Reflect Shield is doable i guess.
First. I have to refresh my memory how to add customs state icons. -
5 hours ago, vityd said:
How create new one?
You have watched this right? All information are there.
-
On 6/17/2021 at 3:12 AM, Almond Snicker said:
anyone solved this issue?
I have posted this on git. Bug with Land Protector? · Issue #6131 · rathena/rathena (github.com) lets wait for the devs to see if this was legit bug.
-
On 7/23/2021 at 2:36 AM, vityd said:
i was following it when taking theese screenshots.
Delete those schema (main and logs) and create new one.
-
Your translation files are bad. Download fresh translation here.
Ragnarok English Translation Project by llchrisll - Project Releases - rAthena -
OMG! Excellent! Thanks @sader1992!
autoloot para todo el servidor
in Sección de Scripts
Posted
@autoloot command?