Items - Recipes

Astal

New Member
Reaction score
1
hey for some reason when I purchase the recipe it spawns on the ground as the display until I pick it up. It doesnt go to my inventory. I followed the tutorial exactly.
 

free_killing

TH.net Regular
Reaction score
23
I followed your tut almost exactly, and made it leakless.. heres what i came up with:
Trigger:
  • Serathil
    • Events
      • Unit - A unit Acquires an item
    • Conditions
    • Actions
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • ((Hero manipulating item) has an item of type Serathil (Recipe)) Equal to True
          • ((Hero manipulating item) has an item of type Orb of Fire (+5dmg)) Equal to True
          • ((Hero manipulating item) has an item of type Maul of Strength (+1str)) Equal to True
        • Then - Actions
          • Item - Remove (Item carried by (Hero manipulating item) of type Serathil (Recipe))
          • Item - Remove (Item carried by (Hero manipulating item) of type Orb of Fire (+5dmg))
          • Item - Remove (Item carried by (Hero manipulating item) of type Maul of Strength (+1str))
          • Set MyLoc = (Position of (Hero manipulating item))
          • Item - Create Serathil (+1str/+5dmg) at MyLoc
          • Custom script: call RemoveLocation(udg_MyLoc)
          • Set MyLoc = (Position of (Hero manipulating item))
          • Special Effect - Create a special effect at MyLoc using Objects\Spawnmodels\Other\ToonBoom\ToonBoom.mdl
          • Special Effect - Destroy (Last created special effect)
          • Custom script: call RemoveLocation(udg_MyLoc)
          • Hero - Give (Last created item) to (Hero manipulating item)
        • Else - Actions
          • Do nothing

Now im just gonna test it ;)

Edit: It worked, Thanks! :)
 

LoveRPG

Member
Reaction score
6
What is the: ((hero manipulating item) has an item of type Axe) equal to true. what is that of condition? tried boolean did not work it out though:S


Found it^^
 

Dinowc

don't expect anything, prepare for everything
Reaction score
223
it is boolean

it's called "Unit has an item of type"

EDIT: oh shit didn't read everything you said :(
 

-Brainiac-

New Member
Reaction score
7
First to say: Very nice tut! :D

Second to say, wel ask :p:
Why add wait, I mean thought that wait's are always bad. If you could do it any other way (like free_killing did) then you should do it another way right...?

Because when theres a wait it's no longer MUI right?

Regards
 

Joccaren

You can change this now in User CP.
Reaction score
54
hey for some reason when I purchase the recipe it spawns on the ground as the display until I pick it up. It doesnt go to my inventory. I followed the tutorial exactly.

Thats because this system creates the item at the position of the unit (From what I've read in the post below yours). If you don't want to do that, just make these your actions:

Trigger:
  • Actions
    • Item - Remove (Item carried by (Hero Manipulating Item)) of type (X)
    • Item - Remove (Item carried by (Hero Manipulating Item)) of type (Y)
    • Item - Create (Item Z) for (Hero Manipulating Item)

Please note that that was done free-hand and may not be entirely accurate.
 

-Brainiac-

New Member
Reaction score
7
Ok this is my Trigger:
Trigger:
  • The One Ring
    • Events
      • Unit - A unit Acquires an item
    • Conditions
    • Actions
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • ((Hero manipulating item) has an item of type Recipe: The One Ring) Equal to True
          • ((Hero manipulating item) has an item of type Ring of Health) Equal to True
          • ((Hero manipulating item) has an item of type Arcane Ring) Equal to True
          • ((Hero manipulating item) has an item of type Ring of Essence) Equal to True
        • Then - Actions
          • Item - Remove (Item carried by (Hero manipulating item) of type Recipe: The One Ring)
          • Item - Remove (Item carried by (Hero manipulating item) of type Ring of Health)
          • Item - Remove (Item carried by (Hero manipulating item) of type Arcane Ring)
          • Item - Remove (Item carried by (Hero manipulating item) of type Ring of Essence)
          • Set MyLoc = (Position of (Hero manipulating item))
          • Item - Create The One Ring at MyLoc
          • Custom script: call RemoveLocation(udg_MyLoc)
          • Set MyLoc = (Position of (Hero manipulating item))
          • Special Effect - Create a special effect at MyLoc using Objects\Spawnmodels\Other\ToonBoom\ToonBoom.mdl
          • Special Effect - Destroy (Last created special effect)
          • Custom script: call RemoveLocation(udg_MyLoc)
          • Hero - Give (Last created item) to (Hero manipulating item)
        • Else - Actions
          • Do nothing


Just that I don't really understand the part from Orc_Tamer where you make that trigger if you have more items of the same kind.

Because I want 2 Ring's of Essence be used instead of one. Therefor, Do I need to create a second trigger together with this one? or is it based on one trigger?

How to do this?

Regards
 

Komaqtion

You can change this now in User CP.
Reaction score
469
Well, (Sorry Orc_tamer) here's another version if you don't understand that one ;)

Trigger:
  • Recipe
    • Events
      • Unit - A unit Acquires an item
    • Conditions
    • Actions
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • ((Triggering unit) has an item of type Recipe: Shiny Axe of Strength) Equal to True
          • ((Triggering unit) has an item of type Gauntlets of Ogre Strength +3) Equal to True
        • Then - Actions
          • Set Count = 0
          • 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 carried by (Triggering unit) in slot (Integer A))) Equal to Axe
                • Then - Actions
                  • Set Count = (Count + 1)
                  • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    • If - Conditions
                      • Count Equal to 1
                    • Then - Actions
                      • Set Slot = (Integer A)
                    • Else - Actions
                  • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    • If - Conditions
                      • Count Equal to 2
                    • Then - Actions
                      • Item - Remove (Item carried by (Triggering unit) in slot (Integer A))
                      • Item - Remove (Item carried by (Triggering unit) in slot Slot)
                      • Item - Remove (Item carried by (Triggering unit) of type Recipe: Shiny Axe of Strength)
                      • Item - Remove (Item carried by (Triggering unit) of type Gauntlets of Ogre Strength +3)
                      • Set TempPoint = (Position of (Triggering unit))
                      • Special Effect - Create a special effect at TempPoint using Abilities\Spells\Undead\ReplenishHealth\ReplenishHealthCaster.mdl
                      • Special Effect - Destroy (Last created special effect)
                      • Special Effect - Create a special effect at TempPoint using Abilities\Spells\Human\DispelMagic\DispelMagicTarget.mdl
                      • Special Effect - Destroy (Last created special effect)
                      • Custom script: call RemoveLocation(udg_TempPoint)
                      • Hero - Create Shiny Axe of Strength and give it to (Triggering unit)
                    • Else - Actions
                • Else - Actions
        • Else - Actions


And just copy the first "If" to make several of these with different items needed ;)

Btw, this recipe uses well, the recipe itself "Recipe: Shiny Axe of Strength" and "Gauntlets of Ogre Strength +3" as normal ingredients, and "Axe" as the one which is needed 2 of :D
 

-Brainiac-

New Member
Reaction score
7
Well, (Sorry Orc_tamer) here's another version if you don't understand that one ;)

Trigger:
  • Recipe
    • Events
      • Unit - A unit Acquires an item
    • Conditions
    • Actions
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • ((Triggering unit) has an item of type Recipe: Shiny Axe of Strength) Equal to True
          • ((Triggering unit) has an item of type Gauntlets of Ogre Strength +3) Equal to True
        • Then - Actions
          • Set Count = 0
          • 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 carried by (Triggering unit) in slot (Integer A))) Equal to Axe
                • Then - Actions
                  • Set Count = (Count + 1)
                  • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    • If - Conditions
                      • Count Equal to 1
                    • Then - Actions
                      • Set Slot = (Integer A)
                    • Else - Actions
                  • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    • If - Conditions
                      • Count Equal to 2
                    • Then - Actions
                      • Item - Remove (Item carried by (Triggering unit) in slot (Integer A))
                      • Item - Remove (Item carried by (Triggering unit) in slot Slot)
                      • Item - Remove (Item carried by (Triggering unit) of type Recipe: Shiny Axe of Strength)
                      • Item - Remove (Item carried by (Triggering unit) of type Gauntlets of Ogre Strength +3)
                      • Set TempPoint = (Position of (Triggering unit))
                      • Special Effect - Create a special effect at TempPoint using Abilities\Spells\Undead\ReplenishHealth\ReplenishHealthCaster.mdl
                      • Special Effect - Destroy (Last created special effect)
                      • Special Effect - Create a special effect at TempPoint using Abilities\Spells\Human\DispelMagic\DispelMagicTarget.mdl
                      • Special Effect - Destroy (Last created special effect)
                      • Custom script: call RemoveLocation(udg_TempPoint)
                      • Hero - Create Shiny Axe of Strength and give it to (Triggering unit)
                    • Else - Actions
                • Else - Actions
        • Else - Actions


And just copy the first "If" to make several of these with different items needed ;)

Btw, this recipe uses well, the recipe itself "Recipe: Shiny Axe of Strength" and "Gauntlets of Ogre Strength +3" as normal ingredients, and "Axe" as the one which is needed 2 of :D

Ok, will post my trigger if I got this right, Count = Variable(Integer)? Or...?
And why integer A from 1 to 6?
 

-Brainiac-

New Member
Reaction score
7
Ah ok, hehe could have known that :p

Ok this is what I made xd

Trigger:
  • The One Ring
    • Events
      • Unit - A unit Acquires an item
    • Conditions
    • Actions
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • ((Hero manipulating item) has an item of type Recipe: The One Ring) Equal to True
          • ((Hero manipulating item) has an item of type Ring of Health) Equal to True
          • ((Hero manipulating item) has an item of type Arcane Ring) Equal to True
        • Then - Actions
          • Set Count = 0
          • 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 carried by (Triggering unit) in slot (Integer A))) Equal to Ring of Essence
                • Then - Actions
                  • Set Count = (Count + 1)
                  • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    • If - Conditions
                      • Count Equal to 1
                    • Then - Actions
                      • Set Slot = (Integer A)
                    • Else - Actions
                  • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    • If - Conditions
                      • Count Equal to 2
                    • Then - Actions
                      • Item - Remove (Item carried by (Triggering unit) in slot (Integer A))
                      • Item - Remove (Item carried by (Triggering unit) in slot Slot)
                      • Item - Remove (Item carried by (Triggering unit) of type Recipe: The One Ring)
                      • Item - Remove (Item carried by (Hero manipulating item) of type Ring of Health)
                      • Item - Remove (Item carried by (Hero manipulating item) of type Arcane Ring)
                      • Set TempPoint = (Position of (Triggering unit))
                      • Special Effect - Create a special effect at TempPoint using Objects\Spawnmodels\Other\ToonBoom\ToonBoom.mdl
                      • Special Effect - Destroy (Last created special effect)
                      • Custom script: call RemoveLocation(udg_TempPoint)
                      • Hero - Create The One Ring and give it to (Triggering unit)
                    • Else - Actions
                • Else - Actions
        • Else - Actions


Oh almost forgot, (might be dumb question but)

I based my shops on the Human Acrance Vault, and I'm trying to get rid of the 'select user' at the bottemright corner. But can't figure that out... (Or do I just have to base it on another shop?)
Just now I can only sell 11 instead of 12 items wich is very irritating :p
 

Joccaren

You can change this now in User CP.
Reaction score
54
>Oh almost forgot, (might be dumb question but)
I based my shops on the Human Acrance Vault, and I'm trying to get rid of the 'select user' at the bottemright corner. But can't figure that out... (Or do I just have to base it on another shop?)
Just now I can only sell 11 instead of 12 items wich is very irritating :p

I had this problem as well, forgot how I fixed it though. Search the forums, you should be able to find it somewhere there.
 

-Brainiac-

New Member
Reaction score
7
I had this problem as well, forgot how I fixed it though. Search the forums, you should be able to find it somewhere there.

I just made multiple shops... Works to but little silly to make another shop with the same catogary for one item.. Wich brings you to the point that you should make more items.. :(

Anyway its fixed :p
 

The Helper

Necromancy Power over 9000
Staff member
Reaction score
1,701
The initial links in this post are broken from the forum switch - anyway to find out if those threads still exist and update this?
 
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

      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