Jump to content

mrfizi

Members
  • Posts

    292
  • Joined

  • Last visited

  • Days Won

    6

Community Answers

  1. 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:
     
  2. 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  
  3. 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:
     
  4. 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;  
  5. 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 ?
  6. 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
  7. 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.
  8. 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 ?
  9. mrfizi's post in Script runs error was marked as the answer   
    It because == is C++ coding.
    Just change ==== to ----
    mes "-----------[Rohayu]-------------";  
  10. mrfizi's post in Script runs error was marked as the answer   
    It because == is C++ coding.
    Just change ==== to ----
    mes "-----------[Rohayu]-------------";  
  11. mrfizi's post in Script runs error was marked as the answer   
    It because == is C++ coding.
    Just change ==== to ----
    mes "-----------[Rohayu]-------------";  
  12. 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 #
  13. 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 #
  14. 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 #
  15. 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.
     
  16. 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.
  17. 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
  18. 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;  
  19. 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  
  20. 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
  21. mrfizi's post in my edda biolab has a problem was marked as the answer   
    on line 621, remove the last '
    no need  ' after ;
  22. mrfizi's post in blackboard npc was marked as the answer   
    change all Set to set
    btw, next time please post at the script support if you need help about script.
  23. mrfizi's post in Issue when arriving to Izulude via Intro was marked as the answer   
    mapcache old izlude map if you using pre-renewal or change your izlude map using new izlude if you use renewal.
  24. mrfizi's post in How to Implement Pet Evolution was marked as the answer   
    Maybe this will give you an idea to implement it on your server.
     
  25. mrfizi's post in How modif Service Launcher name was marked as the answer   
    rathena/conf/char_athena.conf
     
    // Server name, use alternative character such as ASCII 160 for spaces. // NOTE: Do not use spaces or any of these characters which are not allowed in // Windows filenames \/:*?"<>| // ... or else guild emblems won't work client-side! server_name: YourRagnarokServer  
×
×
  • Create New...