Jump to content

Scylla

Members
  • Posts

    374
  • Joined

  • Last visited

  • Days Won

    8

Community Answers

  1. Scylla's post in MVP Room was marked as the answer   
    in npc/mapflag/gvg.txt
     
    Find:
    // GvG Arenas ============= guild_vs1 mapflag gvg Then make it like this:
    // GvG Arenas ============= //guild_vs1 mapflag gvg Then restart server. (I don't know if @reloadscript works)
  2. Scylla's post in Give Enchant Blade to others was marked as the answer   
    Find:
    case RK_ENCHANTBLADE: clif_skill_nodamage(src,bl,skill_id,skill_lv, sc_start2(src,bl,type,100,skill_lv,(100+20*skill_lv)*(status_get_lv(src)/150)+sstatus->int_,skill_get_time(skill_id,skill_lv))); break; Change to:
    case RK_ENCHANTBLADE: clif_skill_nodamage(src,bl,skill_id,skill_lv, sc_start2(src,bl,type,100,skill_lv,(100+20*skill_lv)*(status_get_lv(src)/150)+sstatus->int_,skill_get_time(skill_id,skill_lv))); clif_specialeffect(bl,756,AREA); break; bl = to target
    756 = effect ID (you can change this if you want, find the existing effects at your rathena folder/doc/effect_list.txt)
    AREA = where it will be seen
  3. Scylla's post in I need some help in 2012-04-10 client was marked as the answer   
    Try doing this:
     
    char_athena.conf:
     
    map_athena.conf:
  4. Scylla's post in Refine_db questions XD was marked as the answer   
    Uh yeah, that's actually right.
     
    Maybe you did it via using @reloadscript?
     
    Try restarting your server.
  5. Scylla's post in please advise me about skill effect was marked as the answer   
    Try this:
     
    Find:
    case AC_DOUBLE: if( pc_checkskill(sd, HT_POWER)) { duration = 2000; nodelay = 1; //Neither gives walk nor attack delay target_id = 0; //Does not need to be used on previous target } break; Replace it to:
    case AC_DOUBLE: sc_start(src,bl,SC_STUN,(2*skill_lv+10),skill_lv,skill_get_time2(skill_id,skill_lv)); if( pc_checkskill(sd, HT_POWER)) { duration = 2000; nodelay = 1; //Neither gives walk nor attack delay target_id = 0; //Does not need to be used on previous target } break; For bash skill, i think fatal blow will do the job.
  6. Scylla's post in How to fix this error was marked as the answer   
    Have you tried doing this?
     
    Step 1:

     
    Step 2:

  7. Scylla's post in How to edit if with this script? was marked as the answer   
    Here, tested and working:
    //--------------Script by : Akbar'e--------------------- //---------------http://forum.akbare.com---------------- // Thanks to // ROCREW //======================================================= - script login -1,{ OnPCLoginEvent: if (getgmlevel() < 98) { announce "Welcome , [ "+strcharinfo(0)+" ] | Play get u'r Friends and Love.",bc_yellow|bc_all; } else { close; } }
  8. Scylla's post in Need Help~ (Setup) was marked as the answer   
    As expected. Download this file then just extract it inside your RO folder.
    dinput.zip
  9. Scylla's post in Card name on Equipment is error was marked as the answer   
    data/cardprefixnametable.txt
  10. Scylla's post in Where to put skill animation? was marked as the answer   
    Thank you very much Ghostring!
×
×
  • Create New...