Extended Inventory System Problems

ShadowInTheD

Active Member
Reaction score
12
Ok.. So I have this Extended Inventory System that I made myself (in GUI, as you will see). It has 21 items (An "Inventory (6)" and "Equipment(15)"). Most of it works, there're just a few problems with nulling, and exiting loops. So, what I did was, I used 4 variables (1 for storing item types for all players, one for storing amount of "Equipment" items for all players, one for storing amount of "Inventory" items for heroes, and a boolean to try to exit a loop (didn't work well). To "Equip/Unequip" items you have to click and use it.

Problems: Sometimes, when item in "Inventory" gets clicked, it never transfers to "Equipment". No values are getting nulled. Whenever I drop an item from the inventory, or equip it, that spot is supposed to get nulled, but it doesn't. Similarly, unequipped items are supposed to be nulled for their spot too, but they aren't. A third problem is that, when exitting the loop, say I have 2 items that are the exact same. When I click on the first one (item in a slot in front of the second one) it works fine, the loop exits, and it only uses one item, but when I click the second one, they both go.

Triggers:

Trigger:
  • Dropping Items
    • Events
      • Unit - A unit Loses an item
    • Conditions
    • Actions
      • Set InventoryItemCount[(Player number of (Triggering player))] = (InventoryItemCount[(Player number of (Triggering player))] - 1)
      • Custom script: set udg_ItemSlotNumber[((GetPlayerId(GetTriggerPlayer())-1)*22) + udg_InventoryItemCount[GetPlayerId(GetTriggerPlayer())]] = 0


Trigger:
  • Aquiring
    • Events
      • Unit - A unit Acquires an item
    • Conditions
    • Actions
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • Or - Any (Conditions) are true
            • Conditions
              • (Item-type of (Item carried by (Triggering unit) in slot 1)) Equal to Equipment Page 1
              • (Item-type of (Item carried by (Triggering unit) in slot 1)) Equal to Equipment Page 2
              • (Item-type of (Item carried by (Triggering unit) in slot 1)) Equal to Equipment Page 3
        • Then - Actions
          • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            • If - Conditions
              • InventoryItemCount[(Player number of (Triggering player))] Greater than or equal to 6
            • Then - Actions
              • Trigger - Turn off Dropping Items <gen>
              • Hero - Drop (Item being manipulated) from (Triggering unit)
              • Trigger - Turn on Dropping Items <gen>
            • Else - Actions
              • Set ItemSlotNumber[(((((Player number of (Triggering player)) - 1) x 22) + InventoryItemCount[(Player number of (Triggering player))]) + 0)] = (Item-type of (Item being manipulated))
              • Trigger - Turn off Dropping Items <gen>
              • Item - Remove (Item carried by (Triggering unit) of type (Item-type of (Item being manipulated)))
              • Trigger - Turn on Dropping Items <gen>
              • Set InventoryItemCount[(Player number of (Triggering player))] = (InventoryItemCount[((Player number of (Triggering player)) + 0)] + 1)
        • Else - Actions
          • Set InventoryItemCount[(Player number of (Triggering player))] = (InventoryItemCount[((Player number of (Triggering player)) + 0)] + 1)
          • Set ItemSlotNumber[(((((Player number of (Triggering player)) - 1) x 22) + InventoryItemCount[(Player number of (Triggering player))]) + 0)] = (Item-type of (Item being manipulated))


Trigger:
  • Storing
    • Events
      • Unit - A unit Uses an item
    • Conditions
    • Actions
      • Set HeroLoc[(Player number of (Triggering player))] = (Position of (Triggering unit))
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • Equipment Page 1 Not equal to (Item-type of (Item being manipulated))
          • Equipment Page 2 Not equal to (Item-type of (Item being manipulated))
          • Equipment Page 3 Not equal to (Item-type of (Item being manipulated))
        • Then - Actions
          • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            • If - Conditions
              • InventoryItemCount[(Player number of (Triggering player))] Greater than or equal to 6
            • Then - Actions
              • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                • If - Conditions
                  • Or - Any (Conditions) are true
                    • Conditions
                      • (Item-type of (Item carried by (Triggering unit) in slot 1)) Equal to Equipment Page 1
                      • (Item-type of (Item carried by (Triggering unit) in slot 1)) Equal to Equipment Page 2
                      • (Item-type of (Item carried by (Triggering unit) in slot 1)) Equal to Equipment Page 3
                • Then - Actions
                  • Trigger - Turn off Dropping Items <gen>
                  • Hero - Drop (Item being manipulated) from (Triggering unit)
                  • Trigger - Turn on Dropping Items <gen>
                • Else - Actions
            • Else - Actions
              • For each (Integer A) from 7 to 11, do (Actions)
                • Loop - Actions
                  • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    • If - Conditions
                      • ItemCheckzor[(Player number of (Triggering player))] Equal to False
                      • (Item-type of (Item carried by (Triggering unit) in slot 1)) Equal to Equipment Page 1
                      • (Item-type of (Item being manipulated)) Equal to ItemSlotNumber[((Integer A) + (((Player number of (Triggering player)) - 1) x 22))]
                    • Then - Actions
                      • Set ItemCheckzor[(Player number of (Triggering player))] = True
                      • Custom script: set udg_ItemSlotNumber[((GetPlayerId(GetTriggerPlayer())-1)*22) + GetForLoopIndexA()] = 0
                    • Else - Actions
              • Set ItemCheckzor[(Player number of (Triggering player))] = False
              • For each (Integer A) from 12 to 16, do (Actions)
                • Loop - Actions
                  • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    • If - Conditions
                      • ItemCheckzor[(Player number of (Triggering player))] Equal to False
                      • (Item-type of (Item carried by (Triggering unit) in slot 1)) Equal to Equipment Page 2
                      • (Item-type of (Item being manipulated)) Equal to ItemSlotNumber[((Integer A) + (((Player number of (Triggering player)) - 1) x 22))]
                    • Then - Actions
                      • Set ItemCheckzor[(Player number of (Triggering player))] = True
                      • Custom script: set udg_ItemSlotNumber[((GetPlayerId(GetTriggerPlayer())-1)*22) + GetForLoopIndexA()] = 0
                    • Else - Actions
              • Set ItemCheckzor[(Player number of (Triggering player))] = False
              • For each (Integer A) from 17 to 21, do (Actions)
                • Loop - Actions
                  • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    • If - Conditions
                      • ItemCheckzor[(Player number of (Triggering player))] Equal to False
                      • (Item-type of (Item carried by (Triggering unit) in slot 1)) Equal to Equipment Page 3
                      • (Item-type of (Item being manipulated)) Equal to ItemSlotNumber[((Integer A) + (((Player number of (Triggering player)) - 1) x 22))]
                    • Then - Actions
                      • Set ItemCheckzor[(Player number of (Triggering player))] = True
                      • Custom script: set udg_ItemSlotNumber[((GetPlayerId(GetTriggerPlayer())-1)*22) + GetForLoopIndexA()] = 0
                    • Else - Actions
              • Set ItemCheckzor[(Player number of (Triggering player))] = False
              • Set ItemSlotNumber[((((Player number of (Triggering player)) - 1) x 22) + InventoryItemCount[(Player number of (Triggering player))])] = (Item-type of (Item being manipulated))
              • Trigger - Turn off Dropping Items <gen>
              • Item - Remove (Item carried by (Triggering unit) of type (Item-type of (Item being manipulated)))
              • Trigger - Turn on Dropping Items <gen>
              • Set InventoryItemCount[(Player number of (Triggering player))] = (InventoryItemCount[(Player number of (Triggering player))] + 1)
          • For each (Integer A) from 1 to 6, do (Actions)
            • Loop - Actions
              • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                • If - Conditions
                  • (Item-type of (Item being manipulated)) Equal to ItemSlotNumber[((Integer A) + (((Player number of (Triggering player)) - 1) x 22))]
                • Then - Actions
                  • Set ItemSlotNumber[((((Player number of (Triggering player)) - 1) x 22) + (PlayerItemCount[(Player number of (Triggering player))] + 7))] = (Item-type of (Item being manipulated))
                  • Custom script: set udg_ItemSlotNumber[((GetPlayerId(GetTriggerPlayer())-1)*22) + GetForLoopIndexA()] = 0
                  • Set PlayerItemCount[(Player number of (Triggering player))] = ((Player number of (Triggering player)) + 1)
                  • Trigger - Turn off Dropping Items <gen>
                  • Item - Remove (Item carried by (Triggering unit) of type (Item-type of (Item being manipulated)))
                  • Trigger - Turn on Dropping Items <gen>
                • Else - Actions
        • Else - Actions
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Item-type of (Item being manipulated)) Equal to Equipment Page 1
        • Then - Actions
          • Item - Make (Item carried by (Triggering unit) in slot 1) Droppable
          • Trigger - Turn off Dropping Items <gen>
          • Item - Remove (Item carried by (Triggering unit) in slot 1)
          • Item - Remove (Item carried by (Triggering unit) in slot 2)
          • Item - Remove (Item carried by (Triggering unit) in slot 3)
          • Item - Remove (Item carried by (Triggering unit) in slot 4)
          • Item - Remove (Item carried by (Triggering unit) in slot 5)
          • Item - Remove (Item carried by (Triggering unit) in slot 6)
          • Trigger - Turn on Dropping Items <gen>
          • Trigger - Turn off Aquiring <gen>
          • Item - Create Equipment Page 2 at HeroLoc[(Player number of (Triggering player))]
          • Hero - Give (Last created item) to (Triggering unit)
          • Item - Make (Item carried by (Triggering unit) in slot 1) Undroppable
          • For each (Integer A) from 7 to 11, do (Actions)
            • Loop - Actions
              • Item - Create ItemSlotNumber[((Integer A) + (((Player number of (Triggering player)) - 1) x 22))] at HeroLoc[(Player number of (Triggering player))]
              • Hero - Give (Last created item) to (Triggering unit)
              • Item - Make (Last created item) Undroppable
        • Else - Actions
      • Trigger - Turn on Aquiring <gen>
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Item-type of (Item being manipulated)) Equal to Equipment Page 2
        • Then - Actions
          • Item - Make (Item carried by (Triggering unit) in slot 1) Droppable
          • Trigger - Turn off Dropping Items <gen>
          • Item - Remove (Item carried by (Triggering unit) in slot 1)
          • Item - Remove (Item carried by (Triggering unit) in slot 2)
          • Item - Remove (Item carried by (Triggering unit) in slot 3)
          • Item - Remove (Item carried by (Triggering unit) in slot 4)
          • Item - Remove (Item carried by (Triggering unit) in slot 5)
          • Item - Remove (Item carried by (Triggering unit) in slot 6)
          • Trigger - Turn on Dropping Items <gen>
          • Trigger - Turn off Aquiring <gen>
          • Item - Create Equipment Page 3 at HeroLoc[(Player number of (Triggering player))]
          • Hero - Give (Last created item) to (Triggering unit)
          • Item - Make (Item carried by (Triggering unit) in slot 1) Undroppable
          • For each (Integer A) from 12 to 16, do (Actions)
            • Loop - Actions
              • Item - Create ItemSlotNumber[((Integer A) + (((Player number of (Triggering player)) - 1) x 22))] at HeroLoc[(Player number of (Triggering player))]
              • Hero - Give (Last created item) to (Triggering unit)
              • Item - Make (Last created item) Undroppable
        • Else - Actions
      • Trigger - Turn on Aquiring <gen>
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Item-type of (Item being manipulated)) Equal to Equipment Page 3
        • Then - Actions
          • Item - Make (Item carried by (Triggering unit) in slot 1) Droppable
          • Trigger - Turn off Dropping Items <gen>
          • Item - Remove (Item carried by (Triggering unit) in slot 1)
          • Item - Remove (Item carried by (Triggering unit) in slot 2)
          • Item - Remove (Item carried by (Triggering unit) in slot 3)
          • Item - Remove (Item carried by (Triggering unit) in slot 4)
          • Item - Remove (Item carried by (Triggering unit) in slot 5)
          • Item - Remove (Item carried by (Triggering unit) in slot 6)
          • Trigger - Turn on Dropping Items <gen>
          • Trigger - Turn off Aquiring <gen>
          • Item - Create Equipment Page 1 at HeroLoc[(Player number of (Triggering player))]
          • Hero - Give (Last created item) to (Triggering unit)
          • Item - Make (Item carried by (Triggering unit) in slot 1) Undroppable
          • For each (Integer A) from 17 to 21, do (Actions)
            • Loop - Actions
              • Item - Create ItemSlotNumber[(((Integer A) + 1) + (((Player number of (Triggering player)) - 1) x 22))] at HeroLoc[(Player number of (Triggering player))]
              • Hero - Give (Last created item) to (Triggering unit)
              • Item - Make (Last created item) Undroppable
        • Else - Actions
      • Trigger - Turn on Aquiring <gen>
      • Custom script: call RemoveLocation(udg_HeroLoc[GetPlayerId(GetTriggerPlayer())])


Trigger:
  • Creating
    • Events
      • Unit - A unit Begins channeling an ability
    • Conditions
    • Actions
      • Set HeroLoc[(Player number of (Triggering player))] = (Position of (Triggering unit))
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Ability being cast) Equal to Equipment
        • Then - Actions
          • Item - Make (Item carried by (Triggering unit) in slot 1) Droppable
          • Trigger - Turn off Dropping Items <gen>
          • Item - Remove (Item carried by (Triggering unit) in slot 1)
          • Item - Remove (Item carried by (Triggering unit) in slot 2)
          • Item - Remove (Item carried by (Triggering unit) in slot 3)
          • Item - Remove (Item carried by (Triggering unit) in slot 4)
          • Item - Remove (Item carried by (Triggering unit) in slot 5)
          • Item - Remove (Item carried by (Triggering unit) in slot 6)
          • Trigger - Turn on Dropping Items <gen>
          • Trigger - Turn off Aquiring <gen>
          • Item - Create Equipment Page 2 at HeroLoc[(Player number of (Triggering player))]
          • Hero - Give (Last created item) to (Triggering unit)
          • Item - Make (Item carried by (Triggering unit) in slot 1) Undroppable
          • For each (Integer A) from 7 to 11, do (Actions)
            • Loop - Actions
              • Item - Create ItemSlotNumber[((Integer A) + ((Player number of (Triggering player)) - 1))] at HeroLoc[(Player number of (Triggering player))]
              • Hero - Give (Last created item) to (Triggering unit)
              • Item - Make (Last created item) Undroppable
        • Else - Actions
      • Trigger - Turn on Aquiring <gen>
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Ability being cast) Equal to Inventory
        • Then - Actions
          • Item - Make (Item carried by (Triggering unit) in slot 1) Droppable
          • Trigger - Turn off Dropping Items <gen>
          • Item - Remove (Item carried by (Triggering unit) in slot 1)
          • Item - Remove (Item carried by (Triggering unit) in slot 2)
          • Item - Remove (Item carried by (Triggering unit) in slot 3)
          • Item - Remove (Item carried by (Triggering unit) in slot 4)
          • Item - Remove (Item carried by (Triggering unit) in slot 5)
          • Item - Remove (Item carried by (Triggering unit) in slot 6)
          • Trigger - Turn on Dropping Items <gen>
          • Trigger - Turn off Aquiring <gen>
          • For each (Integer A) from 1 to 6, do (Actions)
            • Loop - Actions
              • Item - Create ItemSlotNumber[(((Integer A) + 0) + (((Player number of (Triggering player)) - 1) x 22))] at HeroLoc[(Player number of (Triggering player))]
              • Hero - Give (Last created item) to (Triggering unit)
        • Else - Actions
      • Trigger - Turn on Aquiring <gen>
      • Custom script: call RemoveLocation(udg_HeroLoc[GetPlayerId(GetTriggerPlayer())])


Thanks for any help ><
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • Monovertex Monovertex:
    How are you all? :D
    +1
  • Ghan Ghan:
    Howdy
  • Ghan Ghan:
    Still lurking
    +3
  • The Helper The Helper:
    I am great and it is fantastic to see you my friend!
    +1
  • The Helper The Helper:
    If you are new to the site please check out the Recipe and Food Forum https://www.thehelper.net/forums/recipes-and-food.220/
  • Monovertex Monovertex:
    How come you're so into recipes lately? Never saw this much interest in this topic in the old days of TH.net
  • Monovertex Monovertex:
    Hmm, how do I change my signature?
  • tom_mai78101 tom_mai78101:
    Signatures can be edit in your account profile. As for the old stuffs, I'm thinking it's because Blizzard is now under Microsoft, and because of Microsoft Xbox going the way it is, it's dreadful.
  • The Helper The Helper:
    I am not big on the recipes I am just promoting them - I use the site as a practice place promoting stuff
    +2
  • Monovertex Monovertex:
    @tom_mai78101 I must be blind. If I go on my profile I don't see any area to edit the signature; If I go to account details (settings) I don't see any signature area either.
  • The Helper The Helper:
    You can get there if you click the bell icon (alerts) and choose preferences from the bottom, signature will be in the menu on the left there https://www.thehelper.net/account/preferences
  • The Helper The Helper:
    I think I need to split the Sci/Tech news forum into 2 one for Science and one for Tech but I am hating all the moving of posts I would have to do
  • The Helper The Helper:
    What is up Old Mountain Shadow?
  • The Helper The Helper:
    Happy Thursday!
    +1
  • Varine Varine:
    Crazy how much 3d printing has come in the last few years. Sad that it's not as easily modifiable though
  • Varine Varine:
    I bought an Ender 3 during the pandemic and tinkered with it all the time. Just bought a Sovol, not as easy. I'm trying to make it use a different nozzle because I have a fuck ton of Volcanos, and they use what is basically a modified volcano that is just a smidge longer, and almost every part on this thing needs to be redone to make it work
  • Varine Varine:
    Luckily I have a 3d printer for that, I guess. But it's ridiculous. The regular volcanos are 21mm, these Sovol versions are about 23.5mm
  • Varine Varine:
    So, 2.5mm longer. But the thing that measures the bed is about 1.5mm above the nozzle, so if I swap it with a volcano then I'm 1mm behind it. So cool, new bracket to swap that, but THEN the fan shroud to direct air at the part is ALSO going to be .5mm to low, and so I need to redo that, but by doing that it is a little bit off where it should be blowing and it's throwing it at the heating block instead of the part, and fuck man
  • Varine Varine:
    I didn't realize they designed this entire thing to NOT be modded. I would have just got a fucking Bambu if I knew that, the whole point was I could fuck with this. And no one else makes shit for Sovol so I have to go through them, and they have... interesting pricing models. So I have a new extruder altogether that I'm taking apart and going to just design a whole new one to use my nozzles. Dumb design.
  • Varine Varine:
    Can't just buy a new heatblock, you need to get a whole hotend - so block, heater cartridge, thermistor, heatbreak, and nozzle. And they put this fucking paste in there so I can't take the thermistor or cartridge out with any ease, that's 30 dollars. Or you can get the whole extrudor with the direct driver AND that heatblock for like 50, but you still can't get any of it to come apart
  • Varine Varine:
    Partsbuilt has individual parts I found but they're expensive. I think I can get bits swapped around and make this work with generic shit though
  • Ghan Ghan:
    Heard Houston got hit pretty bad by storms last night. Hope all is well with TH.

      The Helper Discord

      Members online

      No members online now.

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top