Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/09/23 in all areas

  1. 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  
    1 point
  2. Updated to 2.14.2, adds /mable and /zoom, updates Japanese and Russian translation and fixes UI glitches and a bug in logging.
    1 point
  3. I finally solved my issue. I had correctly follow the custom item guides, but the problem seems to lie either between the client or Iteminfo.lub that cause the problem. First, I was looking around at other server's Iteminfo.lub to compare it to mine to see what I was doing wrong, turns out that all the custom items ViewID are supposed to be 0? On contrary to guides online, I changed my ViewID to 0. That was the first fix. However, the custom item still did not appear. After that, I concluded that I'm going to re-patch my client with NEMO, nothing really different from my original patching and now. Desperately working on the fix, I login and the custom item appears and is working. I had no idea what was really wrong, but all I did was retrace my steps and tweak a couple things, while learning the process between the client -> gtf -> server more in-depth. I hope this reply will help someone in the future when they get stuck like me. Thank you to @OwnedGGWP for helping me over discord. UPDATE: So, looking into it deeper, it wasn't the client, I totally had my accname.lub / accessoryid.lub in the right folder, but wrong directory. I had it to put my files in data/luafiles514/lua files/datainfo instead of data/luafiles514/datainfo.
    1 point
×
×
  • Create New...