Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. https://rathena.org/board/topic/95122-preview-npc/ https://rathena.org/board/topic/75446-quest-npc-with-a-preview-item/
  2. depend on which new clients you're using, some still can use it together with the iteminfo.lub yes, basically it's a all-in-one package of these txt files. whatever you add ... you have to edit it. yes, iteminfo.lub read by new client, but it's not loaded in grf. it's the /System/ folder yes, your client still read and may show errors if you done it in a incorrect way.
  3. LOL, that's bias, honestly speaking, I am just nothing more than a fool sometime. Anyway, forum is for discussion. If you feel good about it then you join the discussion, if not then just ignore the post or leave the topic. If you have a better solution to share, then just share it if you want to. It's also true that it may not be feel good when you criticize other's work without showing your own works that has a better solution than others. although I alway do it ... xD Keep the environment peace.
  4. Emistry

    Item price

    you cant sell anything for free, that's not something you call with "SELL". You totally violated the term "SELL". just set a minimum value of 1 or set another NPC that give away the items for free.
  5. search your NPC folder... Example ...
  6. issues 1 https://rathena.org/board/topic/77149-how-to-fix-big-inventory/ https://www.google.com/webhp?sourceid=chrome-instant&ion=1&espv=2&ie=UTF-8#q=rathena%20long%20inventory issue 2 Custom_Items
  7. is that a cutin ?? nothing really impressed O__O because the original worldmap from the client itself can do far better than this. @about old client add custom with edit grf huh?? does it even possible ?? i never tried any client older than 2009. It sound like mission impossible for me since you required the client to read the files to link the sprite files with the character.
  8. Version 1.2

    889 downloads

    Description Players are able to click on the Ores items to refine the selected equipment. They can refine their Equipment at anywhere anytime they want. Based on requirement of Weapon Level and Type, different ores might be needed as well as Zeny. Preview
    Free
  9. View File Usable Refinery Ores Description Players are able to click on the Ores items to refine the selected equipment. They can refine their Equipment at anywhere anytime they want. Based on requirement of Weapon Level and Type, different ores might be needed as well as Zeny. Preview Submitter Emistry Submitted 01/18/16 Category Utilities Content Author  
  10. Version 1.1

    1819 downloads

    Description : Players are able to click on the Enchant items to provide custom bonus to the selected equipment. Varies of bonus could be done especially use together with a *getequippedon script command to provide a wide range of bonuses. The current items and bonuses display in the video is just a sample for demo. The origin of the idea come from Diablo and 張阿神. Sample Usage: callfunc("F_UsableEnchantItem", <delete_item_id>, <enchant_item_id>{, <card_index>}); Item Database : Create a custom item for enchant - Id: 501 AegisName: Red_Potion_Enchant_Usable Name: Red Potion Type: DelayConsume Buy: 10 Weight: 70 Script: | callfunc("F_UsableEnchantItem", 501, 909, 3); Create a custom enchant item with special bonuses. - Id: 909 AegisName: Jellopy_Enchant_Item Name: Jellopy Type: Etc Buy: 6 Weight: 10 Flags: BuyingStore: true Script: | .@eqp = getequippedon(); if (.@eqp & EQP_ARMOR) { bonus bVit,100; } if (.@eqp & EQP_HEAD_TOP) { bonus bInt,100; } if (.@eqp & EQP_SHOES) { bonus bAgi,100; } Preview :
    Free
  11. View File Usable Enchant Item Description : Players are able to click on the Enchant items to provide custom bonus to the selected equipment. Varies of bonus could be done especially use together with a *getequippedon script command to provide a wide range of bonuses. The current items and bonuses display in the video is just a sample for demo. The origin of the idea come from Diablo and 張阿神. Sample Usage: callfunc("F_UsableEnchantItem", <delete_item_id>, <enchant_item_id>{, <card_index>}); Item Database : Create a custom item for enchant - Id: 501 AegisName: Red_Potion_Enchant_Usable Name: Red Potion Type: DelayConsume Buy: 10 Weight: 70 Script: | callfunc("F_UsableEnchantItem", 501, 909, 3); Create a custom enchant item with special bonuses. - Id: 909 AegisName: Jellopy_Enchant_Item Name: Jellopy Type: Etc Buy: 6 Weight: 10 Flags: BuyingStore: true Script: | .@eqp = getequippedon(); if (.@eqp & EQP_ARMOR) { bonus bVit,100; } if (.@eqp & EQP_HEAD_TOP) { bonus bInt,100; } if (.@eqp & EQP_SHOES) { bonus bAgi,100; } Preview : Submitter Emistry Submitted 01/17/2016 Category Utilities Video https://www.youtube.com/watch?v=dFivhLs1zeE Content Author Emistry  
  12. http://www.w3schools.com/html/html5_audio.asp http://www.tutorialspoint.com/html/html_bgsound_tag.htm
  13. for your information, you can actually double click on the title and edit it.
  14. missing files or wrong implementation. double check your installation for your custom items. Custom_Items
  15. double check the contents inside these files. make sure the format / data is correct
  16. 4128,Golden_Bug_Card,Golden Thief Bug Card,6,20,,10,,,,,,,,32,,,,,{ .@map$ = strcharinfo(3); bonus bNoMagicDamage,((getmapflag( .@map$,mf_pvp ) || getmapflag( .@map$,mf_gvg ))? 50 : 100 ); bonus bUseSPrate,100; },{},{}
  17. https://rathena.org/board/topic/99960-download-jro-and-kro-cliente/?p=277174
  18. i think your idea is pretty much similar to the Find the Mushroom event npc/custom/events/mushroom_event.txt you can edit the mushroom id into a emperium to fulfill what you wanted. just enable the GVG mapflag in case you want to allow GVG battle within the event map.
  19. http://svn.games-service.net/ anyway ... new clients since 2014 does support ALT + A and ALT + Q now.
  20. Please elaborate the problem you currently facing. Provide us with the following or more details if possible: - Run-time server console errors/warnings (if any). - Client side errors/warnings (if any). - Any edits to scripts or source mods (if any). or post a GDB report.
  21. // item_db.txt ............... ,{ input .@map$; if ( getmapusers( .@map$ ) != -1 ) warp .@map$,0,0; end; },{ },{ }
  22. Please elaborate the problem you currently facing. Provide us with the following or more details if possible: - Run-time server console errors/warnings (if any). - Client side errors/warnings (if any). - Any edits to scripts or source mods (if any).
  23. enter the installerpassword enter MySQL userid and password. click install/update.
  24. setup your Clientinfo with different set of <connection> that use different <langtype>.
×
×
  • Create New...