Jump to content

xyxzero

Members
  • Posts

    90
  • Joined

  • Last visited

Community Answers

  1. xyxzero's post in monsters / MVPs are doubled every time @reloadscript done was marked as the answer   
    https://github.com/rathena/rathena/commit/c0de25a9abe8ef436e8aef0d00ed62e838262aff
     
    there's a known fix for it
  2. xyxzero's post in Maximum Resist to elements reduce was marked as the answer   
    Nvm. Fixed it
     
    PC.c
    from
    case SP_SUBELE: // bonus2 bSubEle,e,x; PC_BONUS_CHK_ELEMENT(type2,SP_SUBELE); if(sd->state.lr_flag != 2) sd->subele_script[type2] += val;  
    to 
    case SP_SUBELE: // bonus2 bSubEle,e,x; PC_BONUS_CHK_ELEMENT(type2,SP_SUBELE); if(sd->state.lr_flag != 2) sd->subele_script[type2] = min(sd->subele[type2]+val, 70);  
  3. xyxzero's post in Simple NPC was marked as the answer   
    solved
     
    prontera,151,174,4 script Green Ale Seller 829,{ mes "[Green Ale Seller]"; mes "What would you like to do?"; switch(select("Buy Green Ale","Close")) { case 1: if (countitem(7929) < 10) goto L_NE; if (countitem(12135) >= 1) goto L_GA; delitem 7929,10; getitem 12135,100; close; L_NE: mes "[Green Ale Seller]"; mes "I'm Sorry but you don't have enough Gold Coins."; close; L_GA: mes "[Green Ale Seller]"; mes "Please use all your Green Ale first before buying."; close; case 2: next; mes "[Green Ale Seller]"; mes "Okay bye!"; close; } OnInit: waitingroom "Green Ale Seller",0; end; }  
  4. xyxzero's post in Demonic Fire / Fire Expansion was marked as the answer   
    Solved. Change the max count in skill_db.txt 
×
×
  • Create New...