Jump to content

emci

Members
  • Posts

    9
  • Joined

  • Last visited

Posts posted by emci

  1. itemslotcounttable.txt

     

    This didn't work.. thanks tho! :)

     

     

    Really?

       [1101] = {
            unidentifiedDisplayName = "One-Handed Sword",
            unidentifiedResourceName = "¼Òµå",
            unidentifiedDescriptionName = {
                "Unknown Item, can be identified by ^6A5ACDMagnifier^000000."
            },
            identifiedDisplayName = "Sword",
            identifiedResourceName = "¼Òµå",
            identifiedDescriptionName = {
                "A basic one-handed sword.",
                "Class: ^777777One-Handed Sword^000000",
                "Attack: ^77777725^000000",
                "Weight: ^77777750^000000",
                "Weapon Level: ^7777771^000000",
                "Required Level: ^7777772^000000",
                "Jobs: ^777777Novice, Swordman, Merchant and Thief^000000"
            },
            slotCount = 3,
            ClassNum = 2
        },

    yup. its pretty weird..

  2. 2012- clients = cartslotcounttable.txt (I think this is the name or is just slotcounttable)

    2013+ clients = iteminfo.lua (system folder) in slotcount you add the number os slots the item have.

     

     

    iteminfo.lua only inputs the (1) slot on the client side.. Check out the 2nd picture (1) where the mouse is hovering on.. not showing the slots

  3. any suggestion on how to fix the import file??

    is there a txt file that listss all what it reads?


    Sorry nevermind solved:

     

    Only way to fix this is by going to SQL DB and creating your own script. I had nothing in my item_db2 so that's where I added my items

     

    Here is the code if you need it Example custom shinobi hat.

     

     

    DROP TABLE IF EXISTS `item_db2`;

    CREATE TABLE `item_db2` (
      `id` smallint(5) unsigned NOT NULL DEFAULT '0',
      `name_english` varchar(50) NOT NULL DEFAULT '',
      `name_japanese` varchar(50) NOT NULL DEFAULT '',
      `type` tinyint(2) unsigned NOT NULL DEFAULT '0',
      `price_buy` mediumint(8) unsigned DEFAULT NULL,
      `price_sell` mediumint(8) unsigned DEFAULT NULL,
      `weight` smallint(5) unsigned NOT NULL DEFAULT '0',
      `attack` smallint(5) unsigned DEFAULT NULL,
      `defence` smallint(5) unsigned DEFAULT NULL,
      `range` tinyint(2) unsigned DEFAULT NULL,
      `slots` tinyint(2) unsigned DEFAULT NULL,
      `equip_jobs` int(10) unsigned DEFAULT NULL,
      `equip_upper` tinyint(2) unsigned DEFAULT NULL,
      `equip_genders` tinyint(1) unsigned DEFAULT NULL,
      `equip_locations` mediumint(7) unsigned DEFAULT NULL,
      `weapon_level` tinyint(1) unsigned DEFAULT NULL,
      `equip_level` tinyint(3) unsigned DEFAULT NULL,
      `refineable` tinyint(1) unsigned DEFAULT NULL,
      `view` smallint(5) unsigned DEFAULT NULL,
      `script` text,
      `equip_script` text,
      `unequip_script` text,
      PRIMARY KEY (`id`),
      UNIQUE INDEX `UniqueAegisName` (`name_english`)
    ) ENGINE=MyISAM;
     
    REPLACE INTO `item_db2` VALUES (9200,'_shinobihat','Shinobi Hat',5,20,NULL,500,NULL,4,NULL,1,0xFFFFFFFF,31,2,256,NULL,0,1,1043,'bonus bAllStats,10; bonus2 bSubRace,RC_DemiHuman,15; bonus2 bAddRace,RC_DemiHuman,5;','','');
  4. Hi guys,

     

    I need some help making my server read db/import/item_db.txt to install custom items.

     

    I'm not sure but it could be because I'm using packet version 53? or is there other way to implement my custom items?

     

    (Using latest rAthena, Hex client 2015-09-16aRagexe.exe = packet 53)

     

     

  5. Sorry the Client I'm using is 2012- 05 - 15a

    Which Lua Files should i edit o.O'

    is there like a guide for the new ones? because in the wiki it just shows the 1 with the idnum2itemdesctable etc.

    I also have the BMPs of the sprites stored in

    \data exture\À¯ÀúÀÎÅÍÆäÀ̽º\item

    also

    data exture\À¯ÀúÀÎÅÍÆäÀ̽º\collection

    I followed what Mysterious said and it works now! Thank you very much Mysterious!! it was only the System that wasn't configured :]

  6. Hello :]

    I have a graphic error which just shows an unknown item but when i use it it shows the graphic. I cant see the item though?

    I am using the current rAthena.

    I have edited lub (accessoryid & accname)

    also edited:

    idnum2itemdesctable

    idnum2itemdisplaynametable

    idnum2itemresnametable

    num2itemdisplaynametable

    num2itemresnametable

    Please help,

    Thank you!

    post-10430-0-23752000-1352764122_thumb.png

×
×
  • Create New...