Jump to content

Lilith

Members
  • Posts

    407
  • Joined

  • Last visited

  • Days Won

    11

Everything posted by Lilith

  1. Epoque's Expansion Pack.zip
  2. in antibot1.txt replace if (getmapmobs(@mapname$) < $@BK_MinMobs) { to if (mobcount(@mapname$,"all") < $@BK_MinMobs) { check out your db/refine_db.txt
  3. Exe version? conf/battle/client.conf
  4. - script PvP_System -1,{ OnPCKillEvent: if(strcharinfo(3) != "pvp_y_1-2") end; if(@LastKilled == killedrid) end; set .@Killer,getcharid(3); set .@Killed,killedrid; detachrid; if(attachrid(.@Killed)){ if(#CASHPOINTS){ dispbottom "You Lost 1 Cash Point from "+rid2name(.@Killer); set #CASHPOINTS,#CASHPOINTS-1; emotion e_sob,1; detachrid; if(attachrid(.@Killer)){ dispbottom "You Gained 1 Cash Points from "+rid2name(.@Killed); emotion e_meh,1; set #CASHPOINTS,#CASHPOINTS+1; set @LastKilled,.@Killed; attachnpctimer; initnpctimer; } } else { emotion e_sob,1; detachrid; if(attachrid(.@Killer)){ dispbottom "Sorry no cash points on the "+rid2name(.@Killed); emotion e_meh,1; set @LastKilled,.@Killed; attachnpctimer; initnpctimer; } } } end; OnTimer180000: set @LastKilled,0; stopnpctimer; detachnpctimer; end; }
  5. Re-uploaded patch. Now bonuses stack...
  6. item_vending.txt feature.conf In-game
  7. @Napster, if you don't use Zeny item (item_zeny: 0) remove also itemid_zeny from db/item_vending.txt, because If you do not use the option item_zeny then zeny item treated as an ordinary item.
  8. @Napster, thx again =) But problem in skill.c i'll fix it some later. Version 1.8 fixed. Thx to Napster. Now you can download ver.1.8.1
  9. Updated to ver.1.8 for rA Version 1.8: Added option for more info about buying ( see version 1.8 preview) Added option for add/remove ITEM_ID name from vending board ( Suggest by Pneuma ) All settings moved from conf/battle/items.conf to conf/battle/feature.conf Version 1.8 preview:
  10. Pneuma, current patch don't have this setting... but i think it's suggestion...
  11. What about support "\" symbol in messages? Example: mes "Hello!\ I can give you simple quest.\ Do you agree?";
  12. conf/battle/party.conf
  13. Updated. Bug with setting '2' fixed.
  14. Because you delete .svn folder in your server folder It's experimental patch for rA only. Maybe this feature will be implemented in the future for other...
  15. Added ver.1.7.2 for rA ( experimental ) Added clif_displaymessagecolor ( credits to Napster) . Now you can change color of messages of extended vending system. see clif.h: #define VEND_COLOR 0x00FFFF // Cyan Cyan by default msg_athena.conf has been changed ( Napster suggestion). Now 705 txt looks like :
  16. In status.c search this: case SC_KYRIE: if (bl->type == BL_MOB) return 0; and change to /* case SC_KYRIE: if (bl->type == BL_MOB) return 0;*/
  17. Lilith

    Blade Stop

    In pc.c Search pc_useitem function, in this function find: if( sd->sc.count && ( sd->sc.data[sC_BERSERK] || (sd->sc.data[sC_GRAVITATION] && sd->sc.data[sC_GRAVITATION]->val3 == BCT_SELF) || sd->sc.data[sC_TRICKDEAD] || sd->sc.data[sC_HIDING] || sd->sc.data[sC__SHADOWFORM] || (sd->sc.data[sC_NOCHAT] && sd->sc.data[sC_NOCHAT]->val1&MANNER_NOITEM) )) add sc's: if( sd->sc.count && ( sd->sc.data[sC_BERSERK] || (sd->sc.data[sC_GRAVITATION] && sd->sc.data[sC_GRAVITATION]->val3 == BCT_SELF) || sd->sc.data[sC_TRICKDEAD] || sd->sc.data[sC_HIDING] || sd->sc.data[sC__SHADOWFORM] || (sd->sc.data[sC_NOCHAT] && sd->sc.data[sC_NOCHAT]->val1&MANNER_NOITEM) || sd->sc.data[sC_BLADESTOP_WAIT] || // <--add this sd->sc.data[sC_BLADESTOP] // <-- and this ))
  18. Nothing of the sort = My file item_vending.txt is Full empty and my auto-currency is Zeny. Check item id for zeny. Do you really have your zeny item id in your item_db? P.S.: and if you don't want to use this system, simply turn off it thx for report, Napster Re-uprated for rAthena to ver. 1.7.1 Bug fixed - thanks to Napster - returned prevend state.
  19. You use eA ? Oh... ngek202 wrote faster than I ^^
  20. Lilith

    MVP Ranker

    You can optimize your script... Just delete array .mobid and change OnNPCKillEvent label to OnNPCKillEvent: // Script execution if(getmonsterinfo(killedrid,22)) set .@s, 1; // If a MvP ... Type 22 is MvP Exp. See changeset 15872 EDIT: nevermind
  21. Updated to version 1.7 ( 1.6 ver. fix ) Added patch for eAthena.
×
×
  • Create New...