Anisotropic Defixation
Members-
Content Count
122 -
Joined
-
Last visited
-
Days Won
2
Anisotropic Defixation last won the day on February 3 2017
Anisotropic Defixation had the most liked content!
About Anisotropic Defixation
-
Rank
Advanced Member
Recent Profile Visitors
-
@autotrade persistency for buying shops
Anisotropic Defixation replied to Anisotropic Defixation's topic in Suggestions
Not sure if people are even reading the title. There's no @at persistency for buying shops on hercules. -
@autotrade persistency for buying shops
Anisotropic Defixation replied to Anisotropic Defixation's topic in Suggestions
I'm talking about buying shops. -
It's been so many years already so this would be nice to have. rAthena already has it but unfortunately their implementation of @autotrade in general is very different from ours.
-
[Release] The (data) GRF Project
Anisotropic Defixation replied to Ridley's topic in Client-Side Releases
What I mean is that the encryption makes this file unusable, it won't load. You need to repack it with default encryption and that adds a good 500mb or more to the size. -
[Release] The (data) GRF Project
Anisotropic Defixation replied to Ridley's topic in Client-Side Releases
I guess we can consider this project abandoned? Unless somebody has working grfs they could upload. -
[Release] The (data) GRF Project
Anisotropic Defixation replied to Ridley's topic in Client-Side Releases
Well, same issue here, all files are "corrupted", tried newest and some older versions of GRF editor. -
Heph reacted to an answer to a question: Monster Doesn't reflect
-
kairu reacted to an answer to a question: Heal over Time
-
Berry use triggers your custom status with the defined duration, the status ticks at intervals you defined. If you want an example, check SC_L_LIFEPOTION (Medium Life Potion, ID 12459) or any other similar status.
-
For stuff like that you're better off creating a custom SC_ status.
-
Klutz reacted to an answer to a question: Monster Doesn't reflect
-
There's already bonus2 bHPRegenRate/bSPRegenRate which do exactly that. Check the documentation.
-
Remove that preserve change from the main block as well as the skill itself, and add it below that block, all by itself. case ST_PRESERVE: if (sd && sd->sc.data[type]) clif->skill_nodamage(src, bl, skill_id, skill_lv, status_change_end(bl, type, INVALID_TIMER)); else clif->skill_nodamage(src, bl, skill_id, skill_lv, sc_start(src, bl, type, 100, skill_lv, skill->get_time(skill_id, skill_lv))); break;
-
tedexx reacted to an answer to a question: area_size, max_walk_path and Snap
-
area_size, max_walk_path and Snap
Anisotropic Defixation replied to tedexx's question in Source Support
Limit the skill's cast range in skill_db.conf and skillinfolist.lub (clientside), as it's 18 cells by default. As for your other questions, there isn't any noticeable impact as far as I know. -
The message itself is missing from your msgstringtable.txt, actual line is 1863. You can either update the file to include it or comment the line in pc.c evilpuncker mentioned to remove it entirely.
-
Ridley reacted to an answer to a question: sitting regen nerf(200% --> 150%)
-
sitting regen nerf(200% --> 150%)
Anisotropic Defixation replied to Blinzer's question in Source Support
Sitting doesn't increase the amount recovered, it speeds up the ticks. Go to line 12729 of status.c (going by stock Hercules) and change that bonus++; to bonus += (int)(0.5f); This will reduce the tick by x1.5 instead of x2 but due to rounding up, the ticks will happen every 5 seconds and not 4.5, which is just 1 seconds faster than the default 6 sec interval when not sitting in case of HP recovery. The blocks above with RGN_SHP/RGN_SSP deal with regeneration that's boosted by passive skills (MG_SRECOVERY, SM_RECOVERY, etc) and would need to be modified in a similar way, which can be done by halving the val. -
Skill.c please Help Strip
Anisotropic Defixation replied to razermantis's question in Script Support
The skill protects from divests, it doesn't remove them. -
Make it trigger a sc status that prevents sitting or create cansit_tick or something similar for the same purpose.