Jump to content

Start_

Donators
  • Posts

    833
  • Joined

  • Last visited

  • Days Won

    9

Community Answers

  1. Start_'s post in [ Solved ] Q> Dead Branch was marked as the answer   
    See nodeadbranch mapflag in npc folder.
  2. Start_'s post in Q>Multi Channel Broadcast was marked as the answer   
    Go to '\conf\channels.conf' and adjust settings.
  3. Start_'s post in Max selling item in npc was marked as the answer   
    Use barter shop system.
  4. Start_'s post in [RESOLVED] all-weapon attack animations for all classes was marked as the answer   
    Leave an error pop in message box if it won't crash the game.
    But if there are error dialog pop, you need to use client date that can patch 'Ignore error' to prevent error dialog pop. So player can play along without game freezing.
  5. Start_'s post in How to know mobid from dead mob spwan by monster? was marked as the answer   
    In that case you can try create pre-made events like
    monster "prontera",150,160,"--ja--",[email protected]_id,1,"XXX::OnMonsterDead" + [email protected]_id; OnMonsterDead1002: end; And then you can know what monster you killed by command.
  6. Start_'s post in Problems with Abyss Chaser & Shadow Cross was marked as the answer   
    2021-11-17 work fine for me.
    Remember to pull latest commits from rAthena then clean and build project again.
  7. Start_'s post in RK_SonicWave Auto-Cast Bug was marked as the answer   
    Fix still in process, it will get merge into master branch soon.
  8. Start_'s post in How to override atcommands using bindcmd was marked as the answer   
    use
    atcommand "@commands" in your commands2
  9. Start_'s post in Different card effect per map was marked as the answer   
    2021-12-13 17-08-18.mp4    
    Work fine on my end.
  10. Start_'s post in Different card effect per map was marked as the answer   
    2021-12-13 17-08-18.mp4    
    Work fine on my end.
  11. Start_'s post in How to set siege equipment just effect only in pvp and woe ? was marked as the answer   
    Set it on db/re/item_no_equip
  12. Start_'s post in Kiel Card/bDelayrate Function Error was marked as the answer   
    1. Git your src folder + Commit files (No need to push to public).
    2. Replace your src folder with latest rAthena src folder.
    3. Revert your lost source edition (If need).
    4. Clean and build.
  13. Start_'s post in usable Item infinite was marked as the answer   
    - Id: 504 AegisName: White_Potion Name: White Potion Type: Delayconsume Buy: 1200 Weight: 150 Script: | percentheal 20,0; If still not working
    - Id: 504 AegisName: White_Potion Name: White Potion Type: Delayconsume Flags: NoConsume: true Buy: 1200 Weight: 150 Script: | percentheal 20,0;  
  14. Start_'s post in [Error]: sv_readdb: Insufficient columns in line 5857 of "db/pre-re/mob_skill_db.txt" (found 18, need at least 19). was marked as the answer   
    Error log already told you the problem.
    Try look at top of document you will see how many column required and what it used.
  15. Start_'s post in Card restriction to a certain item was marked as the answer   
    Adjust those cards item script
    if(getequipid(7) != val_arm_id){ // card bonus here }  
  16. Start_'s post in RENTAL CART FOR ALL JOBS was marked as the answer   
    Added permanent skill (push cart). That's it.
  17. Start_'s post in H> Stateicon info was marked as the answer   
    The word your show is located at data/msgstringtable.txt try search those words.
  18. Start_'s post in Remove spaces of hidden icons was marked as the answer   
    NEMO already had option for it.
    Please try read description and tick any option that should affect and see how it goes.
  19. Start_'s post in Used all "usable item" by One Click was marked as the answer   
    Store amount by 'countitem(nnn)'
    and use 'delitem nnn,amount;'
    then multiply reward by 'reward * amount'
  20. Start_'s post in Exp Bar Client Side Bug was marked as the answer   
    Try disable show exp number choices when patching NEMO.
  21. Start_'s post in Add mob error was marked as the answer   
    Oh I see you new mob is not follow rAthena indent. That is the problem.
     
    rAthena indent

  22. Start_'s post in how to increase @whodrops max search list? was marked as the answer   
    \rathena\src\map\itemdb.hpp
    Line 901
     
    and
    \rathena\src\map\mob.cpp
    Line 6121 and 6123
     
    Edit MAX_SEARCH to 30
     

  23. Start_'s post in MVP ENABLE FLY was marked as the answer   
    db > re > mob skill db
    Remove TELEPORT from all MVP.
  24. Start_'s post in Item Option Script was marked as the answer   
    setarray [email protected][1], EQI_ACC_L,EQI_ACC_R,EQI_SHOES,EQI_GARMENT,EQI_HEAD_LOW,EQI_HEAD_MID,EQI_HEAD_TOP,EQI_ARMOR,EQI_HAND_L,EQI_HAND_R,EQI_COSTUME_HEAD_TOP,EQI_COSTUME_HEAD_MID,EQI_COSTUME_HEAD_LOW,EQI_COSTUME_GARMENT,EQI_SHADOW_ARMOR,EQI_SHADOW_WEAPON,EQI_SHADOW_SHIELD,EQI_SHADOW_SHOES,EQI_SHADOW_ACC_R,EQI_SHADOW_ACC_L; for([email protected] = 1; [email protected]<getarraysize([email protected]); [email protected]) { if(getequipisequiped([email protected][[email protected]])) { [email protected]$ = [email protected]$ + F_getpositionname([email protected][[email protected]]) + "-[" + getequipname([email protected][[email protected]]) + "]"; [email protected] = 1; } [email protected]$ = [email protected]$ + ":"; } [email protected] = [email protected][select([email protected]$)]; setrandomoption([email protected],0,rand(1,220),rand(1,2),0); setrandomoption([email protected],1,rand(1,220),rand(1,2),0); setrandomoption([email protected],2,rand(1,220),rand(1,2),0); setrandomoption([email protected],3,rand(1,220),rand(1,2),0); setrandomoption([email protected],4,rand(1,220),rand(1,2),0);  
  25. Start_'s post in Unable to Encrypting GRF, cps.dll error was marked as the answer   
    That error said no files has been found. Maybe try to created a new one? Or copy from other clients.
×
×
  • Create New...

Important Information

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