Jump to content

Rebel

Members
  • Posts

    436
  • Joined

  • Last visited

  • Days Won

    1

Community Answers

  1. Rebel's post in Disable @go on specific map was marked as the answer   
    Add the map that you want to disable in npc/mapflag/nowarp.txt
  2. Rebel's post in Item Bonus add element damage was marked as the answer   
    bonus2 bMagicAtkEle,n,x;
    Increases damage of n element magic by x%.
    n: 0=Neutral, 1=Water, 2=Earth, 3=Fire, 4=Wind, 5=Poison,
    6=Holy, 7=Dark, 8=Spirit, 9=Undead
  3. Rebel's post in Amplify Magic Power no cast was marked as the answer   
    //-- HW_MAGICPOWER
    366,700,0,0,30000,0,0
     
    red : casting time
    blue : after cast delay
     
    change the red to your desire.. 1000 -> 1 second
  4. Rebel's post in urgent help woe damage showing was marked as the answer   
    Well Im just the one who's using this client. and I dont know that show woe damage option is. i cant remember that i use that option on my client.
     
     
    Edit :
     
    I got fixed it now. Somehow when I update my data folder with new version available in client releases, i think it doesnt support my client.. idontknow.. important thing is.. its not showing now the damage.. appreciate all of your help guys. thank you! godbless!
  5. Rebel's post in @afk error after update svn was marked as the answer   
    change
     
    status_change_start(&sd->bl, SC_AUTOTRADE, 10000,0,0,0,0, ((timeout > 0) ? min(timeout,battle_config.afk_timeout) : battle_config.afk_timeout)*60000,0);  
    to
     
    status_change_start(NULL, &sd->bl, SC_AUTOTRADE, 10000,0,0,0,0, ((timeout > 0) ? min(timeout,battle_config.afk_timeout) : battle_config.afk_timeout)*60000,0);
  6. Rebel's post in how to make refine to +20 ? was marked as the answer   
    MAX_REFINE in status.h
     
    /** * Max Refine available to your server * Changing this limit requires edits to refine_db.txt **/ #ifdef RENEWAL # define MAX_REFINE 20 #else # define MAX_REFINE 20 #endif
  7. Rebel's post in Char Slot was marked as the answer   
    mmo.h
    //Max number of characters per account. Note that changing this setting alone is not enough if the client is not hexed to support more characters as well.

    #define MAX_CHARS 9
×
×
  • Create New...