Snippet Timed Resources.

GetTriggerUnit-

DogEntrepreneur
Reaction score
129
This is a very simple snippet that allows you to periodicly add resources to a player.

JASS:

/* 

    TimedResources v1.0

    This is a very simple snippet that allows you to periodicly add
    resources to a player.
    
    -How to import:
    
        * You first need to get TimerUtils
        * Create a new trigger and convert it to custom script.
        * Label you trigger to "TimedResources"
        * Delete all the text within it and replace it by this text.
        
    -How to use:
    
        * Create a new instance -> TimedResources d = TimedResources.create().
        * Set all the struct memeber to a value. -> d.mainPlayer = whichPlayer.
        * Use the Start() method to start Resources incomes.
        * Use the Stop() method to stop Resources incomes.
        
*/

library TimedResources requires TimerUtils

    struct TimedResources
    
        player mainPlayer
        real gainPeriod
        integer gainGold
        integer gainWood
        private timer periodTimer
        
        private static method periodic takes nothing returns nothing
            local thistype d = GetTimerData(GetExpiredTimer())
            call SetPlayerState(d.mainPlayer, PLAYER_STATE_RESOURCE_GOLD, GetPlayerState(d.mainPlayer, PLAYER_STATE_RESOURCE_GOLD) + d.gainGold)
            call SetPlayerState(d.mainPlayer, PLAYER_STATE_RESOURCE_LUMBER, GetPlayerState(d.mainPlayer, PLAYER_STATE_RESOURCE_LUMBER) + d.gainWood)
        endmethod
        
        method Start takes nothing returns nothing
            local thistype d = this
            set d.periodTimer = NewTimer()
            call SetTimerData(d.periodTimer, d)
            call TimerStart(d.periodTimer, d.gainPeriod, true, function thistype.periodic)
        endmethod
        
        method Stop takes nothing returns nothing
            call ReleaseTimer(this.periodTimer)
            set this.mainPlayer = null
            set this.gainPeriod = 0.00
            set this.gainGold = 0
            set this.gainWood = 0
        endmethod
        
    endstruct

endlibrary


Testmap:
 

GetTriggerUnit-

DogEntrepreneur
Reaction score
129
Why isn't it?

It's useful for AoS maps like Dota and such.
It could also be used to do a Time system with Wood and Food such as in Dota.
 

Tru_Power22

You can change this now in User CP.
Reaction score
144
What wrong with a periodic event in GUI?

Really this serves little purpose.

Oh it's AoS maps, not AoE.

AoS - Aeion of Strife

AoE - Area of effect
 

kingkingyyk3

Visitor (Welcome to the Jungle, Baby!)
Reaction score
216
It could also be used to do a Time system with Wood and Food such as in Dota.
Where the set food thingy in your library? lol
 

GetTriggerUnit-

DogEntrepreneur
Reaction score
129
This is more useful than a simple periodic GUI trigger, since it's simplier, more efficient and it can be instanced sereval times.

Where the set food thingy in your library? lol
No comments for stupid remarks.
 

Narks

Vastly intelligent whale-like being from the stars
Reaction score
90
this is kind of useless, since GUI can do exactly the same thing
 

Lyerae

I keep popping up on this site from time to time.
Reaction score
105
If you need this, you can make it yourself.
 

Executor

I see you
Reaction score
57
Why TimerUtils?

I think you will have a maximum amount of ~12 instances and it's rubbish to destroy one of these structs, so just create one timer per struct ?!
You should also add a reference between player and struct instance.

Otherwise, if you want more than ~12 instances per map (for ex. for every single wood providing building) you should link all structs with a linked list together and through all in a constant interval.

BTW. I don't see the point of this snippet.
 

Romek

Super Moderator
Reaction score
964
This seems like one of those "I felt like submitting something, so I submitted anything" resources. Sure, it does more than the code in Post #14, though will you ever need those additional 'features'?
Giving players resources periodically is a simple task that most certainly doesn't require something like this.

Also, the name "Timed Resources" is misleading, and sounds as though the resources expire or something. :p

GY'd.

Also, you don't need to 'null' reals. Only agents.
 

Sevion

The DIY Ninja
Reaction score
413
When you look at it, T32x is the best way to go.

With it, he can use a single T32x instance, and pause it when the stack is empty.
 

Nestharus

o-o
Reaction score
84
Otherwise, if you want more than ~12 instances per map (for ex. for every single wood providing building) you should link all structs with a linked list together and through all in a constant interval.

that = T32, which is why I suggested it, but you could do it by scratch as you suggested ^_-


I agree with Romek though... a script of this nature doesn't really give anything new and interesting and only takes 5 seconds to make ><. It's not general enough to be used in like every map either.

I could see something like this in a dota template or something, or a framework like the RPG Framework (and we all know how much people love frameworks, lol).

But by itself it's kind of ... it's not a shared resource, it runs itself :\. It requires no research... I mean, maybe if we had like a super small snippet section like THW snippet thread I could see this.


On a side note, this doesn't follow JASS conventions ;p.
JASS:

method Stop takes nothing returns nothing


Then again I see people doing whatever they want here (sometimes upper start, sometimes lower start) : o


Even Vexorian goes all over the place in his vjass manual ;p. From what I've seen though, the common practice is method start lower and functions start upper. Oh well, guess it doesn't really matter since nobody really follows it anyways : D. Variables are pretty chaotic too ;o.
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • 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 The Helper:
    Power back on finally - all is good here no damage
    +2
  • V-SNES V-SNES:
    Happy Friday!
    +1

      The Helper Discord

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top