I don't see the problem though. Since the current revisions are only for development and not for server usage you should have enough time to switch.
People who are running a server shouldn't rely on the current revision anyways and if they are really eager to be up-to-date and still keep their on code base, the switch to git should benefit them greatly.
In case of a single repo with a single branch the switch from SVN to Git shouldn't be hard either. Learning to handle Git is a matter of 1 day.
@Emistry
But when you are doing that be careful to put everything in one query. Looping through 4 queries for "n"-times will kill your server pretty fast when you got a bigger playerbase
The problem there lies that without further modification skills can't crit. They just have their normal damage display.
I worked around that by displaying the skill as a normal attack, thus the normal skill properties not working as expected.
My solution was just quick and dirty. I would love to see another solution, maybe a bit less buggy
The database user you configured in your mySQL doesn't match with the one you entered at your FluxCP Installation.
Double check both username, password and access-rights of the entered data.
Yeah, I just checked and you should search for this:
case GS_CHAINACTION:
dmg.dmotion = clif_damage(src,bl,tick,dmg.amotion,dmg.dmotion,damage,dmg.div_,dmg.type,dmg.damage2);
break;
Just paste it right after that
Can you post the code before and after my code in your file? (The other switch cases)
That should be the error since there is damage calculation happening at your line. Hence "dmg" is not defined anymore.
You could check like this:
case SC_FREEZE:
case SC_STONE:
sc_def = status->mdef*100;
sc_def2 = status->luk*10 + status_get_lv(bl)*10 - status_get_lv(src)*10;
if(status_src->luk >= 300) {
tick_def2 = INT_MIN;
} else {
tick_def2 = status_src->luk*-10;
}
Pretty hacky solution I think.
But I'm not too sure if that is the best solution to this...
The formula in the code is fine according to iRO Wiki (even though both variants should take the max SP)
case SR_GATEOFHELL:
atk = (sstatus->max_hp - status_get_hp(src));
if(sc && sc->data[SC_COMBO] && sc->data[SC_COMBO]->val1 == SR_FALLENEMPIRE) {
atk += ( ((int64)sstatus->max_sp * (1 + skill_lv * 2 / 10)) + 40 * status_get_lv(src) );
} else {
atk += ( ((int64)sstatus->sp * (1 + skill_lv * 2 / 10)) + 10 * status_get_lv(src) );
}
break;
It doesn't look like a coding error in damage calculation.