Help with Selling Items

Stormahawk

New Member
Reaction score
2
I have an All Random trigger that wont let me sell items. To counter it, I want to write a separate trigger in order to sell items. So far, my attempts have been epic fail. Does anyone know a way to write a trigger so if a hero clicks on item shop to sell item, item is sold?
 

ManyTimes

I'm so lonesome I could cry...
Reaction score
293
What? :)
Do you have a trigger so far? Show us it, the "All random trigger"...

How do you want to sell your items, not by letting the player click/drag the item upon a shop that sells the items? Or you want to sell items, but you cant get the building/shop to take the items you want, they just end up at ground? :)
 

Stormahawk

New Member
Reaction score
2
Code:
ItemSell
    Events
        Unit - A unit owned by Player 1 (Red) Pawns an item (to shop)
        Unit - A unit owned by Player 2 (Blue) Pawns an item (to shop)
        Unit - A unit owned by Player 3 (Teal) Pawns an item (to shop)
        Unit - A unit owned by Player 4 (Purple) Pawns an item (to shop)
        Unit - A unit owned by Player 5 (Yellow) Pawns an item (to shop)
        Unit - A unit owned by Player 6 (Orange) Pawns an item (to shop)
        Unit - A unit owned by Player 7 (Green) Pawns an item (to shop)
        Unit - A unit owned by Player 8 (Pink) Pawns an item (to shop)
        Unit - A unit owned by Player 9 (Gray) Pawns an item (to shop)
        Unit - A unit owned by Player 10 (Light Blue) Pawns an item (to shop)
        Unit - A unit owned by Player 11 (Dark Green) Pawns an item (to shop)
        Unit - A unit owned by Player 12 (Brown) Pawns an item (to shop)
    Conditions
    Actions
        Item - Make (Target item of issued order) Pawnable

Here is how it looks so far. I want it so if you click right click the item on the shop to sell, it will sell. When I try to sell items, I can click on the shop and everything, but nothing happens at all. No error messages or anything. Just nothing.
 

Dirac

22710180
Reaction score
147
If the iten cant be PAWNED then there is no event, because the item is not pawned at all.

To prevent the unit from dropping the item create a trigger where
Event
A unit drops an item
Action
Give last droped item to hero manipulating item
 

lindenkron

You can change this now in User CP
Reaction score
102
If the iten cant be PAWNED then there is no event, because the item is not pawned at all.

To prevent the unit from dropping the item create a trigger where
Event
A unit drops an item
Action
Give last droped item to hero manipulating item

Or just go to Object manager?
55pfkk.jpg
 

I_RULE_YOU

New Member
Reaction score
34
I happen to know the maker of this thread and am also working on the same map with them, so maybe I can clear this up.

Everything in the map works fine, except for 1 problem.

There are 2 modes in the map, an AP mode and an AR mode. When the AR mode is chosen, you are unable to pawn items for some strange reason. It's the equivalent of when you try to sell an item to a Mercenary shop, how you can click on the shop and nothing will happen/it will just drop it on the ground.

I looked through the AR triggers, and couldn't find an answer to this strange problem, but I'll post the related triggers here in hopes that someone here has a better eye than me:



Trigger:
  • ModePick
    • Events
      • Dialog - A dialog button is clicked for ModePick
    • Conditions
    • Actions
      • -------- FIX --------
      • Game - Force Player 1 (Red) to press the key A
      • Set Boolean = True
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Clicked dialog button) Equal to AllRandom
        • Then - Actions
          • Player Group - Pick every player in PlayersPlaying and do (Actions)
            • Loop - Actions
              • Set BuyingPlayer = (Picked player)
              • Player - Set (Picked player) Current gold to (((Picked player) Current gold) - 1700)
              • Unit - Create 1 RANDOM_HERO_ARRAY[(Random integer number between 1 and NUM_HEROES)] for BuyingPlayer at (BuyingPlayer start location) facing Default building facing degrees
              • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                • If - Conditions
                  • Hero[(Player number of (Owner of (Last created unit)))] Equal to No unit
                • Then - Actions
                  • Set Hero[(Player number of (Owner of (Last created unit)))] = (Last created unit)
                • Else - Actions
              • Hero - Create Scroll of Town portal and give it to (Last created unit)
              • Hero - Create Amulet of Power and give it to (Last created unit)
              • Hero - Create Boots of Speed and give it to (Last created unit)
              • Unit - Remove (Sold unit) from the game
          • Set TempPoint = (Position of Random Tavern 0017 <gen>)
          • Player Group - Pick every player in PlayersPlaying and do (Actions)
            • Loop - Actions
              • Unit - Create 1 Wisp for (Picked player) at TempPoint facing Default building facing degrees
          • Custom script: call RemoveLocation(udg_TempPoint)
          • Game - Display to PlayersPlaying the text: ALL RANDOM MODE HAS...
        • Else - Actions
          • Set TempPoint = (Position of Random Tavern 0017 <gen>)
          • Player Group - Pick every player in PlayersPlaying and do (Actions)
            • Loop - Actions
              • Unit - Create 1 Wisp for (Picked player) at TempPoint facing Default building facing degrees
          • Custom script: call DestroyForce(udg_TempForce)
      • Custom script: set udg_TempPoint = null
      • Custom script: call DestroyTrigger( GetTriggeringTrigger() )



Trigger:
  • Hero Is Sold
    • Events
      • Unit - A unit Sells a unit
    • Conditions
    • Actions
      • Set BuyingPlayer = (Owner of (Buying unit))
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Unit-type of (Sold unit)) Not equal to Random Hero
        • Then - Actions
          • Unit - Move (Sold unit) instantly to ((Owner of (Sold unit)) start location)
          • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            • If - Conditions
              • ((Sold unit) is A Hero) Equal to True
            • Then - Actions
              • Camera - Pan camera for (Owner of (Buying unit)) to ((Owner of (Buying unit)) start location) over 1.00 seconds
              • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                • If - Conditions
                  • Hero[(Player number of (Owner of (Last created unit)))] Equal to No unit
                • Then - Actions
                  • Set Hero[(Player number of (Owner of (Sold unit)))] = (Sold unit)
                • Else - Actions
            • Else - Actions
          • Custom script: call RemoveLocation(udg_TempPoint)
          • For each (Integer A) from 1 to NUM_HEROES, do (Actions)
            • Loop - Actions
              • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                • If - Conditions
                  • (Unit-type of (Sold unit)) Equal to RANDOM_HERO_ARRAY[(Integer A)]
                • Then - Actions
                  • Set HeroesUsed[(Integer A)] = True
                  • Custom script: exitwhen true
                • Else - Actions
        • Else - Actions
          • Set RandomNumber = (Random integer number between 1 and NUM_HEROES)
          • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            • If - Conditions
              • HeroesUsed[RandomNumber] Equal to True
            • Then - Actions
              • Set RandomNumber = (Random integer number between 1 and NUM_HEROES)
              • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                • If - Conditions
                  • HeroesUsed[RandomNumber] Equal to True
                • Then - Actions
                  • Set RandomNumber = (Random integer number between 1 and NUM_HEROES)
                  • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    • If - Conditions
                      • HeroesUsed[RandomNumber] Equal to True
                    • Then - Actions
                      • Set RandomNumber = (Random integer number between 1 and NUM_HEROES)
                      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                        • If - Conditions
                          • HeroesUsed[RandomNumber] Equal to True
                        • Then - Actions
                          • Set RandomNumber = (Random integer number between 1 and NUM_HEROES)
                          • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                            • If - Conditions
                              • HeroesUsed[RandomNumber] Equal to True
                            • Then - Actions
                              • Set RandomNumber = (Random integer number between 1 and NUM_HEROES)
                            • Else - Actions
                              • Set HeroesUsed[RandomNumber] = True
                        • Else - Actions
                          • Set HeroesUsed[RandomNumber] = True
                    • Else - Actions
                      • Set HeroesUsed[RandomNumber] = True
                • Else - Actions
                  • Set HeroesUsed[RandomNumber] = True
            • Else - Actions
              • Set HeroesUsed[RandomNumber] = True
          • Unit - Create 1 RANDOM_HERO_ARRAY[RandomNumber] for BuyingPlayer at ((Owner of (Sold unit)) start location) facing Default building facing degrees
          • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            • If - Conditions
              • ((Sold unit) is A Hero) Equal to True
            • Then - Actions
              • Camera - Pan camera for (Owner of (Buying unit)) to ((Owner of (Buying unit)) start location) over 1.00 seconds
              • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                • If - Conditions
                  • Hero[(Player number of (Owner of (Last created unit)))] Equal to No unit
                • Then - Actions
                  • Set Hero[(Player number of (Owner of (Last created unit)))] = (Last created unit)
                • Else - Actions
            • Else - Actions
          • Custom script: call RemoveLocation(udg_TempPoint)
          • Unit - Remove (Sold unit) from the game
          • Hero - Create Scroll of Town portal and give it to (Last created unit)
          • Hero - Create Amulet of Power and give it to (Last created unit)
          • Hero - Create Boots of Speed and give it to (Last created unit)




Tell me if you need more information and me or Stormahawk will be glad to supply it.
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • 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 The Helper:
    Power back on finally - all is good here no damage
    +2
  • V-SNES V-SNES:
    Happy Friday!
    +1
  • The Helper The Helper:
    New recipe is another summer dessert Berry and Peach Cheesecake - https://www.thehelper.net/threads/recipe-berry-and-peach-cheesecake.194169/

      The Helper Discord

      Staff online

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top