Jump to content

Mhalicot

Community Contributors
  • Content Count

    1971
  • Joined

  • Last visited

  • Days Won

    37

Reputation Activity

  1. Upvote
    Mhalicot got a reaction from karazu in help me with this lms   
    in line 86
     
    - Announce+ announce in line 159 i add tabulation
    pvp_n_1-5 mapflag pvppvp_n_1-5 mapflag nowarppvp_n_1-5 mapflag nowarptopvp_n_1-5 mapflag noteleportpvp_n_1-5 mapflag nosavepvp_n_1-5 mapflag nomemopvp_n_1-5 mapflag nobranchpvp_n_1-5 mapflag pvp_noparty >> http://upaste.me/990610061abe6e7ee
  2. Upvote
    Mhalicot got a reaction from karazu in Character Creation Slot not Available   
    ^ Check your src/common/mmo.h and look for 
    #ifndef PACKETVER #define PACKETVER 20120410 //<-- set to what client you use.#endif // PACKETVER//Uncomment the following line if your client is ragexeRE instead of ragexe (required because of conflicting packets in ragexe vs ragexeRE).#define ENABLE_PACKETVER_RE //<-- since you are using RE it must be enabled. then recompile your server.
  3. Upvote
    Mhalicot got a reaction from karazu in [PROBLEM]Reduce After Cast Delay Script   
    No problem, if you have any problem installing plugins, don't hesitate to ask
  4. Upvote
    Mhalicot got a reaction from Tenraku in [PROBLEM]Reduce After Cast Delay Script   
    No problem, if you have any problem installing plugins, don't hesitate to ask
  5. Upvote
    Mhalicot got a reaction from Tenraku in [PROBLEM]Reduce After Cast Delay Script   
    In documentation 
    bonus bDelayrate,n; Increases skill delay by n%. so I think negative values is not allowed.
     
    try to use bonus bCoolDownRate,<x>;
  6. Upvote
    Mhalicot got a reaction from Tenraku in [PROBLEM]Reduce After Cast Delay Script   
    are you sure you installed that plugins? you must install it first!
  7. Upvote
    Mhalicot got a reaction from Tzuridis in Summon/NPC Exclusive   
    #1 try to use a specific monster id, for example 
     
    summon "High Priest Margaretha",1643; about 2 and 3 question have no idea
  8. Upvote
    Mhalicot got a reaction from Denillie in about custom equips   
    I cant see any wrong , it must be item_db2.conf? try to restart your server.
     
     
    it must be   [ACCESSORY_IDs.ACCESSORY_Heart_Ring] = "_Heart_Ring",
     
    and viewID 1004 is already used in accessoryid ACCESSORY_BUSHY_MOUSTACHE = 1004,
  9. Upvote
    Mhalicot got a reaction from Denillie in about custom equips   
    Yup, but once he set it up correctly and have problem in lua files, it will make his client crashed, or display an Unknown Item.
     
    if thats the chase then you do it right, 
    then 
  10. Upvote
    Mhalicot got a reaction from Denillie in Max Damage Cap   
    try to use Map Zone Database it desnt have max damage cap but it can reduce damage by rate.
  11. Upvote
    Mhalicot got a reaction from Denillie in [ Ask ] About this item?   
    try this
    { Id: 7415 AegisName: "Stone_Of_Summons" Name: "Summoning Stone" Type: 3 Buy: 2 Weight: 10 Script: <" monster "this",-1,-1,"--ja--",1904,1,""; ">},
  12. Upvote
    Mhalicot got a reaction from Denillie in [request] Critical Damage on EMP (2 damage)   
    Will try
  13. Upvote
    Mhalicot got a reaction from Denillie in each event start after 2 hr of ga   
    example:
    OnMinute00: // Triggers at each new hour, so 1:00, 2:00, 3:00, 4:00 etc.OnMinute17: // Triggers each hour at 17 minutes past. So, 8:17, 9:17, 10:17 etc. you can also play with Timer scripts.
  14. Upvote
    Mhalicot got a reaction from Happy in Knight of Abyss Card Effect on Renewal   
    pano naging mali yung calculation? try mo nalang po ipag compare yung pre-renewal settings sa renewal settings.
  15. Upvote
    Mhalicot got a reaction from Denillie in Haven't run a server in four years, where do I start?!   
    try this guide -> http://herc.ws/wiki/Compiling#Windows
  16. Upvote
    Mhalicot got a reaction from Denillie in Character Creation Slot not Available   
    ^ Check your src/common/mmo.h and look for 
    #ifndef PACKETVER #define PACKETVER 20120410 //<-- set to what client you use.#endif // PACKETVER//Uncomment the following line if your client is ragexeRE instead of ragexe (required because of conflicting packets in ragexe vs ragexeRE).#define ENABLE_PACKETVER_RE //<-- since you are using RE it must be enabled. then recompile your server.
  17. Upvote
    Mhalicot got a reaction from karazu in Add a chance of auto casting Level 10 Kyrie Eleison   
    Note this:
    bonus3 bAutoSpellWhenHit,x,y,n; n/10% chance to cast skill x of level y on attacker (unless it is a self or support skill) when being hit by a direct attack. (supports skill names) Target must be within spell's range to go off.  
    so you must use bonus4
    bonus4 bAutoSpellWhenHit,x,y,n,i; n/10% chance to cast skill x of level y when being hit by a direct attack. (supports skill names) Target must be within spell's range to go off. i: 0=cast on self 1=cast on enemy, not on self 2=use random skill lv in [1..y] 3=1+2 (random lv on enemy) try this
    bonus4 bAutoSpellWhenHit,PR_KYRIE,10,(30+70*(readparam(bInt)>=99)),0;
  18. Upvote
    Mhalicot got a reaction from karazu in Permanently stuck on the Wedding Suit   
    I think your player is exaggerated about the time spent.
     
    Wedding sprite will last for 60minutes based on this script 
     
    Marriege.txt
    //Give ring to Bride, and change to wedding sprite. sc_start SC_WEDDING,3600000,1; getitem 2635,1; //Bride_Ring //Give ring to Groom, and change to wedding sprite. attachrid(getcharid(3,$@wed_groom$)); sc_start SC_WEDDING,3600000,1;  
     
  19. Upvote
    Mhalicot got a reaction from Denillie in Summon/NPC Exclusive   
    #1 try to use a specific monster id, for example 
     
    summon "High Priest Margaretha",1643; about 2 and 3 question have no idea
  20. Upvote
    Mhalicot got a reaction from Denillie in Knight of Abyss Card Effect on Renewal   
    pano naging mali yung calculation? try mo nalang po ipag compare yung pre-renewal settings sa renewal settings.
  21. Upvote
    Mhalicot got a reaction from karazu in Haven't run a server in four years, where do I start?!   
    try this guide -> http://herc.ws/wiki/Compiling#Windows
  22. Upvote
    Mhalicot got a reaction from ShankS in Costume System v1   
    Good News dito, Update version Released! 
  23. Upvote
    Mhalicot got a reaction from karazu in NO MSG   
    ^ if you are using custom data. delete your msgstringtable.txt in yourRO.grf so that it will use the default korean msgstringtable.txt
  24. Upvote
    Mhalicot got a reaction from karazu in Your autoloottype/id is not working   
    yung autoloottype po kasi ang pag gamit nyan, @autolootid +n
     
    for example idadagdag ko yung apple sa list @autolootid +501 same din sa autoloottype pag babawasan mo naman  -501
  25. Upvote
    Mhalicot got a reaction from karazu in each event start after 2 hr of ga   
    example:
    OnMinute00: // Triggers at each new hour, so 1:00, 2:00, 3:00, 4:00 etc.OnMinute17: // Triggers each hour at 17 minutes past. So, 8:17, 9:17, 10:17 etc. you can also play with Timer scripts.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.