-
Posts
188 -
Joined
-
Last visited
-
Days Won
35
Community Answers
-
Sapito Sucio's post in looking for RAG/SAK_SETUP files from 2000-2010 was marked as the answer
Try checking here Internet Archive: Digital Library of Free & Borrowable Books, Movies, Music & Wayback Machine
-
Sapito Sucio's post in Decrease space in damage font was marked as the answer
You can use Act Editor to edit it
-
Sapito Sucio's post in auto reset for attendance was marked as the answer
int counter = static_cast<int>(pc_readreg2( sd, ATTENDANCE_COUNT_VAR )); // Check if we have a remaining counter from a previous period if( counter >= 25 && !pc_attendance_rewarded_today(sd) ){ pc_setreg2( sd, ATTENDANCE_COUNT_VAR, 0 ); return 0; }
-
Sapito Sucio's post in System Message on chat everytime I login was marked as the answer
If you want a quick and dirty fix, you could delete that line on msgstringtable.txt
-
Sapito Sucio's post in [SOLVED] prevent overused spaces in chat was marked as the answer
@jamesandrew You're getting lots of errors because you didn't close the if statement, here:
if (stristr(output, " : ") || stristr(output, " ; ") || stristr(output, " ") || stristr(output, "Tokei") || stristr(output, "Saga") || stristr(output, "Pegasus") || stristr(output, "GM ") || stristr(output, "[G M]") || stristr(output, " GM") || strstr(output, "GM") || stristr(output, "[GM]") || stristr(output, "(GM)") || stristr(output, "{GM}") || stristr(output, "skype") || stristr(output, "discord") || stristr(output, "facebook")) { clif_colormes(sd->fd, color_table[COLOR_RED], "You are only allowed to type a maximum of 3 spaces in a row."); return;
Also, I don't know if that code is old, but my emulator would treat any sent msg as detected and filtered out, and thats because on the output variable there is a " : " char sequence, so stristr(output, " : ") triggers on it
So, yeah, you're missing a bracket. (And I removed the faulty check)
if (strstr(output, " ") || strstr(output, "Sapito") || strstr(output, "Saga") || strstr(output, "Pegasus") || strstr(output, "GM ") || strstr(output, "[G M]") || strstr(output, " GM") || strstr(output, "GM") || strstr(output, "[GM]") || strstr(output, "(GM)") || strstr(output, "{GM}") || stristr(output, "Skype") || stristr(output, "facebook")) { clif_showscript(&sd->bl, "¿Qué intentas hacer? jjjjejjej", SELF); return; } -
Sapito Sucio's post in Damage is registered even before you get hit was marked as the answer
The only thing that it comes to my mind is this
On conf/battle/battle.conf
// Do weapon attacks have a attack speed delay before actual damage is applied? (Note 1) // NOTE: The official setting is yes, even though it degrades performance a bit. delay_battle_damage: yes -
Sapito Sucio's post in sonicblow 2020 autoattack continue was marked as the answer
As far as I know, this animation was removed from the client itself.