Item Drop System - Will this Work?

Knocksious

Sweet, I got 2 little green bars!
Reaction score
46
Okay, so I was being lazy, and wanted to create a tiered item drop system, but didn't want to enter in every single little item manually, and I don't know how to use JASS

So, I cooked up an initialization that works something like a preloader, and I was wondering if it will work, before I go through the trouble of actually making the DROP system


here's the revised request for help

Code:
Item Table Init
    Events
        Map initialization
    Conditions
    Actions
        Item - Pick every item in Item Pregen <gen> and do (Actions)
            Loop - Actions
                Set ItemDrop_Level_Count = (ItemDrop_Level_Count + 1)
                If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    If - Conditions
                        (Item level of (Picked item)) Equal to ItemDrop_Level_Count
                    Then - Actions
                        Set ItemCounter = (ItemCounter + 1)
                        Set Item_Drop_Type[ItemCounter] = (Item-type of (Picked item))
                        Item - Remove (Picked item)
                    Else - Actions
                Set ItemDrop_Cap[ItemDrop_Level_Count] = ItemCounter

I used the reveal cheat while testing, and the items don't get removed

THEN I set up the actual drop system and added a debug message or two
Everything WORKS except it doesn't have a set of items to draw from, anyone wanna help me out?

Code:
Item Drops
    Events
        Unit - A unit Dies
    Conditions
        (Owner of (Triggering unit)) Equal to Neutral Hostile
    Actions
        Set ItemDrop_RandomBonus[(Player number of (Owner of (Killing unit)))] = (ItemDrop_RandomBonus[(Player number of (Owner of (Killing unit)))] + 5)
        Set ItemDrop_Chance = (Random integer number between (ItemDrop_RandomBonus[(Player number of (Owner of (Killing unit)))] + 1) and 100)
        Game - Display to (All players) the text: (                Rolled:  |cffffcc00 + (String(ItemDrop_Chance)))
        If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            If - Conditions
                ItemDrop_Chance Greater than or equal to 75
            Then - Actions
                Set APoint = (Position of (Triggering unit))
                If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    If - Conditions
                        (Level of (Triggering unit)) Greater than or equal to 90
                    Then - Actions
                        Item - Create Item_Drop_Type[(Random integer number between 0 and ItemDrop_Cap[9])] at (Center of (Playable map area))
                        Set ItemDrop_RandomBonus[(Player number of (Owner of (Killing unit)))] = 0
                        Custom script:   call RemoveLocation (udg_APoint)
                        Skip remaining actions
                    Else - Actions
                If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    If - Conditions
                        (Level of (Triggering unit)) Greater than or equal to 80
                    Then - Actions
                        Item - Create Item_Drop_Type[(Random integer number between 0 and ItemDrop_Cap[8])] at (Center of (Playable map area))
                        Set ItemDrop_RandomBonus[(Player number of (Owner of (Killing unit)))] = 0
                        Custom script:   call RemoveLocation (udg_APoint)
                        Skip remaining actions
                    Else - Actions
                If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    If - Conditions
                        (Level of (Triggering unit)) Greater than or equal to 70
                    Then - Actions
                        Item - Create Item_Drop_Type[(Random integer number between 0 and ItemDrop_Cap[7])] at (Center of (Playable map area))
                        Set ItemDrop_RandomBonus[(Player number of (Owner of (Killing unit)))] = 0
                        Custom script:   call RemoveLocation (udg_APoint)
                        Skip remaining actions
                    Else - Actions
                If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    If - Conditions
                        (Level of (Triggering unit)) Greater than or equal to 60
                    Then - Actions
                        Item - Create Item_Drop_Type[(Random integer number between 0 and ItemDrop_Cap[6])] at (Center of (Playable map area))
                        Set ItemDrop_RandomBonus[(Player number of (Owner of (Killing unit)))] = 0
                        Custom script:   call RemoveLocation (udg_APoint)
                        Skip remaining actions
                    Else - Actions
                If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    If - Conditions
                        (Level of (Triggering unit)) Greater than or equal to 50
                    Then - Actions
                        Item - Create Item_Drop_Type[(Random integer number between 0 and ItemDrop_Cap[5])] at (Center of (Playable map area))
                        Set ItemDrop_RandomBonus[(Player number of (Owner of (Killing unit)))] = 0
                        Custom script:   call RemoveLocation (udg_APoint)
                        Skip remaining actions
                    Else - Actions
                If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    If - Conditions
                        (Level of (Triggering unit)) Greater than or equal to 40
                    Then - Actions
                        Item - Create Item_Drop_Type[(Random integer number between 0 and ItemDrop_Cap[4])] at (Center of (Playable map area))
                        Set ItemDrop_RandomBonus[(Player number of (Owner of (Killing unit)))] = 0
                        Custom script:   call RemoveLocation (udg_APoint)
                        Skip remaining actions
                    Else - Actions
                If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    If - Conditions
                        (Level of (Triggering unit)) Greater than or equal to 30
                    Then - Actions
                        Item - Create Item_Drop_Type[(Random integer number between 0 and ItemDrop_Cap[3])] at (Center of (Playable map area))
                        Set ItemDrop_RandomBonus[(Player number of (Owner of (Killing unit)))] = 0
                        Custom script:   call RemoveLocation (udg_APoint)
                        Skip remaining actions
                    Else - Actions
                If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    If - Conditions
                        (Level of (Triggering unit)) Greater than or equal to 20
                    Then - Actions
                        Item - Create Item_Drop_Type[(Random integer number between 0 and ItemDrop_Cap[2])] at (Center of (Playable map area))
                        Set ItemDrop_RandomBonus[(Player number of (Owner of (Killing unit)))] = 0
                        Custom script:   call RemoveLocation (udg_APoint)
                        Skip remaining actions
                    Else - Actions
                If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    If - Conditions
                        (Level of (Triggering unit)) Greater than or equal to 10
                    Then - Actions
                        Item - Create Item_Drop_Type[(Random integer number between 0 and ItemDrop_Cap[1])] at (Center of (Playable map area))
                        Set ItemDrop_RandomBonus[(Player number of (Owner of (Killing unit)))] = 0
                        Custom script:   call RemoveLocation (udg_APoint)
                        Skip remaining actions
                    Else - Actions
                If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    If - Conditions
                        (Level of (Triggering unit)) Greater than or equal to 0
                    Then - Actions
                        Item - Create Item_Drop_Type[(Random integer number between 0 and ItemDrop_Cap[0])] at (Center of (Playable map area))
                        Set ItemDrop_RandomBonus[(Player number of (Owner of (Killing unit)))] = 0
                        Custom script:   call RemoveLocation (udg_APoint)
                        Skip remaining actions
                    Else - Actions
                Game - Display to (All players) the text: Error: Killed Creep...
            Else - Actions
 

darkRae

Ueki Fan (Ueki is watching you)
Reaction score
173
I don't understand what it works for... so... like AceHart said...
"You don't need to worry if the problem is yet to occur"
or something like that XD
 

AceHart

Your Friendly Neighborhood Admin
Reaction score
1,495
> (Item level of (Picked item)) Equal to ItemDrop_Level_Count

What is that supposed to test?

You're picking items rather randomly, and, if, by chance, they happen to have some specific level, they are used, otherwise not...
 

Knocksious

Sweet, I got 2 little green bars!
Reaction score
46
Ah I think I need to do an integer loop

What I was trying to do was make it so that say a level 100 creep could drop a level 9 item or below

or... say a level 50 creep would drop a level 4 item or below

but I only want it to drop items I pick
 

Knocksious

Sweet, I got 2 little green bars!
Reaction score
46
sorry about the double-post, but I wanted to bring this to Ace's Attention assuming he is still on

So I redid the init code, and it works, becuause I came up with a debug test that makes it work

The drop code still doesn't work, however, asn I can't figure out why

here is the redone init code and the debug test code

Code:
Item Table Init
    Events
        Map initialization
    Conditions
    Actions
        For each (Integer A) from 0 to 9, do (Actions)
            Loop - Actions
                Set ItemDrop_Level_Count = (Integer A)
                Item - Pick every item in Item Pregen <gen> and do (Actions)
                    Loop - Actions
                        If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                            If - Conditions
                                (Item level of (Picked item)) Equal to ItemDrop_Level_Count
                            Then - Actions
                                Set ItemCounter = (ItemCounter + 1)
                                Set Item_Drop_Type[ItemCounter] = (Item-type of (Picked item))
                                Item - Remove (Picked item)
                            Else - Actions
                        Set ItemDrop_Cap[ItemDrop_Level_Count] = ItemCounter


Code:
Drop Debug
    Events
        Player - Player 1 (Red) types a chat message containing -Drop as A substring
    Conditions
    Actions
        Item - Create Item_Drop_Type[(Integer((Substring((Entered chat string), 7, (Length of (Entered chat string))))))] at (Center of (Playable map area))


Wow, I feel dumb... I had the Item drop at center of playable map, not at APoint.... :banghead:

nvm nvm
 
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

      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