-
Posts
175 -
Joined
-
Last visited
Community Answers
-
Kater's post in Reflet skill counter instinct (ST_REJECTSWORD) was marked as the answer
Resolved
battle.c
ST_REJECTSWORD
-
Kater's post in Status Thanatos Card & Icepick Effect was marked as the answer
I've already tested this file and it doesn't work. I found the solution by editing hp's multiplied battle.c.
-
Kater's post in exchange and error in the client 2019 to 2018 was marked as the answer
Problem with the client, I did everything again and it worked.
Thanks!
-
Kater's post in Plagiarism skill Esma (SL_SMA (469)) was marked as the answer
Resolved
skill_db
CopyFlags: Skill: Plagiarism: true Reproduce: true
-
Kater's post in Remove restriction from TK COUNTER skill was marked as the answer
Resolved
In skill.c
case TK_COUNTER: if ((sd->job & MAPID_UPPERMASK) == MAPID_SOUL_LINKER)
-
Kater's post in Help - Freeze immunity with luk was marked as the answer
case SC_FREEZE: if (status->luk >= 300)// This means if(Luk = 300) Player is immune. return 0; sc_def = status->mdef*100; sc_def2 = status->luk*10 + status_get_lv(bl)*10 - status_get_lv(src)*10; tick_def = status->luk*32; tick_def2 = 0; // Caster can increase final duration with luk break;
-
Kater's post in Remove delay from the AS_SONICBLOW skill was marked as the answer
I found the error, there was a delay in the skill due to an edit to the src to return the animation.
I made the correction and everything worked fine.
-
Kater's post in How to enable the esma skill in a player was marked as the answer
Solved
skill.conf // Allow use of ES-type magic on players? allow_es_magic_player: yes
-
Kater's post in Increase attribute on alt+a was marked as the answer
The error was in the file below
db\import\job_stats.yml Resolved
-
Kater's post in Emblem does not appear in the 2022 client was marked as the answer
Resolved!
data\luafiles514\lua files\service_korea ExternalSettings_kr.lub -- Change the "AssistAddr" to your IP AssistAddr = "127.0.0.1:8888" ----------------------------------------- -- Old client compatibility [Secret] -- DON'T TOUCH ANYTHING BELOW ----------------------------------------- Url = { TwitterUrl = 'http://'..AssistAddr } AccountLinkedUserDataUrl = { Save = 'http://'..AssistAddr..'/userconfig/save', Load = 'http://'..AssistAddr..'/userconfig/load' } TwitterDataUrl = { Auth = 'http://'..AssistAddr..'/twitter/user-auth', Upload = 'http://'..AssistAddr..'/twitter/upload' } EmblemDataUrl = { Upload = 'http://'..AssistAddr..'/emblem/upload', Download = 'http://'..AssistAddr..'/emblem/download' }
Change the IP to that of your host. Remembering that port 8888 must be free
-
Kater's post in Put skill as passive was marked as the answer
Resolved!
skill_db
TargetType Skill target type. (Default: Passive)
-
Kater's post in Change group_id to 1 vip players was marked as the answer
Yes, but the change is login_athena.
Solved, thanks for the tips.