I've had a few ideas on how to limit player ability to help encourage group play in some situations. The one that felt most favorable to me was a spell gem system. Classes will learn numerous spells, but they can only use 10 at a time.Â
Â
I have tried implementing this by adding a "gem" equipment type. Im adding a condition to the related spell that requires it to be equipped to cast. What ive run into is that I can have multiple slots for a single type of equipment. So the next thought is naturally to make Gem1, Gem2, Gem3, and I could. But then id have to define how many of each type of spell a player can use, and thats something i dont want to do. Or id have to make 10 different items for each gems spell, not practical.Â
Here I have two gems on, but each is restricted to being gem 1 type or gem 2 type.Â
So Ive been messing with the server config file, it seems that doing this:
  "Slots": [
   "Helmet",
   "Armor",
   "Weapon",
   "Shield",
   "Boots",
   "Gem",
   "Gem"
  ],
Â
and Ive also been editing the character window equipment stuff, but even duplicating the Equipment 5, just moves the first equipment 5 to a new location.
Â
doesn't work. It still only allows 1 "Gem" slot and 1 gem equipped at a time.Â
Â
How can I equip multiple items of the same equipment type?
-Sorry if this has already been answered. I did not see it when searching.
Question
Volrtaw
The journey thus far:
I've had a few ideas on how to limit player ability to help encourage group play in some situations. The one that felt most favorable to me was a spell gem system. Classes will learn numerous spells, but they can only use 10 at a time.Â
Â
I have tried implementing this by adding a "gem" equipment type. Im adding a condition to the related spell that requires it to be equipped to cast. What ive run into is that I can have multiple slots for a single type of equipment. So the next thought is naturally to make Gem1, Gem2, Gem3, and I could. But then id have to define how many of each type of spell a player can use, and thats something i dont want to do. Or id have to make 10 different items for each gems spell, not practical.Â
Here I have two gems on, but each is restricted to being gem 1 type or gem 2 type.Â
So Ive been messing with the server config file, it seems that doing this:
  "Slots": [
   "Helmet",
   "Armor",
   "Weapon",
   "Shield",
   "Boots",
   "Gem",
   "Gem"
  ],
Â
and Ive also been editing the character window equipment stuff, but even duplicating the Equipment 5, just moves the first equipment 5 to a new location.
Â
doesn't work. It still only allows 1 "Gem" slot and 1 gem equipped at a time.Â
Â
How can I equip multiple items of the same equipment type?
-Sorry if this has already been answered. I did not see it when searching.
Link to comment
Share on other sites
4 answers to this question
Recommended Posts