Equipments to be grouped like other items

Got something on your mind about the project? This is the correct place for that.


Forum rules

This forum is for feature requests, content changes additions, anything not a Bug in the software.
Please report all bugs on the Support Forums

Post Reply
Marzon
Peon
Peon
Posts: 32
Joined: 16 May 2014, 19:40

Equipments to be grouped like other items

Post by Marzon »

When hunting red slimes, collected red apples get grouped into single slot. I request that same grouping to also be there for equipments, like 50 knives will be put together into single slot. As a player can carry max 100 slots, storage has 300 and it becomes easier to move equipments around between players and players / storage.
Last edited by Marzon on 18 Jun 2014, 00:35, edited 1 time in total.
User avatar
wushin
TMW Adviser
TMW Adviser
Posts: 1759
Joined: 18 Dec 2012, 05:56
Location: RiverBest, Brew City, Merica
Contact:

Re: Equipments to be grouped like other items

Post by wushin »

Its meant to take up space in your inventory and be like that. It makes it harder to bot and harder to grind. otherwise those red slimes would be squishy piggy banks.
The secret to getting all the important stuff done is doing nothing.
User avatar
o11c
Grand Knight
Grand Knight
Posts: 2262
Joined: 20 Feb 2011, 21:09
Location: ^ ^

Re: Equipments to be grouped like other items

Post by o11c »

It's trivial to change this on the server side, and it *is* planned. But there is a major problem: currently no *quests* are written to work with it. Particularly, quest that delete a piece of equipment currently assume that it is safe to call getitem.

If you want this to get in, you need to review all calls to delitem to check whether they assume a subsequent makeitem will work, or else modify the new atomic transaction script and then port all scripts to use it.
Former programmer for the TMWA server.
Marzon
Peon
Peon
Posts: 32
Joined: 16 May 2014, 19:40

Re: Equipments to be grouped like other items

Post by Marzon »

Thanks. I realized that as it's same for everyone, it doesn't matter anyway. I should be caring more about game expansion and balance; though I haven't cared about them yet :p
User avatar
Crush
TMW Adviser
TMW Adviser
Posts: 8046
Joined: 25 Aug 2005, 16:08
Location: Germany

Re: Equipments to be grouped like other items

Post by Crush »

The reason why eAthena handles equipment as unique items is because it allows to upgrade and modify equipment. When you make items stackable, you might lose that ability. It might add more to the game when you would instead try to expand on equipment customizing.
  • former Manasource Programmer
  • former TMW Pixel artist
  • NOT a game master

Please do not send me any inquiries regarding player accounts on TMW.


You might have heard a certain rumor about me. This rumor is completely false. You might also have heard the other rumor about me. This rumor is 100% accurate.
User avatar
o11c
Grand Knight
Grand Knight
Posts: 2262
Joined: 20 Feb 2011, 21:09
Location: ^ ^

Re: Equipments to be grouped like other items

Post by o11c »

It's quite possible to upgrade equipment and still allow stacking.
Former programmer for the TMWA server.
User avatar
Cassy
TMW Adviser
TMW Adviser
Posts: 791
Joined: 09 Mar 2013, 09:39
Location: ♥ Fluffyland ♥
Contact:

Re: Equipments to be grouped like other items

Post by Cassy »

Hmm being curious, do arrows work different here (edit: obviously yes, but shouldn't it then be possible to do the same with other equipment)?
They can be equipped and are grouped.
Last edited by Cassy on 19 Jun 2014, 12:06, edited 1 time in total.
Reason: see edit
Main characters:
Lv.94 - Cassy - speedarcher on dark path, bunny-wannabe, would like to ride on a Mouboo once...
Lv.95 - Biqcassy - mage on light path, addicted to her Fluffy Hat, love-hates Fallens, really misses Confused Tree...
Lv.70 - Simca. - dreams of becoming a speedarcher on light path, still has a lot to learn...

Personal development overview | priorities | wiki to-do | wiki profile incl. other characters

[20:24:59] <Cassy> debug npc in crypts!
[20:25:02] <Cassy> just a joke...
[20:25:08] <wushin> DONT DO THAT
[20:25:10] <o11c> !slap Cassy
User avatar
o11c
Grand Knight
Grand Knight
Posts: 2262
Joined: 20 Feb 2011, 21:09
Location: ^ ^

Re: Equipments to be grouped like other items

Post by o11c »

The following numbers exist in the 'type' column of item_db:

Code: Select all

    USE     = 0,    // in eA, healing only              stackable
    _1      = 1,    // unused
    _2      = 2,    // in eA, other usable items        stackable
    JUNK    = 3,    // "useless" items (e.g. quests)    stackable
    WEAPON  = 4,    // all weapons
    ARMOR   = 5,    // all other equipment
    _6      = 6,    // in eA, card                      stackable
    _7      = 7,    // in eA, pet egg
    _8      = 8,    // in eA, pet equipment
    _9      = 9,    // unused
    ARROW   = 10,   // ammo                             stackable
    _11     = 11,   // in eA, delayed use (special script)
Former programmer for the TMWA server.
Post Reply