The forums will be going offline for an extended maintenance period at 1400hrs GMT on 19th June 2025. The number of hours for this downtime is intentionally not advertised due to the nature of these upgrades.
×
-
Posts
383 -
Joined
-
Last visited
-
Days Won
14
Community Answers
-
mrfizi's post in Trying to change Magnus Exorcismus to hit all types of monster was marked as the answer
👆
-
mrfizi's post in Incomplete achievement system was marked as the answer
check on this file
https://github.com/llchrisll/ROenglishRE/blob/master/Translation/Renewal/System/achievement_list_EN.lub
-
mrfizi's post in Skull drop in inventory was marked as the answer
I found solution for you to try without edit or change any src code. Maybe this will help you:
-
mrfizi's post in [Rathena] Add sign npc to the script was marked as the answer
Did you mean Vendor/Vending Control System?
If yes, use this script:
Then read my replied on this topic for how to setup your vending places:
-
mrfizi's post in Skills Only in korean , any lang type diferent than 0 skills become in â°?â³ format was marked as the answer
if langtype = 0 || LuaFiles514\Lua Files\service_korea\ExternalSettings_kr if langtype = 1 || LuaFiles514\Lua Files\service_usa\ExternalSettings_usa if langtype = 2 || LuaFiles514\Lua Files\service_japan\ExternalSettings_jp if langtype = 3 || LuaFiles514\Lua Files\service_china\ExternalSettings_ch if langtype = 4 || LuaFiles514\Lua Files\service_taiwan\ExternalSettings_tw if langtype = 5 || LuaFiles514\Lua Files\service_thailand\ExternalSettings_th if langtype = 6 || LuaFiles514\Lua Files\service_indonesia\ExternalSettings_id if langtype = 7 || LuaFiles514\Lua Files\service_philippine\ExternalSettings_ph if langtype = 12 || LuaFiles514\Lua Files\service_brazil\ExternalSettings_br if langtype = 18 || LuaFiles514\Lua Files\service_france\ExternalSettings_fr
-
mrfizi's post in cannot remove mapflag gvg_noparty was marked as the answer
https://github.com/rathena/rathena/blob/a032cd1f74448f676db7a22dfbcb8cf1bbe0ddd8/npc/mapflag/gvg_noparty.txt#L10
// all this:
//============================================================ // GvG Arenas //============================================================ //guild_vs1 mapflag gvg_noparty //guild_vs2 mapflag gvg_noparty //guild_vs3 mapflag gvg_noparty //guild_vs4 mapflag gvg_noparty //guild_vs5 mapflag gvg_noparty Then restart your server.
If not work, please visit this topic:
-
mrfizi's post in H> Gold Room Points was marked as the answer
try change this..
.@point = rand( .gold_amount[0],.gold_amount[1] ); to
.@point = 1;
-
mrfizi's post in Error pc_bonus: unknown bonus type 0 -4 in item #490087 was marked as the answer
Check your custom item bonus
https://github.com/rathena/rathena/blob/master/doc/item_bonus.txt
You're welcome ?
-
mrfizi's post in How do I disable autoloot and PK mode in all maps? was marked as the answer
For autolooting:
If it from @autoloot command, you need to set on your conf/groups.conf
OR
If you accidentally change this to yes,
https://github.com/rathena/rathena/blob/645ff8591a101836be97a961c82e83b4d691e9eb/conf/battle/drops.conf#L11
Change it to no.
For PK mode:
check your conf/battle/misc.conf
-
mrfizi's post in NPC Multiline Name was marked as the answer
I found this from rAthena Discord. Answer by Fluxion:
Hope this can help you.
-
mrfizi's post in Card drop announcement was marked as the answer
Or if your server is high/super high rate and card is low rate, you can just simply change on this line:
https://github.com/rathena/rathena/blob/df65d5ddfc5d10e1834875cc7a1c1f543e404c74/conf/battle/drops.conf#L150
Others you can check on each topic replied and suggest by @Mihael ?
-
mrfizi's post in Script runs error was marked as the answer
It because == is C++ coding.
Just change ==== to ----
mes "-----------[Rohayu]-------------";
-
mrfizi's post in Script runs error was marked as the answer
It because == is C++ coding.
Just change ==== to ----
mes "-----------[Rohayu]-------------";
-
mrfizi's post in Script runs error was marked as the answer
It because == is C++ coding.
Just change ==== to ----
mes "-----------[Rohayu]-------------";
-
mrfizi's post in level 255 HP problem was marked as the answer
Use db/import/job_stats.yml
You need edit it. Just remove #
-
mrfizi's post in level 255 HP problem was marked as the answer
Use db/import/job_stats.yml
You need edit it. Just remove #
-
mrfizi's post in level 255 HP problem was marked as the answer
Use db/import/job_stats.yml
You need edit it. Just remove #
-
mrfizi's post in About anti-bot in game fields. Help-me. was marked as the answer
Use game guard. Gepard Shield is the best solution.
-
mrfizi's post in how to fix this plssss :( An error as occured in fread while reading map_cache was marked as the answer
Please refer this guide for adding custom maps:
Hope this will help you and fix your error.
-
mrfizi's post in Different Buffs per class and job was marked as the answer
Basically normal player group ID is 0 and Group ID 5 is for VIP.
Default setting: https://github.com/rathena/rathena/blob/master/conf/groups.conf
-
mrfizi's post in Hourly System was marked as the answer
Look here:
OnInit: .s_idle = 0; // ban hourly rewards from idle players ? 0 no / 1 yes {if player didn't move for x time he wont get hourly reward} , DEFAULT = 0 .s_idle_time = 1800; // this the time for idle in secend , DEFAULT = 1800 (30 min) .s_vip = 0; // 1 = only for VIP / 0 = for everyone , DEFAULT = 0 .s_time = 3600000; // 1000 = 1 secend | 60000 = 1 min | 3600000 = 1 houre , DEFAULT = 3600000 (1 hr) .s_hourly_level = 50; // Minimam level to get the Houerly rewards / 0 = no minimem level , DEFAULT 0 .s_GePard_ip = 0; // 0 = no Gepard / 1 = Gepard / 2 = IP , DEFAULT 0 .s_vinding = 7; // DEFAULT 7 / 0 = will give the reward even if vending / 1 = no normal vending / 2 = no @autotrade / 4 = no buyingstore | Example: if you want to ban normal vend and buying store you add the numbers 1+4=5 query_logsql("CREATE TABLE IF NOT EXISTS `sader_variables_log` (`unique_id` INT( 11 ) UNSIGNED NOT NULL DEFAULT '0',`ip` VARCHAR(100) NOT NULL,`variable` VARCHAR(32) NOT NULL, `index` INT NOT NULL, `value` INT NOT NULL,`account_id` INT NOT NULL,`char_id` INT NOT NULL,`char_name` VARCHAR(30) NOT NULL) ENGINE=MyISAM"); bindatcmd("UnHourlyBan",strnpcinfo(3)+"::OnUnHourlyBan",99,99); bindatcmd("HourlyBan",strnpcinfo(3)+"::OnHourlyBan",0,99); end;
-
mrfizi's post in HOW REDUCE MOVEMENT SPEED ON MOUTH2 was marked as the answer
/conf/battle/player.conf
// How much should rental mounts increase a player's movement speed? // Default is 25. 100 = 100% Increase. rental_mount_speed_boost: 25
-
mrfizi's post in GM Commands? was marked as the answer
use @disguise mobID
You can refer here: https://github.com/rathena/rathena/blob/master/doc/atcommands.txt
-
mrfizi's post in my edda biolab has a problem was marked as the answer
on line 621, remove the last '
no need ' after ;