Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/22/17 in all areas

  1. This mod was ported from a Hercules plugin by @bio which can be found here. Thank you for the great idea. This mod implements a new script command called `sellitem` which works just like `callshop`, but only for selling items. This command has an ability to filter out unwanted items that you don't want to display in selling shop. The <type> parameter is for specifying the filter type. SFT_TYPE - Type filter SFT_ID - ID filter Item type filter hides every item that isn't of type specified in <param> parameter. You can set nth bit of <param> to allow certain item type to be displayed. Where n is an item type's numerical value. See src/map/script_constants.h for more info. Item ID filter hides every item whose ID isn't equal to <param>. <Overcharge> parameter controls whether overcharge skill will affect item value display in the window. Example usages: mes "[ Jellopy Lover ]"; mes "I buy Jellopy for 50 Poring coins each."; close2; npcshopattach "JellopyShop"; sellitem "JellopyShop",SFT_ID,909; end; mes "[ Rare Items Collector ]"; mes "Sell me some rare items and cards"; close2; .@filter |= 1 << IT_CARD; .@filter |= 1 << IT_ARMOR; .@filter |= 1 << IT_WEAPON; npcshopattach "CardShop"; sellitem "CardShop",SFT_TYPE,.@filter; end; DOWNLOAD THE DIFF FILE
    5 points
  2. ATTENTION: This feature requires Item Random Option System enabled! Just as title said (too lazy to create description for now) Links Branch Initial release commit and its Diff Changelogs and its Diff or download the file *getitem3 <item id>,<amount>,<identify>,<refine>,<attribute>,<card1>,<card2>,<card3>,<card4>,<RandomIDArray>,<RandomValueArray>,<RandomParamArray>{,<account ID>}; *getitem3 "<item name>",<amount>,<identify>,<refine>,<attribute>,<card1>,<card2>,<card3>,<card4>,<RandomIDArray>,<RandomValueArray>,<RandomParamArray>{,<account ID>}; *getitembound3 <item id>,<amount>,<identify>,<refine>,<attribute>,<card1>,<card2>,<card3>,<card4>,<bound type>,<RandomIDArray>,<RandomValueArray>,<RandomParamArray>{,<account ID>}; *getitembound3 "<item name>",<amount>,<identify>,<refine>,<attribute>,<card1>,<card2>,<card3>,<card4>,<bound type>,<RandomIDArray>,<RandomValueArray>,<RandomParamArray>{,<account ID>}; *rentitem3 <item id>,<time>,<identify>,<refine>,<attribute>,<card1>,<card2>,<card3>,<card4>,<RandomIDArray>,<RandomValueArray>,<RandomParamArray>{,<account_id>}; *rentitem3 "<item name>",<time>,<identify>,<refine>,<attribute>,<card1>,<card2>,<card3>,<card4>,<RandomIDArray>,<RandomValueArray>,<RandomParamArray>{,<account_id>}; *makeitem3 <item id>,<amount>,"<map name>",<X>,<Y>,<identify>,<refine>,<attribute>,<card1>,<card2>,<card3>,<card4>,<RandomIDArray>,<RandomValueArray>,<RandomParamArray>; *makeitem3 "<item name>",<amount>,"<map name>",<X>,<Y>,<identify>,<refine>,<attribute>,<card1>,<card2>,<card3>,<card4>,<RandomIDArray>,<RandomValueArray>,<RandomParamArray>; *delitem3 <item id>,<amount>,<identify>,<refine>,<attribute>,<card1>,<card2>,<card3>,<card4>,<RandomIDArray>,<RandomValueArray>,<RandomParamArray>{,<account ID>}; *delitem3 "<item name>",<amount>,<identify>,<refine>,<attribute>,<card1>,<card2>,<card3>,<card4>,<RandomIDArray>,<RandomValueArray>,<RandomParamArray>{,<account ID>}; *countitem3(<item id>,<identify>,<refine>,<attribute>,<card1>,<card2>,<card3>,<card4>,<RandomIDArray>,<RandomValueArray>,<RandomParamArray>) *countitem3("<item name>",<identify>,<refine>,<attribute>,<card1>,<card2>,<card3>,<card4>,<RandomIDArray>,<RandomValueArray>,<RandomParamArray>)
    1 point
  3. https://github.com/rathena/rathena/wiki/Custom_Items
    1 point
  4. In your RO folder, look for a folder called data. Also look at your DATA.INI file to see if you have any other GRFs loading other clientinfo files. eAthena works in the same fashion as rAthena, except eA is no longer updated nor supported by anyone.
    1 point
  5. There's a few different solutions. You could run a lightweight webserver on your vps that has php to check ports and report back to your site via Cron, or you could move to a provider that doesn't block ports on their webserver, or you could host your site on your vps. Other than that you'll struggle.
    1 point
  6. In your rathena/src/config/renewal Add any comment "//" to disable the things you want to disable. (I don't know anything about the map -- I did it manually myself)
    1 point
  7. 3rd jobs are actually disabled, there are no 3rd job changer npc in pre-renewal except you are using @job commands those renewal maps might be there but there will be no npc/monster. you can edit src for @job for removing 3rd job in that command. you can remove those maps in maps athena , mapcache and also those map in your scripts.
    1 point
  8. //quick option to disable all renewal option, used by ./configure #define PRERE #ifndef PRERE /// Leave this line to enable renewal specific support such as renewal formulas #define RENEWAL U will just need to remove // before "#define PRERE" to disable all Renewal Features. Rynbef~
    1 point
  9. rathena/src/config/renewal //quick option to disable all renewal option, used by ./configure //#define PRERE #ifndef PRERE /// Leave this line to enable renewal specific support such as renewal formulas //#define RENEWAL add // to anything you want to disable. As for the maps, maybe, again [maybe] it will follow. But if it will not then you have to do it manually again.
    1 point
  10. Goodnight!! Comment Answers: Well, today I'm glad. But why? Because I will show my Snow Park that it's not a snow park anymore . What I mean? Well... while I was mapping I thought: "This snow park is so... bored". So I decided to transform he into one little place with some houses and the park itself! I would like to say that when I was mapping I was thinking about the Christmas, presents, the Santa, that's why I used the Christmas theme (some decoration and so on). Hope everyone like!! Also, I would like to ask everyone something: What do you think about the Lightmaps?; What do you think about the details? Like decorations and so on? And, if you have any suggestions, tip or idea for a map, please, feel free to tell me!!
    1 point
×
×
  • Create New...