Tutorial Dota clock

rexpim

Member
Reaction score
8
Hi:D, this is my first tutorial, I'm new to this community, and am also new in the creation of war3 maps.

This tutorial is about the clock of Dota, its an intresting clock and very easy to do.
clock.jpg
INDEX
1 - Game interface
2 - Gameplay Constants
3 - Trigger System GUI


1 - Go to Game Interface (Advanced - Game Interface (Check 'Use Custom Game Interface'))

Search for this fields and change them.
Icon-Food -Change to another icon, I used a custom icon
preto.jpg
Icon-Lumber -Change to another icon, I used a custom icon
preto.jpg
Text-General-'Food' -Change to "Seconds"
Text-General-'Gold Income Rate:' -Change to "http://www.thehelper.net/"
Text-General-'Lumber is Harvested from trees' -Change to "1Minute=60Seconds"
Text-General-'Lumber' -Change to "Minutes:"
Text-General-'The amount of food you are using over the total amount you can currently sustain.' -Change to "60Seconds=1Minute"
Text-General-'Upkeep is determined by the amount of food your forces are currently using.' -Change to "Welcome"
Text-General-'No Upkeep:' -Change to "TheHelper"
Text-General-'Low Upkeep:' -Change to "TheHelper"
Text-General-'High Upkeep:' -Change to "TheHelper"
Text-General-'|N%d-%d Food: %s|R (%d%% G, %d%% L)' -Leave 2 spaces like this ( )
Text-General-'|N%d-%d Food: %s|R (%d%% income)' -Leave 2 spaces like this ( )


2 - Go to the Gameplay Constants (Advanced - Gameplay Constants (Check 'Use Custom Gameplay Constants'))

Upkeep-Food Levels -Change the integer 50 to 70

3 - Now the trigger system:

3.1 - Lumber is the Minutes counter
Trigger:
  • Events
    • Time-Every 60.00 seconds of game time
    • Conditions
    • Actions
      • PlayerGroup - Pick every player in (All players) and do (Player - Add 1 to (Picked player) Current Lumber))


3.2 - Create variable name FoodSEC type integer.

3.3 -Food is the Second counter
Trigger:
  • Events
    • Time-Every 1.00 seconds of game time
    • Conditions
    • Actions
      • Set FoodSEC = (Player 1 (Red) Food used)
      • PlayerGroup - Pick every player in (All players) and do (Player - Set (Picked player) Food Used to (FoodSEC + 1))


3.4 - Reset Seconds to 0
Trigger:
  • Events
    • Player - Player 1 (Red)'s Food used becomes Greather than or equal to 60.00
    • Conditions
    • Actions
      • Player - Set Player 1 (Red)'s Food used to 0

This is the final result
final.jpg:thup:

Demo Map View attachment Dotaclock.w3x

Sry for the double tutorial [System] DotA Time System
 
Could be done in one trigger.
 
I'd rather use this for the Trigger. :|
JASS:
scope Clock initializer init

    globals
        private constant playerstate seconds = PLAYER_STATE_RESOURCE_FOOD_USED
        private constant playerstate minutes = PLAYER_STATE_RESOURCE_LUMBER
    endglobals
    
    private function SecondAction takes nothing returns nothing
        local player p = GetEnumPlayer()
        call SetPlayerState( p, seconds, GetPlayerState(p, seconds) +1 )
        set p=null
    endfunction
    
    private function Second takes nothing returns nothing
        call ForForce( bj_FORCE_ALL_PLAYERS, function SecondAction )
    endfunction

    private function MinuteAction takes nothing returns nothing
        local player p = GetEnumPlayer()
        call SetPlayerState( p, minutes, GetPlayerState(p, minutes) +1 )
        call SetPlayerState( p, seconds, 0 )
        set p=null
    endfunction
    
    private function Minute takes nothing returns nothing
        call ForForce( bj_FORCE_ALL_PLAYERS, function MinuteAction )
    endfunction

    //===========================================================================
    private function init takes nothing returns nothing
        local trigger Seconds = CreateTrigger()
        local trigger Minutes = CreateTrigger()
        call TriggerRegisterTimerEvent( Seconds, 1.00, true )
        call TriggerAddAction( Seconds, function Second )
        //============================================\\
        call TriggerRegisterTimerEvent( Minutes, 60.00, true )
        call TriggerAddAction( Minutes, function Minute )
        set Seconds=null
        set Minutes=null
    endfunction

endscope
//By Carnerox.
 
he is from portugal... it mean that he speak in portuguese, which icon = icone in portuguese and believe me, its very common people say icone instead of icon here :p
 
little help

I've just started playing with the editor and I can't get my clock to work properly. I've made all the changes and the triggers, the clock works fine, but instead of having only seconds I have "seconds/6" like 1/6 2/6 ... The map is a dota template and I'm not sure how to get rid of that food issue since I don't know what's giving me 6 food.

I apologize if this wasn't the place I should have posted this. :)
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • Varine Varine:
    I should have had all of this like a month ago but whatever, it's fine. He's trying a thing, idk it's his menu I don
  • Varine Varine:
    I don't care.
  • Varine Varine:
    Fuck I need more saturday nights off. Turns out I'm much cooler to drunk girls. If I hang out with enough people like that, eventually I'll meet one that likes me sober too
  • Varine Varine:
    idk if anyone has ever done IT. I am not IT but I just got off a 20 minute phone call with the general manager asking me how to make her new computer print. I do adore her, like I know her personally, but I asked three times if the printer was on. She apologized for bothering me, and Chef Ben walked in a few minutes later, turned the printer on apparently, and then called to ask if I was trying to print shit from my house again
  • Varine Varine:
    So I have a newfound appreciation
  • Varine Varine:
    And also I'm going to remove that one from my secondary career options
  • Varine Varine:
    As I get older I'm not thinking I can do this forever anymore, and I'm kind of dead end right now. I get a fine salary and fair raises, like I can easily live my lifestyle on this normally, but I don't know if I can do this in ten years, and I don't think I want to. I don't really have any desire to take over another restaurant, and I don't want to try and own one, and I doubt I'll luck out like I did with that taco place in Texas
  • Varine Varine:
    I have a math degree but that was a while ago and I'm not positive I actually deserved that. It was kind of just given to me I feel like cuz I was in school so long. Like for a bit as a teenager I got real into the mormon thing, and my dad grew up kind of similarly. Much like he fell out of it
  • Varine Varine:
    Anyway he started coming to church with me for a bit, and they gave home the I think Melchizedek? idk how to spell it, but it's the 'upper' priesthood, like he had a whole blessing thing after I got baptized, and it WAS a very neat experience. And the only reason I think they did they did that was cuz he was like late 30s, and that is kind of the age that they have the last chance at that
  • Varine Varine:
    And I mean its not, but like... I'm pretty well set in my lack of religious beliefs, I guess. And I'm a bit younger than my dad would have been then.
  • Varine Varine:
    And then I got real into, he got bored and was like you do you dude, and that's how I got a huge amount of freedom when I started doing drugs as a teenager
  • Varine Varine:
    In hindsight my parents were fantastic. but they were too fucking tired to raise kids like me. And their jobs were easier with better benefits.
  • Varine Varine:
    Anyway idk where I'm going here, but I asked ChatGPT some of the same things and holy shit was it way more strict and just gave me (importantly the wrong) phone number to a hotline
  • Varine Varine:
    TH, I gotta say, though, I'm amazed you keep this up. I feel like there are you and Ghan doing whatever you're doing, Tom posting news, and then me using the chatbox as a journal every once in a while.
    +1
  • Varine Varine:
    Thanks for letting me do that, also. I know I'm not using it correctly, but somewhere along the line I went from arguing with Cheshire to using this as a kind of void for my frustrations and hopes. I like to think of the whole thing as an enigma of sorts
  • Varine Varine:
    It's not, you guys could probably blackmail me if you went back far enough. I doubt anyone would, you've always been very kind, and I'm glad to have been a part of all this! I hope you enjoy me too, cuz I'm going to keep doing it.
    +1
  • Varine Varine:
    In my defense I was high for a lot of that though
  • V-SNES V-SNES:
    Thanks for sharing @Varine
  • The Helper The Helper:
    Brother how long we been here together? You guys are some of my best friends and I have never even met any of you. I dont know what I would if I did not have my Varine rant to look at when I get on. How could I possibly ever shut this site down? We have been here in this little chat box through a lot of shit for a long time. I love you guys!
    +2
  • tom_mai78101 tom_mai78101:
    I missed out on a lot of chat messages. But yeah, we're planning for my mom's funeral back in Taiwan. I'm really glad I work remotely, so I can try to leverage that and go to places outside of US while still working in US.
    +1
  • tom_mai78101 tom_mai78101:
    If it wasn't for my mom, I wouldn't be able to work in the US. Let alone being able to work until our office closed, and I became a full-time remote employee.
  • tom_mai78101 tom_mai78101:
    Really important though, get your wills and last testaments ready. We avoided like 2 to 3 months of waiting for probate court to get back to us.
    +2
  • The Helper The Helper:
    V-SNES I got good news I got your stuff packed for shipping and just need to get to the post office to get shipping cost!
    +1
  • jonas jonas:
    Oh man Cheshire, I often wonder what happened to her and most of the other people who used to be here
  • V-SNES V-SNES:
    @The Helper that's great! Looking forward to getting them!

      The Helper Discord

      Members online

      No members online now.

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials
      Top