Jump to content

Scylla

Members
  • Posts

    374
  • Joined

  • Last visited

  • Days Won

    8

Community Answers

  1. Scylla's post in Lotti Girl with Multiple Items set as requirement to play was marked as the answer   
    delitem .itm_p, 1; to:
    delitem .itm_p, .itm_a;  
  2. Scylla's post in increasing mobrate was marked as the answer   
    Try:
    setbattleflag "mob_count_rate",200,true;  
  3. Scylla's post in Disable Vit Affect the Status Effect was marked as the answer   
    conf/battle/status.conf
    // Adjustment for the natural rate of resistance from status changes. // If 50, status defense is halved, and you need twice as much stats to block // them (eg: 200 vit to completely block stun) pc_status_def_rate: 100 mob_status_def_rate: 100 pc_status_def_rate to 0
  4. Scylla's post in Random MVP Respawn Timer was marked as the answer   
    You can just edit them on npc/pre-re(or re)/mobs/dungeons or fields (wherever the boss is)
    Example Moonlight on payon dungeon originally:
    pay_dun04,120,115,0,0 boss_monster Moonlight Flower 1150,1,3600000,600000,1 Her spawn time is 60 mins - 70 mins
    Initial spawn is 3600000 milliseconds = 60 mins
    Possible delay spawn is 600000 milliseconds = +10 mins
    Which makes it 60 ~ 70 mins
    So if you want it 60 seconds - 120 mins:
    pay_dun04,120,115,0,0 boss_monster Moonlight Flower 1150,1,60000,7200000,1 Initial spawn: 60000 milliseconds = 60 seconds
    Possible delay spawn: 7200000 milliseconds = 120 mins
    Which makes the spawn time 60 seconds ~ 120 mins. 
     
    Then you can just do this on any other bosses on their respective maps in mobs folder
  5. Scylla's post in Effect in +9 Armors was marked as the answer   
    if(getrefine()>8) { bonus bMaxHPrate,3; }  
  6. Scylla's post in +getrefine item bonus script was marked as the answer   
    You just remove that 1
    So should be:
    skill "AL_DECAGI",getrefine();  
  7. Scylla's post in remove change cart 2 was marked as the answer   
    trunk/db/pre-re(or re)/skill_tree.yml:
    Below //Merchant Remove:
    5,2544,1,0,0,0,0,0,0,0,0,0,0 //MC_CARTDECORATE#Cart Decorate#  
    luafiles514/lua files/skillinfoz/skilltreeview.lua or .lub
    Find:
    [JOBID.JT_MERCHANT] = { And below it, remove:
    [13] = SKID.MC_CARTDECORATE,  
  8. Scylla's post in Which is the required client version for this? was marked as the answer   
    You can just try both clients, but i think 2010-07-28 client should work
  9. Scylla's post in Auto Guard / Parrying / Kyrie Eleison & bShortWeaponDamageReturn was marked as the answer   
    I've finally solved it.
    battle.cpp:
    if (flag & BF_SHORT) {//Bounces back part of the damage. if ( (skill_get_inf2(skill_id, INF2_ISTRAP) || !status_reflect) && sd && sd->bonus.short_weapon_damage_return ) { rdamage += damage * sd->bonus.short_weapon_damage_return / 100; rdamage = i64max(rdamage,1); } else if( status_reflect && sc && sc->count ) { to
    if (flag & BF_SHORT) {//Bounces back part of the damage. if ( (skill_get_inf2(skill_id)&INF2_TRAP || !status_reflect) && sd && sd->bonus.short_weapon_damage_return) { rdamage = i64max(rdamage,-1); } else if ( (status_reflect) && sd && sd->bonus.short_weapon_damage_return) { rdamage += damage * sd->bonus.short_weapon_damage_return / 100; rdamage = i64max(rdamage,1); } if( status_reflect && sc && sc->count ) { Thanks a lot to @Wazaby for assisting me with this.
     
    EDIT: You may just add this line on else if, if you want trap to reflect
    skill_get_inf2(skill_id)&INF2_TRAP EDIT 2:
     
     Just to update to my fix, for those people using bLongWeaponDamageReturn:
    in battle.cpp
    Find:
    if (!status_reflect && sd && sd->bonus.long_weapon_damage_return) { rdamage += damage * sd->bonus.long_weapon_damage_return / 100; rdamage = i64max(rdamage, 1); } } to:
    if (!status_reflect && sd && sd->bonus.long_weapon_damage_return) { rdamage = i64max(rdamage,-1); } else if (status_reflect && sd && sd->bonus.long_weapon_damage_return) { rdamage += damage * sd->bonus.long_weapon_damage_return / 100; rdamage = i64max(rdamage, 1); }  
  10. Scylla's post in Gympass npc problem was marked as the answer   
    It actually does under ETC tab on skill tree, skill named Enlarge Weight Limit R
  11. Scylla's post in Punching Bag NPC was marked as the answer   
    You can just do it like this:
    OnInit: monster "caspen",167,72,"Punching Bag",1905,1,strnpcinfo(3)+"::OnInit"; monster "caspen",164,72,"Punching Bag",1905,1,strnpcinfo(3)+"::OnInit";  
  12. Scylla's post in Slow Grace was marked as the answer   
    src/map/skill.c:
    case DC_DONTFORGETME: val1 = 30 * skill_lv + status->dex; // ASPD decrease val2 = 2 * skill_lv + status->agi / 10; // Movement speed adjustment. if(sd){ val1 += 10 * pc_checkskill(sd,DC_DANCINGLESSON); val2 += (pc_checkskill(sd,DC_DANCINGLESSON) + 1) / 2; // Movement speed -1% per 2 levels } break;  
  13. Scylla's post in Item problems was marked as the answer   
    For card prefix, it's under data/cardprefixnametable.txt
    See if ID #4145 is in there
  14. Scylla's post in 2015-11-04aRagexe Client Files was marked as the answer   
    Hmm, what about trying to only select the recommended patches and also Read data folder first?
    If that'll work then it means one of those patches is causing the error on your client.
  15. Scylla's post in Help to disable the @warp @go command when dead was marked as the answer   
    Add this:
    if (status_isdead(&sd->bl)){ clif_displaymessage(sd->fd,"You can not use @warp while dead."); return 0; } Source: https://rathena.org/board/topic/65504-warp-when-dead/
  16. Scylla's post in Adding New Prontera was marked as the answer   
    I guess It's because your data.grf overrides the newprontera.grf
     
    If i may suggest, download the latest kRO from here
     
    I don't use that newprontera.grf but currently my prontera's the new one with just copying the data.grf from that kRO link i sent you and pasting it to my RO folder.
  17. Scylla's post in Disabled Vend was marked as the answer   
    There's no way to disable ' all ' maps with some sort of all mapflag novending code.
     
    Just open the link i gave you and you'll see a pastebin link in there indicated most maps with disabled vending (but NVM i'm just gonna paste it here. . .)
     
    Link: http://pastebin.com/7jR21gaL
    //===== eAthena Script ======================================= //= Map flags that disable vending //===== By: ================================================== //= Akbare.net //------------------------- Normal Maps --------------------------- alb_ship mapflag novending //alb2trea mapflag novending alberta mapflag novending alberta_in mapflag novending aldeba_in mapflag novending aldebaran mapflag novending arena_room mapflag novending c_tower1 mapflag novending c_tower2 mapflag novending c_tower3 mapflag novending c_tower4 mapflag novending //force_map1 //force_map2 //force_map3 force_1-1 mapflag novending force_2-1 mapflag novending force_3-1 mapflag novending force_4-1 mapflag novending force_5-1 mapflag novending force_1-2 mapflag novending force_2-2 mapflag novending force_3-2 mapflag novending force_1-3 mapflag novending force_2-3 mapflag novending force_3-3 mapflag novending gef_fild00 mapflag novending gef_fild01 mapflag novending gef_fild02 mapflag novending gef_fild03 mapflag novending gef_fild04 mapflag novending gef_fild05 mapflag novending gef_fild06 mapflag novending gef_fild07 mapflag novending gef_fild08 mapflag novending gef_fild09 mapflag novending gef_fild10 mapflag novending gef_fild11 mapflag novending gef_fild12 mapflag novending gef_fild13 mapflag novending gef_fild14 mapflag novending gef_tower mapflag novending geffen mapflag novending geffen_in mapflag novending gl_cas01 mapflag novending gl_cas02 mapflag novending gl_church mapflag novending gl_chyard mapflag novending gl_in01 mapflag novending gl_knt01 mapflag novending gl_knt02 mapflag novending gl_prison mapflag novending gl_prison1 mapflag novending gl_sew01 mapflag novending gl_sew02 mapflag novending gl_sew03 mapflag novending gl_sew04 mapflag novending gl_step mapflag novending glast_01 mapflag novending //hunter_1-1 //hunter_2-1 //hunter_3-1 in_hunter mapflag novending in_moc_16 mapflag novending izlude mapflag novending izlude_in mapflag novending job_thief1 mapflag novending //knight_1-1 //knight_2-1 //knight_3-1 mjolnir_01 mapflag novending mjolnir_02 mapflag novending mjolnir_03 mapflag novending mjolnir_04 mapflag novending mjolnir_05 mapflag novending mjolnir_06 mapflag novending mjolnir_07 mapflag novending mjolnir_08 mapflag novending mjolnir_09 mapflag novending mjolnir_10 mapflag novending mjolnir_11 mapflag novending mjolnir_12 mapflag novending moc_castle mapflag novending moc_fild01 mapflag novending moc_fild02 mapflag novending moc_fild03 mapflag novending moc_fild07 mapflag novending moc_fild11 mapflag novending moc_fild12 mapflag novending moc_fild13 mapflag novending moc_fild16 mapflag novending moc_fild17 mapflag novending moc_fild18 mapflag novending moc_fild19 mapflag novending moc_ruins mapflag novending monk_in mapflag novending morocc mapflag novending morocc_in mapflag novending new_zone01 mapflag novending new_zone02 mapflag novending new_zone03 mapflag novending new_zone04 mapflag novending new_1-1 mapflag novending new_1-2 mapflag novending new_1-3 mapflag novending new_1-4 mapflag novending new_2-1 mapflag novending new_2-2 mapflag novending new_2-3 mapflag novending new_2-4 mapflag novending new_3-1 mapflag novending new_3-2 mapflag novending new_3-3 mapflag novending new_3-4 mapflag novending new_4-1 mapflag novending new_4-2 mapflag novending new_4-3 mapflag novending new_4-4 mapflag novending new_5-1 mapflag novending new_5-2 mapflag novending new_5-3 mapflag novending new_5-4 mapflag novending ordeal_1-1 mapflag novending ordeal_1-2 mapflag novending ordeal_2-1 mapflag novending ordeal_2-2 mapflag novending ordeal_3-1 mapflag novending ordeal_3-2 mapflag novending pay_arche mapflag novending pay_fild01 mapflag novending pay_fild02 mapflag novending pay_fild03 mapflag novending pay_fild04 mapflag novending pay_fild05 mapflag novending pay_fild06 mapflag novending pay_fild07 mapflag novending pay_fild08 mapflag novending pay_fild09 mapflag novending pay_fild10 mapflag novending pay_fild11 mapflag novending prontera mapflag novending prt_are_in mapflag novending prt_are01 mapflag novending prt_castle mapflag novending prt_church mapflag novending prt_fild00 mapflag novending prt_fild01 mapflag novending prt_fild02 mapflag novending prt_fild03 mapflag novending prt_fild04 mapflag novending prt_fild05 mapflag novending prt_fild06 mapflag novending prt_fild07 mapflag novending prt_fild08 mapflag novending prt_fild09 mapflag novending prt_fild10 mapflag novending prt_fild11 mapflag novending prt_in mapflag novending prt_maze01 mapflag novending prt_maze02 mapflag novending prt_maze03 mapflag novending prt_monk mapflag novending prt_sewb1 mapflag novending prt_sewb2 mapflag novending prt_sewb3 mapflag novending prt_sewb4 mapflag novending pvp_room mapflag novending pvp_2vs2 mapflag novending pvp_c_room mapflag novending pvp_n_1-1 mapflag novending pvp_n_1-2 mapflag novending pvp_n_1-3 mapflag novending pvp_n_1-4 mapflag novending pvp_n_1-5 mapflag novending pvp_n_2-1 mapflag novending pvp_n_2-2 mapflag novending pvp_n_2-3 mapflag novending pvp_n_2-4 mapflag novending pvp_n_2-5 mapflag novending pvp_n_3-1 mapflag novending pvp_n_3-2 mapflag novending pvp_n_3-3 mapflag novending pvp_n_3-4 mapflag novending pvp_n_3-5 mapflag novending pvp_n_4-1 mapflag novending pvp_n_4-2 mapflag novending pvp_n_4-3 mapflag novending pvp_n_4-4 mapflag novending pvp_n_4-5 mapflag novending pvp_n_5-1 mapflag novending pvp_n_5-2 mapflag novending pvp_n_5-3 mapflag novending pvp_n_5-4 mapflag novending pvp_n_5-5 mapflag novending pvp_n_6-1 mapflag novending pvp_n_6-2 mapflag novending pvp_n_6-3 mapflag novending pvp_n_6-4 mapflag novending pvp_n_6-5 mapflag novending pvp_n_7-1 mapflag novending pvp_n_7-2 mapflag novending pvp_n_7-3 mapflag novending pvp_n_7-4 mapflag novending pvp_n_7-5 mapflag novending pvp_n_8-1 mapflag novending pvp_n_8-2 mapflag novending pvp_n_8-3 mapflag novending pvp_n_8-4 mapflag novending pvp_n_8-5 mapflag novending pvp_n_room mapflag novending pvp_y_1-1 mapflag novending pvp_y_1-2 mapflag novending pvp_y_1-3 mapflag novending pvp_y_1-4 mapflag novending pvp_y_1-5 mapflag novending pvp_y_2-1 mapflag novending pvp_y_2-2 mapflag novending pvp_y_2-3 mapflag novending pvp_y_2-4 mapflag novending pvp_y_2-5 mapflag novending pvp_y_3-1 mapflag novending pvp_y_3-2 mapflag novending pvp_y_3-3 mapflag novending pvp_y_3-4 mapflag novending pvp_y_3-5 mapflag novending pvp_y_4-1 mapflag novending pvp_y_4-2 mapflag novending pvp_y_4-3 mapflag novending pvp_y_4-4 mapflag novending pvp_y_4-5 mapflag novending pvp_y_5-1 mapflag novending pvp_y_5-2 mapflag novending pvp_y_5-3 mapflag novending pvp_y_5-4 mapflag novending pvp_y_5-5 mapflag novending pvp_y_6-1 mapflag novending pvp_y_6-2 mapflag novending pvp_y_6-3 mapflag novending pvp_y_6-4 mapflag novending pvp_y_6-5 mapflag novending pvp_y_7-1 mapflag novending pvp_y_7-2 mapflag novending pvp_y_7-3 mapflag novending pvp_y_7-4 mapflag novending pvp_y_7-5 mapflag novending pvp_y_8-1 mapflag novending pvp_y_8-2 mapflag novending pvp_y_8-3 mapflag novending pvp_y_8-4 mapflag novending pvp_y_8-5 mapflag novending pvp_y_room mapflag novending treasure01 mapflag novending treasure02 mapflag novending xmas mapflag novending xmas_fild01 mapflag novending xmas_in mapflag novending //---Ep3.0 Comodo --- cmd_fild01 mapflag novending cmd_fild02 mapflag novending cmd_fild03 mapflag novending cmd_fild04 mapflag novending cmd_fild05 mapflag novending cmd_fild06 mapflag novending cmd_fild07 mapflag novending cmd_fild08 mapflag novending cmd_fild09 mapflag novending cmd_in01 mapflag novending cmd_in02 mapflag novending comodo mapflag novending //---EP3.1 Quiz Revolution --- quiz_00 mapflag novending quiz_01 mapflag novending g_room1-1 mapflag novending g_room1-2 mapflag novending g_room1-3 mapflag novending g_room2 mapflag novending //--- Ep4.1 The War of Emperium --- alde_gld mapflag novending aldeg_cas01 mapflag novending aldeg_cas02 mapflag novending aldeg_cas03 mapflag novending aldeg_cas04 mapflag novending aldeg_cas05 mapflag novending gefg_cas01 mapflag novending gefg_cas02 mapflag novending gefg_cas03 mapflag novending gefg_cas04 mapflag novending gefg_cas05 mapflag novending guild_room mapflag novending guild_vs1 mapflag novending guild_vs2 mapflag novending guild_vs3 mapflag novending guild_vs4 mapflag novending guild_vs5 mapflag novending guild_vs1-1 mapflag novending guild_vs1-2 mapflag novending guild_vs1-3 mapflag novending guild_vs1-4 mapflag novending guild_vs2-1 mapflag novending guild_vs2-2 mapflag novending job_hunte mapflag novending job_knt mapflag novending job_prist mapflag novending job_sword1 mapflag novending job_wiz mapflag novending pay_gld mapflag novending payg_cas01 mapflag novending payg_cas02 mapflag novending payg_cas03 mapflag novending payg_cas04 mapflag novending payg_cas05 mapflag novending prt_gld mapflag novending prtg_cas01 mapflag novending prtg_cas02 mapflag novending prtg_cas03 mapflag novending prtg_cas04 mapflag novending prtg_cas05 mapflag novending //--- Ep5.0 Yuno --- alde_alche mapflag novending in_rogue mapflag novending job_cru mapflag novending job_duncer mapflag novending job_monk mapflag novending job_sage mapflag novending monk_test mapflag novending quiz_test mapflag novending yuno mapflag novending yuno_fild01 mapflag novending yuno_fild02 mapflag novending yuno_fild03 mapflag novending yuno_fild04 mapflag novending yuno_in01 mapflag novending yuno_in02 mapflag novending yuno_in03 mapflag novending yuno_in04 mapflag novending yuno_in05 mapflag novending //--- Ep6.0 - Amatsu --- // Requires: kRO 08-10-03 or newer // or kRO Sakray 09-09-03 or newer ama_fild01 mapflag novending ama_in01 mapflag novending ama_in02 mapflag novending ama_test mapflag novending amatsu mapflag novending //--- Ep6.1 - Gon Ryun --- gon_fild01 mapflag novending gon_in mapflag novending gon_test mapflag novending gonryun mapflag novending sec_in01 mapflag novending sec_in02 mapflag novending sec_pri mapflag novending //--- Ep6.2 - Umbala --- // Requires: kRO 01-27-04 or newer // or kRO Sakray 12-02-03 or newer // or Akaru's SuperGRF 1.22 or newer umbala mapflag novending um_fild01 mapflag novending um_fild02 mapflag novending um_fild03 mapflag novending um_fild04 mapflag novending um_in mapflag novending //--- Ep6.3 - Niflheim --- // Requires: kRO 02-23-04 or newer // or kRO Sakray 01-09-04 or newer // or Akaru's SuperGRF 1.32 or newer niflheim mapflag novending nif_fild01 mapflag novending nif_fild02 mapflag novending nif_in mapflag novending yggdrasil01 mapflag novending //--- Ep6.4 - Valkyrie --- // Requires: kRO ??-??-04 or newer // or kRO Sakray 02-03-04 or newer // or Akaru's SuperGRF 1.34 or newer valkyrie mapflag novending himinn mapflag novending //--- Ep6.5 - Castle of Dragon (LouYang) --- // Requires kRO Sakray 03-30 or newer //(Akaru's SuperGRF required version: 1.52) lou_in01 mapflag novending lou_in02 mapflag novending lou_fild01 mapflag novending louyang mapflag novending //--- Ep6.6 - Novice Guild Siege --- //Requires kRO Sakray 04-07 or newer //(Akaru's SuperGRF required version: 1.53) //siege_test n_castle mapflag novending nguild_gef mapflag novending nguild_prt mapflag novending nguild_pay mapflag novending nguild_alde mapflag novending //--- Ep6.7 - Jawaii --- //Requires kRO Sakray 06-22 or newer //(Akaru's SuperGRF required version: 1.63) jawaii mapflag novending jawaii_in mapflag novending // --- Ep6.8 - Geffenia --- // Requires kRO Sakray 07-13 or newer // (Akaru's SuperGRF required version: 1.64) // --- Ep6.9 - New Payon --- // Requires kRO Sakray 09-03 // -- dunno -- payon mapflag novending payon_in01 mapflag novending payon_in02 mapflag novending payon_in03 mapflag novending //same names as old maps except that payon_in03 got added // --- Ep? - Ayothaya --- // Requires kRO Sakray 09-21 // -- 2004-10-19sdata_k.gpf -- ayothaya mapflag novending ayo_in01 mapflag novending ayo_in02 mapflag novending ayo_fild01 mapflag novending ayo_fild02 mapflag novending // --- God item quests maps --- // -- 2004-10-12sdata_k3.gpf -- que_god01 mapflag novending que_god02 mapflag novending // --- Ep? - Schwarzwald Republic --- // -- 2004-12-28sdata_k.gpf -- yuno_fild05 mapflag novending yuno_fild07 mapflag novending yuno_fild08 mapflag novending yuno_fild09 mapflag novending yuno_fild11 mapflag novending yuno_fild12 mapflag novending // --- Turbo Track Arena --- // -- 2005-03-08sdata_k.gpf -- alde_tt02 mapflag novending turbo_n_1 mapflag novending turbo_n_4 mapflag novending turbo_n_8 mapflag novending turbo_n_16 mapflag novending turbo_e_4 mapflag novending turbo_e_8 mapflag novending turbo_e_16 mapflag novending turbo_room mapflag novending // --- Einbroch/Einbech --- // -- 2005-03-15sdata_k.gpf -- airplane mapflag novending airport mapflag novending einbech mapflag novending einbroch mapflag novending ein_dun01 mapflag novending ein_dun02 mapflag novending ein_fild06 mapflag novending ein_fild07 mapflag novending ein_fild08 mapflag novending ein_fild09 mapflag novending ein_fild10 mapflag novending ein_in01 mapflag novending que_sign01 mapflag novending que_sign02 mapflag novending // --- Einbroch and Lightalzen --- // -- 2005-05-10sdata_k.gpf -- ein_fild03 mapflag novending ein_fild04 mapflag novending lhz_fild02 mapflag novending lhz_fild03 mapflag novending // --- Lighthalzen and Juperos Dungeon --- // -- 2005-06-14sdata_k.gpf -- yuno_pre mapflag novending lhz_fild01 mapflag novending lighthalzen mapflag novending lhz_in01 mapflag novending lhz_in02 mapflag novending lhz_in03 mapflag novending lhz_que01 mapflag novending lhz_cube mapflag novending juperos_01 mapflag novending juperos_02 mapflag novending jupe_area1 mapflag novending jupe_area2 mapflag novending jupe_core mapflag novending jupe_ele mapflag novending jupe_ele_r mapflag novending jupe_gate mapflag novending // --- Lighthalzen & Juno Airport --- // -- resnametable clones of airport and airplane -- y_airport mapflag novending lhz_airport mapflag novending airplane_01 mapflag novending // --- Juperos Dungeon --- // -- 2005-06-28sdata_k.gpf -- //jupe_cave mapflag novending // --- Quiz Revolution --- // -- 2005-08-02sdata_k.gpf -- quiz_02 mapflag novending // --- Hugel Field --- // -- 2005-08-23sdata_k.gpf -- hu_fild07 mapflag novending hu_fild05 mapflag novending hu_fild04 mapflag novending hu_fild01 mapflag novending yuno_fild06 mapflag novending // --- Star Knight And Soul Linker Job Change Maps --- // -- 2005-08-23sdata_k.gpf -- job_soul mapflag novending job_star mapflag novending // --- Abyss Lake, Thanatos Tower -- // -- 2005-09-13sdata_k.gpf - 2005-09-13sdata_k6.gpf -- que_job01 mapflag novending que_job02 mapflag novending que_job03 mapflag novending abyss_01 mapflag novending abyss_02 mapflag novending abyss_03 mapflag novending thana_step mapflag novending thana_boss mapflag novending tha_scene01 mapflag novending tha_t01 mapflag novending tha_t02 mapflag novending tha_t03 mapflag novending tha_t04 mapflag novending tha_t07 mapflag novending tha_t05 mapflag novending tha_t06 mapflag novending tha_t08 mapflag novending // --- Thanatos Tower --- // -- 2005-09-21sdata_k.gpf -- tha_t09 mapflag novending tha_t10 mapflag novending tha_t11 mapflag novending tha_t12 mapflag novending // --- Auction Market --- // -- 2005-11-29sdata_k.gpf -- auction_01 mapflag novending auction_02 mapflag novending // --- Garden City Hugel / Kiehl --- // -- 2005-12-20sdata_k.gpf -- hugel mapflag novending hu_in01 mapflag novending que_bingo mapflag novending que_hugel mapflag novending p_track01 mapflag novending p_track02 mapflag novending odin_tem01 mapflag novending odin_tem02 mapflag novending odin_tem03 mapflag novending hu_fild02 mapflag novending hu_fild03 mapflag novending hu_fild06 mapflag novending ein_fild01 mapflag novending ein_fild02 mapflag novending ein_fild05 mapflag novending yuno_fild10 mapflag novending kh_kiehl02 mapflag novending kh_kiehl01 mapflag novending kh_dun02 mapflag novending kh_dun01 mapflag novending kh_mansion mapflag novending kh_rossi mapflag novending kh_school mapflag novending kh_vila mapflag novending // --- Poring Arena (?) & Gunslinger/Ninja Job Map --- // -- 2006-03-28sdata_k.gpf -- poring_c01 mapflag novending poring_c02 mapflag novending que_ng mapflag novending // --- Arunafeltz & Ice Dungeon --- // -- 2006-05-30sdata_k.gpf -- rachel mapflag novending ra_in01 mapflag novending ra_fild01 mapflag novending ra_fild02 mapflag novending ra_fild03 mapflag novending ra_fild04 mapflag novending ra_fild05 mapflag novending ra_fild06 mapflag novending ra_fild07 mapflag novending ra_fild08 mapflag novending ra_fild09 mapflag novending ra_fild10 mapflag novending ra_fild11 mapflag novending ra_fild12 mapflag novending ra_fild13 mapflag novending ra_san01 mapflag novending ra_san02 mapflag novending ra_san03 mapflag novending ra_san04 mapflag novending ra_san05 mapflag novending ra_temin mapflag novending ra_temple mapflag novending ra_temsky mapflag novending que_rachel mapflag novending que_san04 mapflag novending //ice_dun04 mapflag novending // --- Veins & Thor Dungeon --- // -- 2006-12-19sdata_k.gpf -- que_thor mapflag novending thor_camp mapflag novending thor_v01 mapflag novending thor_v02 mapflag novending thor_v03 mapflag novending veins mapflag novending ve_in mapflag novending ve_in02 mapflag novending ve_fild01 mapflag novending ve_fild02 mapflag novending ve_fild03 mapflag novending ve_fild04 mapflag novending ve_fild05 mapflag novending ve_fild06 mapflag novending ve_fild07 mapflag novending // --- Nameless Island & Abbey Dungeon --- // -- 2007-04-03sdata_k.gpf nameless_i mapflag novending nameless_n mapflag novending nameless_in mapflag novending abbey01 mapflag novending abbey02 mapflag novending abbey03 mapflag novending poring_w01 mapflag novending poring_w02 mapflag novending // --- ??? --- // -- 2007-??-?? 06guild_r mapflag novending 06guild_01 mapflag novending 06guild_02 mapflag novending 06guild_03 mapflag novending 06guild_04 mapflag novending 06guild_05 mapflag novending 06guild_06 mapflag novending 06guild_07 mapflag novending 06guild_08 mapflag novending z_agit mapflag novending que_temsky mapflag novending itemmall mapflag novending bossnia_01 mapflag novending bossnia_02 mapflag novending bossnia_03 mapflag novending bossnia_04 mapflag novending // --- Moscovia --- // -- 2007-06-??? moscovia mapflag novending mosk_in mapflag novending mosk_ship mapflag novending mosk_fild01 mapflag novending mosk_fild02 mapflag novending mosk_que mapflag novending // --- Episode 12: Satan Morroc & Schwaltzvalt Seige --- // -- 2007-09-19sdata_k.gpf schg_cas01 mapflag novending schg_cas02 mapflag novending schg_cas03 mapflag novending schg_cas04 mapflag novending schg_cas05 mapflag novending sch_gld mapflag novending cave mapflag novending moc_fild20 mapflag novending moc_fild21 mapflag novending moc_fild22 mapflag novending que_ba mapflag novending que_moc_16 mapflag novending que_moon mapflag novending // Arunafeltz Seige // -- 2007-10-24sdata_k.gpf arug_cas01 mapflag novending arug_cas02 mapflag novending arug_cas03 mapflag novending arug_cas04 mapflag novending arug_cas05 mapflag novending aru_gld mapflag novending // PVP Battle Fields: Tierra Valley, and Frebeus // -- 2007-11-14sdata_k.gpf bat_room mapflag novending bat_a01 mapflag novending bat_a02 mapflag novending bat_b01 mapflag novending bat_b02 mapflag novending que_qsch01 mapflag novending que_qsch02 mapflag novending que_qsch03 mapflag novending que_qsch04 mapflag novending que_qsch05 mapflag novending que_qaru01 mapflag novending que_qaru02 mapflag novending que_qaru03 mapflag novending que_qaru04 mapflag novending que_qaru05 mapflag novending // Memorial Dungeon // -- 2007-11-28sdata_k.gpf 1@cata mapflag novending 2@cata mapflag novending e_tower mapflag novending 1@tower mapflag novending 2@tower mapflag novending 3@tower mapflag novending 4@tower mapflag novending 5@tower mapflag novending 6@tower mapflag novending // 13.1 Another World // -- 2008-05-28sdata_k.gpf mid_camp mapflag novending mid_campin mapflag novending man_fild01 mapflag novending man_fild03 mapflag novending spl_fild02 mapflag novending spl_fild03 mapflag novending moc_fild22b mapflag novending que_dan01 mapflag novending que_dan02 mapflag novending schg_que01 mapflag novending schg_dun01 mapflag novending arug_que01 mapflag novending arug_dun01 mapflag novending 1@orcs mapflag novending 2@orcs mapflag novending // Additional Battleground. // -- 2008-??-??? bat_c01 mapflag novending bat_c02 mapflag novending bat_c03 mapflag novending // 13.2 Another World // -- 2008-11-26 1@nyd mapflag novending 2@nyd mapflag novending nyd_dun01 mapflag novending nyd_dun02 mapflag novending manuk mapflag novending man_fild02 mapflag novending man_in01 mapflag novending splendide mapflag novending spl_fild01 mapflag novending spl_in01 mapflag novending spl_in02 mapflag novending // 3rd Job Maps // -- 2009-01-29rdata_k2.gpf job3_arch01 mapflag novending job3_arch02 mapflag novending job3_arch03 mapflag novending job3_guil01 mapflag novending job3_guil02 mapflag novending job3_guil03 mapflag novending job3_rang01 mapflag novending job3_rang02 mapflag novending job3_rune01 mapflag novending job3_rune02 mapflag novending job3_rune03 mapflag novending job3_war01 mapflag novending job3_war02 mapflag novending jupe_core2 mapflag novending // ??? // -- 2009-05-27rdata_k.gpf moc_para01 mapflag novending // Brasilis Maps // -- 2009-08-05rdata_k.gpf brasilis mapflag novending bra_in01 mapflag novending bra_fild01 mapflag novending // ??? // -- 2009-09-30rdata_k.gpf s_atelier mapflag novending // 13.3 El Discastes // -- 2009-12-09rdata_k.gpf dicastes01 mapflag novending dicastes02 mapflag novending dic_in01 mapflag novending dic_fild01 mapflag novending dic_fild02 mapflag novending job3_gen01 mapflag novending job3_sha01 mapflag novending // Localized Event Maps //evt_zombie //evt_coke // Unknown Maps //ac_sl_area //ac_cl_hall //ac_cl_room //jp_s_dun11 // 14.1 Bifrost // -- 2010-06-09rdata_x.gpf mora mapflag novending bif_fild01 mapflag novending bif_fild02 mapflag novending 1@mist mapflag novending // Dewata Maps // -- 2010-09-15rdata_x.gpf dewata mapflag novending dew_in01 mapflag novending dew_fild01 mapflag novending dew_dun01 mapflag novending dew_dun02 mapflag novending // ??? // -- 2010-10-06rdata_x.gpf que_house_s mapflag novending // Malangdo Maps // -- 2010-11-03rdata_x.gpf malangdo mapflag novending mal_in01 mapflag novending mal_in02 mapflag novending 1@pump mapflag novending 2@pump mapflag novending 1@cash mapflag novending // Undersea Tunnel Expansion // -- 2010-11-10rdata_x.gpf iz_dun05 mapflag novending // ??? // -- 2010-12-01data_x.gpf evt_mobroom mapflag novending
  18. Scylla's post in Delay Body Relocation to 0.5 Seconds was marked as the answer   
    First you need to set your skill_castnodex_db.txt:
    // <Skill id>,<Cast>,<Delay (optional)> // // Cast: 0 - everything affects the skill's cast time // 1 - skill's cast time is not affected by dex // 2 - skill's cast time is not affected by statuses (Suffragium, etc) // 4 - skill's cast time is not affected by item bonuses (equip, cards) // // Delay: 0 - everything affects the skill's delay // 1 - skill's delay is not affected by dex // 2 - skill's delay is not affected by Magic Strings / Bragi // 4 - skill's delay is not affected by item bonuses (equip, cards) // // Note: Values are bit fields, add them up to combine their effects. // Note: Delay setting '1' only makes sense when delay_dependon_dex is enabled. // Example: 46,1,1 = Double Strafe's cast time and delay is not affected by dex. Now if you want a permanent delay, then add this line on anywhere in there:
    264,0,7 // Body Relocation Then set the delay again on your skill_cast_db.txt
  19. Scylla's post in how to set zeny reward? pls read. was marked as the answer   
    Options:
    // Reward options. // ----------------------------------------------------------- // [1] Enable rewards. // [2] Mail all rewards. // - If not set, players receive items in their inventory. // - Only ONE item can be sent via mail, plus Zeny. // - Note that offline players do NOT receive rewards. // [4] Only reward Guild Masters. // - If not set, all guild members are rewarded. // - If mailing is enabled (option 2), offline Guild Masters WILL receive rewards. // [8] Duplicate IP check. // - Members in a guild with the same IP address are not rewarded. // - If Guild Masters is enabled (option 4), this feature is not used. // ----------------------------------------------------------- Then the instructions says:
    // Combine values as needed (e.g. 1|8 = 1+8 = 9). set .Options, 1|8; So therefore:
    // Combine values as needed (e.g. 1|8 = 1+8 = 9). set .Options, 1|2|8; // Rewards per castle. // -- when given directly: <itemID>,<amount>{,<itemID>,<amount>,...} // -- via mail (option 2): <itemID>,<amount>,<Zeny> setarray .Reward[0],ITEM_ID,AMOUNT,INPUT ZENY P.S
    I don't use Euphy's WoE controller script and i dunno if i did it right on the option combination but i just did what i understood from reading the instructions in there.
  20. Scylla's post in Multiple Requests & Question was marked as the answer   
    Well there's another way, why don't you just make a box similar to OBB / OPB then just put the costume ID's desired, include it on the freebies and finally, input restrictions.
     
    Here's a guide how to make a custom box: https://rathena.org/board/topic/84440-how-to-make-custom-old-blue-box-random-item-with-mods/
     
    Or try this one:
    valkyrie,53,80,4 script Newbies Npc 894,{ if(##freebie == 1) goto L_1; mes "^C45AEC** Freebie **^000000"; mes "Hello ^008080"+strcharinfo(0)+"^000000!!"; next; mes "^C45AEC** Freebie **^000000"; mes "Welcome to Ragnarok Online"; next; getitem 674,9; getitem 14232,50; next; mes "^C45AEC** Freebie **^000000"; mes "And for your random costume..."; next; set @rand,rand(1,4); if (@rand == 1) goto R1; if (@rand == 2) goto R2; if (@rand == 3) goto R3; if (@rand == 4) goto R4; R1: getitem 20159,1; close; R2: getitem 20160,1; close; R3: getitem 20161,1; close; R4: getitem 19661,1; close; emotion e_thx; set ##freebie,1; //warp "valkyrie",48,76; close; L_1: mes "You had already received before the gift."; emotion e_bzz; close; OnInit: waitingroom "FREEBIES!!!",0; end; }
  21. Scylla's post in Any new client side guides? was marked as the answer   
    All done, guided on discord.
  22. Scylla's post in Help Need to add map .. was marked as the answer   
    For the correct map_cache, it depends what type of server you have, if it's re then edit the one inside re folder and the same if you're on pre-re
  23. Scylla's post in How to add "Only assasin cross can enter" was marked as the answer   
    Try this:
    prontera,155,181,5 script Farm Zone 757,{ function RandomizeItem; while( 1 ){ mes "How can i help you ?"; switch( select( "Information:Farm Items" )){ Case 1: mes "This is a Farm Zone."; mes "You are able to Hunt Monster inside this Room."; mes "Every Monster will award you random items."; next; mes "But there is some Condition.."; mes "You can only go in ^FF0000once every "+.RoomCleanMin+" minutes for 1 times.^000000"; mes "And Maximum of ^FF0000"+.MaxPlayers+" Players per "+.RoomCleanMin+" Minutes.^000000"; mes "Maximum Hunting Limit ^FF0000"+.MaxItemLimit+"^000000"; next; mes "There will be a ^FF0000Room Cleaning^000000 from time to time..."; mes "All players will be kicked out, it is your bad luck if you meet this."; mes "Delay will still apply even though you just go in for 1 Seconds.."; next; break; Case 2: if( #HuntRoomDelay > gettimetick(2) ){ set .last,#HuntRoomDelay - gettimetick(2); set .@min, .last % ( 24 * 3600 ) % 3600 / (60); mes "Wait for ^FF0000"+.@min+" Minutes^000000."; close; }else if( getarraysize( .Hunter ) >= .MaxPlayers ){ mes "Currently the Room is Full. Please try again later."; close; }else if( BaseJob == Job_Assassin){ warp .Map$,0,0; set .Hunter[getarraysize( .Hunter )],strcharinfo(0); set #HuntRoomDelay,gettimetick(2) + ( .DelayMin * 60 ); set #FarmHunt,0; end; } else { mes "You're not an assassin"; close; } } } OnInit: // Maximum Player can join per X Minutes. set .MaxPlayers,5; // Adding X Minutes of Delay before can go in again. set .DelayMin,15; // Maximum Hunt Limit per round inside the Zone. set .MaxItemLimit,200; // Map that will be used in thos Zone. set .Map$,"guild_vs5"; // Clear Map Every X Minutes. set .RoomCleanMin,15; // Mapflag Initialization setmapflag .Map$,mf_nogo; setmapflag .Map$,mf_nomobloot; setmapflag .Map$,mf_nomvploot; setmapflag .Map$,mf_nowarpto; setmapflag .Map$,mf_nochat; setmapflag .Map$,mf_novending; setmapflag .Map$,mf_nocommand,60; setmapflag .Map$,mf_nogo; setmapflag .Map$,mf_nojobexp; setmapflag .Map$,mf_nobaseexp; while( 1 ){ killmonster .Map$,"All"; mapwarp .Map$,"prontera",155,181; monster .Map$,0,0,"[ Farm Zone ] Resident",-1,80,strnpcinfo(0)+"::OnNormalKill"; monster .Map$,0,0,"[ Farm Zone ] Guardian",-3,5,strnpcinfo(0)+"::OnBossKill"; deletearray .Hunter,getarraysize( .Hunter ); announce "[ Farm Zone ] : Farming Zone has been Cleaned up, another 5 Players may go in now.",bc_blue; sleep ( .RoomCleanMin * 60000 ); mapannounce .Map$,"[ Farm Zone ] : Room Clean Up now...All Users will be warped Out.",0; killmonster .Map$,"All"; sleep 3000; } end; OnNormalKill: RandomizeItem( 0,rand(1,5) ); monster .Map$,0,0,"--ja--",-1,1,strnpcinfo(0)+"::OnNormalKill"; end; OnBossKill: RandomizeItem( 1,rand(1,3) ); monster .Map$,0,0,"--ja--",-3,1,strnpcinfo(0)+"::OnBossKill"; end; // Function that used to Generate Random Items function RandomizeItem { set #FarmHunt,#FarmHunt + getarg(1); // Normal Monster in Zone Drops Lists if( getarg(0) == 0 ) setarray .ItemList[0],13989,14232,13517,7139,12033,12016,14534; // Normal Boss in Zone Drops Lists if( getarg(0) == 1 ) setarray .ItemList[0],14536,12912,12267,12266,14601,13830,13831,13832,13833; for( set .@i,1; .@i <= getarg(1); set .@i,.@i + 1 ){ getitem .ItemList[ rand( getarraysize( .ItemList ) ) ],1; } deletearray .ItemList,getarraysize( .ItemList ); dispbottom "[ Farm Zone ] : Farmed "+#FarmHunt+" / "+.MaxItemLimit+" Items"; if( #FarmHunt >= .MaxItemLimit ){ message strcharinfo(0),"Limit Reach , you may join again later."; sleep2 2000; warp "prontera",155,181; } return; } }
  24. Scylla's post in 2014-10-22 lub problem was marked as the answer   
    I actually don't have any idea should be the correct formats.
     
    I guess i should download the latest kRO client datas first
     
    EDIT: Solved, downloaded latest kRO client in here
  25. Scylla's post in +10 Stat Foods unusable after death fix request was marked as the answer   
    You might be using cash foods, try this out.
     
    conf/battle/items.conf
     
    Find:
    // How much time must pass between cash food uses? Default: 60000 (1 min) cashfood_use_interval: 60000 Then replace:
    // How much time must pass between cash food uses? Default: 60000 (1 min) cashfood_use_interval: 0
×
×
  • Create New...