luizragna
New member
Hello guys! I'm creating a custom skill that can others jobs can fly.
But first, i'm edditing the skill "Union of the Sun Moon and Stars" (SG_FUSION)
doc/script_commands.txt:
0x008000 Option_Flying
When i execute the script command:
setoption(0x008000);
The character look changes to Star Gladiator flying.
I tried change the SA sprite to kagerou sprite: (And he works
)
But when i change to other job, he don't work :/
src/map/pc.h:
if (type&OPTION_FLYING && !(p_type&OPTION_FLYING))
{
//new_look = JOB_STAR_GLADIATOR2; //The original
new_look = JOB_ROYAL_GUARD; //My change
}
He changed to RG look, but not fly :/
But first, i'm edditing the skill "Union of the Sun Moon and Stars" (SG_FUSION)
doc/script_commands.txt:
0x008000 Option_Flying
When i execute the script command:
setoption(0x008000);
The character look changes to Star Gladiator flying.
I tried change the SA sprite to kagerou sprite: (And he works
But when i change to other job, he don't work :/
src/map/pc.h:
if (type&OPTION_FLYING && !(p_type&OPTION_FLYING))
{
//new_look = JOB_STAR_GLADIATOR2; //The original
new_look = JOB_ROYAL_GUARD; //My change
}
He changed to RG look, but not fly :/
Last edited by a moderator: