23 May, 2014, Chaos wrote in the 1st comment:
Votes: 0
Reportedly Everquest implemented bind-on-pickup equipment in 1999. Anybody recall any MUDs doing it before then?

(Obviously we had drop prevention of various forms forever, but I'm looking for something used with the same sort of intent as BOP gear on modern MMOs.)
23 May, 2014, Lyanic wrote in the 2nd comment:
Votes: 0
Yes. I recall quite a few MUDs in the 90s that had auto-claim on pickup. It's close to the same thing, though some of those same MUDs had a 'gift' or 'declaim' ability, which defeated the point of the binding. The level based MUDs would then sometimes tie equipment level restrictions in, where you wouldn't be able to give it to someone else who didn't meet the level requirement. It was a stopgap solution at best.
23 May, 2014, KaVir wrote in the 3rd comment:
Votes: 0
Lyanic said:
Yes. I recall quite a few MUDs in the 90s that had auto-claim on pickup. It's close to the same thing, though some of those same MUDs had a 'gift' or 'declaim' ability, which defeated the point of the binding.

I implemented 'claim' in GodWars back in 1995, and I'm not aware of any earlier MUDs which offered the same feature, although obviously it propagated to the various GodWars derivatives. The point of the feature wasn't to permanently bind gear to the owner, it was simply to prevent your best gear being looted.

Syntax: claim <object>
Syntax: call <object>
Syntax: call all
Syntax: gift <object> <player>
Syntax: locate

By claiming an object (which costs 500 exp), that object becomes your
personal property. Using the 'locate' command you can find what items
currently belong to you and where they are in the mud. If you are not
carrying the item, you can get it back by calling it with the 'call'
command. You can change the ownership of your own items by use of the
'gift' command.


There were also pay-for-perks MUDs which locked "donation" gear to the user, I believe that would have been as early as 1994-1995. However that didn't apply to regular gear that you picked up.

If there were other MUDs that locked gear when you picked it up, they may have been discussed on MUD-DEV.
23 May, 2014, Scandum wrote in the 4th comment:
Votes: 0
Mortal Realms added non-reversible bind on pickup in 1995, possibly as early as 1994, a feature known as auto engrave.

MR had a fairly advanced one-time area-based quest system, and bind on pickup implementation might be a logical / natural consequence.

MR also implemented a griffon travel system around that time, virtually identical to that of WoW, though transportation was instantaneously.

https://groups.google.com/forum/message/...
23 May, 2014, Ssolvarain wrote in the 5th comment:
Votes: 0
I could be wrong, but I think the "nodrop" object flag is a stock feature in ROM. So… probably goes back to merc or diku. Maybe :P


Like to point out that MUDs are also the origin of the term and use of "procs".
As well as mobs. People in MMO still call them mobs lol
23 May, 2014, Hades_Kane wrote in the 6th comment:
Votes: 0
Our relics on End of Time, once put on a character, never drop, can't be stolen, auctioned, sold, given away etc., although the player can simply choose to "drop" them and they dissolve.

We also have a "stuck" flag that does exactly the same thing that can be flagged on any object. Combine nogive/nodrop and the nouncurse flag on the item, and it is effectively a permanent item the player can't get rid of without immortal intervention.

I don't know if either of those are what you have in mind, though.

We also have "key items" that are normally quest components, such as "a letter from Nileni Ronso" that is given to you and once you present it to the proper mob, he takes the letter and the quest starts… or "a map of the Tomb of the Unknown King" and when anywhere in this dungeon you either look or "use" the item (I can't recall which way I implemented that particular item) and it presents a visual map of the dungeon with your location. The player can look or attempt to use these items, but they can't be interacted with in any other type of way. Some progs might trigger automatically based on having the key item, but a lot of them are setup to trigger if the player attempts to use the key item. There is also a completely separate inventory list for this, and it doesn't count toward item count or weight. Some of the items are also like "tools" that might have various uses throughout the game, kind of like the items/tools in the Zelda games. But, these are effectively binded to the character, unless they are specifically intended to remove at any point. But again, I don't think this is specifically what you were thinking of.
23 May, 2014, quixadhal wrote in the 7th comment:
Votes: 0
NO_DROP isn't the same as BOP.

The NO_DROP flag was a way to (mainly) implement the classic D&D cursed objects. You pick up the shiny broadsword and discover it's a -4 broadsword of fumbling. You can't drop it!

Bind-on-pickup is different. You are free to drop such things, or sell them, or junk them, or put them in your bank… but other players can't use them, and in some cases can't even pick them up. It's essentially a NO_GET/NO_USE flag which exempts the object's owner.
24 May, 2014, Ssolvarain wrote in the 8th comment:
Votes: 0
quixadhal said:
NO_DROP isn't the same as BOP.


It's funcionally exactly the same, actually. You pick it up and can't drop it. Used in conjunction with the nogive flag… there you go.

The curse flag is, oddly enough, the thing used to emulate a cursed object. It means you can't remove an object once worn… you can drop it just fine as long as you don't actually wear it. Go figure.



Arguing nonexistent semantics is just silly. There are differences between MMOs and muds, specifically with how objects work. I'd expect an intelligent person to base their point of view with the adjustments in mind.
24 May, 2014, Scandum wrote in the 9th comment:
Votes: 0
You generally can get rid of NO_DROP items by leaving it in your corpse when you die.

The Mortal Realms implementation was identical to modern MMO implementations. The earliest primary source I can find is the code release in 1999.
24 May, 2014, quixadhal wrote in the 10th comment:
Votes: 0
Ssolvarain said:
quixadhal said:
NO_DROP isn't the same as BOP.

It's funcionally exactly the same, actually. You pick it up and can't drop it. Used in conjunction with the nogive flag… there you go.

It usually helps if you actually READ what people post before you try to refute them.


The OP was asking about "bind on pickup", and clearly was talking about the way it was implemented in MMO's which is 100% NOT THE SAME as what you're describing. A bound item is NOT stuck to your character. It CAN be dropped. It CAN be put in your bank. It simply cannot be USED by anyone else. Whether it can be traded or picked up by anyone else varies from one game to the next (usually not).
24 May, 2014, Lyanic wrote in the 11th comment:
Votes: 0
I still say my auto-claim example is the closest thing to BOP that pre-dated EQ. I'm also not sure what KaVir was trying to say - it didn't invalidate my statement. Auto-claim is slightly different from the default claim, and also differs contextually depending upon whether there is an in-game option to undo a claim.
25 May, 2014, KaVir wrote in the 12th comment:
Votes: 0
Lyanic said:
I'm also not sure what KaVir was trying to say - it didn't invalidate my statement.

Elaboration. I narrowed it down from the 90s (the same decade as EverQuest) to a specific year, named the MUD in which the claim feature originated, clarified that the 'gift' command was part of the original design, and explained why it didn't defeat the point of the feature.
25 May, 2014, Lyanic wrote in the 13th comment:
Votes: 0
KaVir said:
Lyanic said:
I'm also not sure what KaVir was trying to say - it didn't invalidate my statement.

Elaboration. I narrowed it down from the 90s (the same decade as EverQuest) to a specific year, named the MUD in which the claim feature originated, clarified that the 'gift' command was part of the original design, and explained why it didn't defeat the point of the feature.

That's fine, but I was never commenting on 'gift' defeating the point of 'claim' as you designed it. I was commenting on 'gift' (or anything of a similar nature) defeating the point of 'auto-claim' (or claim on pick-up, if you will) as a stand-in for BOP in pre-EQ days (barely, late 90s).
25 May, 2014, Scandum wrote in the 14th comment:
Votes: 0
So auto-claim was a feature of Godwars derivatives? That would push the date to after 1997, possibly after 1999.
25 May, 2014, Lyanic wrote in the 15th comment:
Votes: 0
Scandum said:
So auto-claim was a feature of Godwars derivatives? That would push the date to after 1997, possibly after 1999.

It was in Godwars derived or inspired games in the late 90s, yes. I recall playing a few games that had it. I started my game in 2001, originally from a God Wars derived codebase, and it had the auto-claim feature already. I also know that the source of my game hadn't been modified in a couple years prior to when I started development on it.
26 May, 2014, Tijer wrote in the 16th comment:
Votes: 0
GodWars didnt have autoclaim apart from items that the player created via the quest command and/or object creation spells. You had to claim the rest of the items first.

I think the original post is regarding items that are claimed when you pick them up… My MUD currently has its items set like this… But i know it wasnt the first to do so.
26 May, 2014, Lyanic wrote in the 17th comment:
Votes: 0
Tijer said:
GodWars didnt have autoclaim apart from items that the player created via the quest command and/or object creation spells. You had to claim the rest of the items first.

I think the original post is regarding items that are claimed when you pick them up… My MUD currently has its items set like this… But i know it wasnt the first to do so.

Oh, nevermind then. Ignore everything I said. Obviously I made it all up.

I'm also starting to think there are some serious reading comprehension issues with people on this thread…
26 May, 2014, Tijer wrote in the 18th comment:
Votes: 0
Lyanic said:
Tijer said:
GodWars didnt have autoclaim apart from items that the player created via the quest command and/or object creation spells. You had to claim the rest of the items first.

I think the original post is regarding items that are claimed when you pick them up… My MUD currently has its items set like this… But i know it wasnt the first to do so.

Oh, nevermind then. Ignore everything I said. Obviously I made it all up.

I'm also starting to think there are some serious reading comprehension issues with people on this thread…


TBH Lyanic… i totally missed your post.. sorry about that.. you said the exact same thing as i said.. guess i should read every post before posting :P
26 May, 2014, Lyanic wrote in the 19th comment:
Votes: 0
Tijer said:
TBH Lyanic… i totally missed your post.. sorry about that.. you said the exact same thing as i said.. guess i should read every post before posting :P

Actually, it seemed as if I said the exact opposite thing you said. This thread is starting to make me question my own sanity.
26 May, 2014, quixadhal wrote in the 20th comment:
Votes: 0
Only THIS thread? I'll have to try harder!
0.0/20