Ice Texture ;.....;

Status
Not open for further replies.
J

Jim

Guest
Hi ,1. Where i find / how can i put on my map an icy texture so the units would be able to ''skate'' on it (like polar escape) i've checked those maps.All are protected
2.And a second one (maybe offtopic) I downloaded the fullscreen.BLP now what i need to do? To import a photo in wc3 world editor with blp ? ? ?
Thanks in advance .
 

Sil3nt

SUP?
Reaction score
134
1. Check the tilesets titled "Northrend", "Icecrown" they have icey terrain tiles.

2. Check the tutorial section of the WE zone or use the search function, theres lots of tutorials regarding loading screens.
 
J

Jim

Guest
I've done those before 2 years xD now forgot everything. . .
Where i find those tilesets?
Edit:Ok i found it ty
 
J

Jim

Guest
Ok i've added the icy terrain now i need some triggers to make players skating on the icy terrain. Can someone post those triggers plz?
Edit:sorry for double post*
 

Sil3nt

SUP?
Reaction score
134
There is also a tutorial for sliding in the tutorial section. I'd link you to it but my net is very, very slow right now and I really can't be bothered looking for it.
 

OneBadPsycho

10100111001
Reaction score
93
Something like this...
Code:
Slide
    Events
        Time - Every 0.03 seconds of game time
    Conditions
    Actions
        Set Ugroup = (Units in (Playable map area))        
        Unit Group - Pick every unit in Ugroup and do (Actions)
            Loop - Actions
                Set LocSU = (Position of (Picked unit))
                If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    If - Conditions
                        (Terrain type at LocSU) Equal to [COLOR="Red"]Your icy terrain[/COLOR]
                    Then - Actions                                                
                        Set MoveLocSU = (LocSU offset by 20.00 towards Unit Facing of Picked unit degrees)
                        Unit - Move (Picked unit) instantly to MoveLocSU                        
                        Custom script:   call RemoveLocation (udg_MoveLocSU) 
                    Else - Actions
            Custom script:   call RemoveLocation (udg_LocSU)
        Custom script:   call DestroyGroup (udg_Ugroup)

This IS MuI^^
 

darkbeer

Beer is Good!
Reaction score
84
Code:
Event - Periodic event every 0.03 seconds
Actions - Group Pick every unit in SlidingGroup and do actions
    Set TempLoc = Position of Picked Unit
    If all Conditions are true then do Actions
        Conditions -
            Terrain Type at TempLoc equal to "ICE"
        Actions - 
             set TempLoc_2 = TempLoc offset by 20 towards Unit Facing of Picked unit degrees
             Unit - Move Picked unit instantly to TempLoc_2
             CustomScript: call RemoveLocation(udg_TempLoc_2)
     CustomScript: call RemoveLocation(udg_TempLoc)

will slide all units in SlidingGroup on ice terrain towards their facing angle.

EDIT: OneBadPsycho your trigger leaks a group and a locaton and you dont need to set reals to 0 especially not globals.
 

darkbeer

Beer is Good!
Reaction score
84
sorry should have pointed that out better:
and i think a 0.03 period is much better than 0.01 concerning the performance and it makes no difference for the eye.

Note: this is OneBadPsychos trigger!
Code:
Slide
    Events
        Time - Every [COLOR="Red"]0.03[/COLOR] seconds of game time
    Conditions
    Actions
        Set Ugroup = (Units in (Playable map area))
        Unit Group - Pick every unit in Ugroup and do (Actions)
            Loop - Actions
                Set LocSU = (Position of (Picked unit)) // put it here so you can use it for the condition
                If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    If - Conditions
                        (Terrain type at [[COLOR="Red"](Position of (Picked unit)))[/COLOR] // this leaks] use LocUs Equal to Your icy terrain
                    Then - Actions
                        Set AngleSU = (Facing of (Picked unit))
                        Set MoveLocSU = (LocSU offset by[COLOR="Red"] 30.00[/COLOR] towards AngleSU degrees)
                        Unit - Move (Picked unit) instantly to MoveLocSU
                        Custom script:   call RemoveLocation (udg_MoveLocSU) 
                    Else - Actions
        Custom script:   call RemoveLocation (udg_LocSU) //outside the if then to remove the leak
        Custom script:   call DestroyGroup (udg_Ugroup)

And yes this is MUI :)
 
J

Jim

Guest
Do i need to do this triggers for all players?
BTW i opened a slide kitty slide map and the triggers where very complicated
and there was an >.< and i cannot do to my original map because i cant find units ! ! !
Edit:When i was typing this (which took me a lot of time to upload xD)u were typing .NVM ur triggers are more complicated xD
ty guyz

sliding.jpg
 
J

Jim

Guest
Damn i got a problem . ..
I need to select those triggers based on ur code but i cant find some things.(not all)
Is there a way to make a custom script and copy paste ur code including everything?
:thup:

Edit:Can you post the code again plz? and tell me where i can find each trigger?
thx much
 

OneBadPsycho

10100111001
Reaction score
93
Like this?
Code:
Slide
    Events
        Time - Every 0.03 seconds of game time
    Conditions
    Actions
        Set Ugroup = (Units in (Playable map area)) [B]//Unit Group Variable... [/B]   
        Unit Group - Pick every unit in Ugroup and do (Actions) [B]//Obvious[/B]
            Loop - Actions
                Set LocSU = (Position of (Picked unit)) [B]//Point Variable[/B]
                If (All Conditions are True) then do (Then Actions) else do (Else Actions) [B]//If/Then/Else[/B]
                    If - Conditions
                        (Terrain type at LocSU) Equal to Your icy terrain [B]//Terrain Type Condition[/B]
                    Then - Actions                                                
                        Set MoveLocSU = (LocSU offset by 20.00 towards Unit Facing of Picked unit degrees) [B]//Point Variable[/B]
                        Unit - Move (Picked unit) instantly to MoveLocSU       [B]//Obvious[/B]                  
                        Custom script:   call RemoveLocation (udg_MoveLocSU) [B]//Custom script, just copy "call RemoveLocation (udg_MoveLocSU)"[/B]
                    Else - Actions
            Custom script:   call RemoveLocation (udg_LocSU) [B]//Custom script, just copy "call RemoveLocation (udg_LocSU)"[/B]
        Custom script:   call DestroyGroup (udg_Ugroup) [B]//Custom script, just copy "call DestroyGroup (udg_Ugroup)"[/B]
 
J

Jim

Guest
I've done some of these but the rest >.<
impossible . . .
I would be grateful if you would sumbit a map with those triggers in it.
. . .
impossible.JPG
 

OneBadPsycho

10100111001
Reaction score
93
Here it is...
I made a steering system too, so you can move your sliding unit, while it is sliding.
 

Attachments

  • Slide.w3x
    16.3 KB · Views: 187
Status
Not open for further replies.
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