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,658
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.
  • Varine Varine:
    I have a bunch of community service I have to do, and I have a feeling there will be a lot of snow shoveling involved now
  • The Helper The Helper:
    don't know why people choose to live in that kind of weather :)
  • Varine Varine:
    Well
  • Varine Varine:
    My job is here
  • Varine Varine:
    I was born here man I didn't choose shit
  • Varine Varine:
    And also, I keep moving away and it doesn't get any better. I moved to San Antonio and shit froze there AND we had blackouts
  • tom_mai78101 tom_mai78101:
    I'm back, suffering from severe jet lag.
  • The Helper The Helper:
    Cold is following your ass around Varine - I just dont think I could handle a snowy winter.
  • The Helper The Helper:
    Welcome Back Tom!
  • The Helper The Helper:
    I hear that taking a Melatonin around your normal bedtime can really fix jet lag
  • tom_mai78101 tom_mai78101:
    Yeah, I also heard about that as well. I think I'm good. I'm just lucky it's the weekend so I have some time to readjust.
    +1
  • Varine Varine:
    It was a fucking blizzard today, shoveling was an effort in futility.
  • Varine Varine:
    Melatonin gives me nightmares
  • Varine Varine:
    They had me shoveling out the parking lot for the jail. Fucking pointless, they need a blow.
  • Varine Varine:
    Well they gave me a snow blower but it was too wet to do much with with other than compact everything. Oh well, the cop cars can get into there now when they arrest people I guess
    +1
  • The Helper The Helper:
    I shit you not we are Number one on Google for Banana Bread Recipe
  • jonas jonas:
    xD
    +1
  • The Helper The Helper:
    Need Web Design Contractor that knows Word Press, Woocommerce and Elementor to help with the company that sponsors this site
  • The Helper The Helper:
  • The Helper The Helper:
    I am going to be AFK most of this weekend has I have a friend coming into town for his company christmas party and I am going to be busy with that this weekend.
    +1
  • The Helper The Helper:
    541 Active Users and this number has been pretty steady give or take some. The bots are hammering us.
  • The Helper The Helper:
    I have been posting a bunch of recipes and Google is loving them. I mean OK my shit is good but how does google know LOL!

    The Helper Discord

    Members online

    Affiliates

    Hive Workshop NUON Dome World Editor Tutorials

    Network Sponsors

    Apex Steel Pipe - Buys and sells Steel Pipe.
    Top