Spellpack Windrunner's Spells

Angel_Island

Much long, many time, wow
Reaction score
56
Windrunner's Spells
Shackleshot
Powershot
Windrunner
Focus Fire

Coded By Angel_Island




Shackleshot

GUI/JASS: GUI
MUI/MPI: MUI
Leakless: Yes
Lagless: Yes

Spell Info:

Alleria fires an enchanted arrow using wind magic that binds the target to an enemy unit or tree behind it.

Level 1 - 1.5 seconds shackle.
Level 2 - 2.25 seconds shackle.
Level 3 - 3 seconds shackle.
Level 4 - 3.75 seconds shackle.

Screenshot:
shackleshot.jpg
Code:
Trigger:
  • Damage Detection
    • Events
      • Map initialization
    • Conditions
    • Actions
      • Set EventUnits = (Units in (Playable map area))
      • Unit Group - Pick every unit in EventUnits and do (Actions)
        • Loop - Actions
          • Trigger - Add to Shackleshot <gen> the event (Unit - (Picked unit) Takes damage)
          • Trigger - Add to Focus Fire Damage Reduction <gen> the event (Unit - (Picked unit) Takes damage)

Trigger:
  • Damage Detection 2
    • Events
      • Unit - A unit enters (Playable map area)
    • Conditions
      • ((Triggering unit) is in EventUnits) Equal to False
    • Actions
      • Unit Group - Add (Triggering unit) to EventUnits
      • Trigger - Add to Shackleshot <gen> the event (Unit - (Triggering unit) Takes damage)
      • Trigger - Add to Focus Fire Damage Reduction <gen> the event (Unit - (Triggering unit) Takes damage)

Trigger:
  • Shackleshot
    • Events
    • Conditions
      • (Unit-type of (Damage source)) Not equal to Dummy
      • ((Triggering unit) has buff Shackleshot Stun ) Equal to True
      • (Damage taken) Equal to 0.00
    • Actions
      • Set ShackleCasterPosition = (Position of (Damage source))
      • Set ShackleTargetPosition = (Position of (Triggering unit))
      • Set ShackleGroup = (Units within 550.00 of ShackleTargetPosition)
      • Unit Group - Pick every unit in ShackleGroup and do (Actions)
        • Loop - Actions
          • Set ShacklePickedUnitPosition = (Position of (Picked unit))
          • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            • If - Conditions
              • ((Picked unit) is A structure) Equal to False
              • ((Picked unit) belongs to an enemy of (Owner of (Damage source))) Equal to True
              • (Angle from ShackleTargetPosition to ShacklePickedUnitPosition) Greater than or equal to ((Angle from ShackleCasterPosition to ShackleTargetPosition) - 30.00)
              • (Angle from ShackleTargetPosition to ShacklePickedUnitPosition) Less than or equal to ((Angle from ShackleCasterPosition to ShackleTargetPosition) + 30.00)
              • ((Picked unit) is alive) Equal to True
              • (Picked unit) Not equal to (Triggering unit)
              • (Picked unit) Not equal to (Damage source)
            • Then - Actions
              • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                • If - Conditions
                  • (Number of units in ShackleTargetsBehind) Equal to 0
                • Then - Actions
                  • Unit Group - Add (Picked unit) to ShackleTargetsBehind
                • Else - Actions
            • Else - Actions
      • Set ShackleTargetPick = (Random 1 units from ShackleTargetsBehind)
      • Unit Group - Remove all units of ShackleTargetsBehind from ShackleTargetsBehind
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Number of units in ShackleTargetPick) Greater than 0
        • Then - Actions
          • Unit - Create 1 Dummy for (Owner of (Damage source)) at ShackleTargetPosition facing Default building facing degrees
          • Unit - Add a 1.00 second Generic expiration timer to (Last created unit)
          • Unit - Add Shackleshot Stun to (Last created unit)
          • Unit - Set level of Shackleshot Stun for (Last created unit) to (Level of Shackleshot for (Damage source))
          • Unit - Order (Last created unit) to Human Mountain King - Storm Bolt (Triggering unit)
          • Unit Group - Pick every unit in ShackleTargetPick and do (Actions)
            • Loop - Actions
              • Unit Group - Remove (Picked unit) from ShackleTargetsBehind
              • Set ShacklePickedUnitPosition2 = (Position of (Picked unit))
              • Unit - Create 1 Dummy for (Owner of (Damage source)) at ShacklePickedUnitPosition2 facing Default building facing degrees
              • Unit - Add a 1.00 second Generic expiration timer to (Last created unit)
              • Unit - Add Shackleshot Stun to (Last created unit)
              • Unit - Set level of Shackleshot Stun for (Last created unit) to (Level of Shackleshot for (Damage source))
              • Unit - Order (Last created unit) to Human Mountain King - Storm Bolt (Picked unit)
          • Lightning - Create a Mana Flare lightning effect from source ShackleTargetPosition to target ShacklePickedUnitPosition2
          • Set Shackle[ShackleInstances[0]] = (Last created lightning effect)
          • Lightning - Change color of (Last created lightning effect) to (0.30 0.50 0.90) with 0.50 alpha
          • Custom script: call RemoveLocation(udg_ShacklePickedUnitPosition2)
          • Set ShackleInstances[0] = (ShackleInstances[0] + 1)
          • Set ShackleInstances[1] = (ShackleInstances[1] + 1)
          • Custom script: if udg_ShackleInstances[0] >= 8000 then
          • Set ShackleInstances[0] = 0
          • Custom script: endif
          • Custom script: call RemoveLocation(udg_ShackleCasterPosition)
          • Custom script: call RemoveLocation(udg_ShackleTargetPosition)
          • Custom script: call RemoveLocation(udg_ShacklePickedUnitPosition)
          • Custom script: call RemoveLocation(udg_ShacklePickedTreePosition)
          • Custom script: call DestroyGroup(udg_ShackleTargetPick)
          • Custom script: call DestroyGroup(udg_ShackleGroup)
          • Wait (0.75 x (Real((Level of Shackleshot for (Damage source))))) seconds
          • Lightning - Destroy Shackle[(ShackleInstances[0] - ShackleInstances[1])]
          • Set ShackleInstances[1] = (ShackleInstances[1] - 1)
        • Else - Actions
          • Set ShackleTargetPosition2 = (ShackleTargetPosition offset by 353.55 towards (Angle from ShackleCasterPosition to ShackleTargetPosition) degrees)
          • Destructible - Pick every destructible in (Region centered at ShackleTargetPosition2 with size (500.00, 500.00)) and do (Actions)
            • Loop - Actions
              • Set ShacklePickedTreePosition = (Position of (Picked destructible))
              • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                • If - Conditions
                  • ((Picked destructible) is alive) Equal to True
                  • (Angle from ShackleTargetPosition to ShacklePickedTreePosition) Greater than or equal to ((Angle from ShackleCasterPosition to ShackleTargetPosition) - 25.00)
                  • (Angle from ShackleTargetPosition to ShacklePickedTreePosition) Less than or equal to ((Angle from ShackleCasterPosition to ShackleTargetPosition) + 25.00)
                • Then - Actions
                  • Unit - Create 1 Dummy for (Owner of (Damage source)) at ShackleTargetPosition facing Default building facing degrees
                  • Unit - Add a 1.00 second Generic expiration timer to (Last created unit)
                  • Unit - Add Shackleshot Stun to (Last created unit)
                  • Unit - Set level of Shackleshot Stun for (Last created unit) to (Level of Shackleshot for (Damage source))
                  • Unit - Order (Last created unit) to Human Mountain King - Storm Bolt (Triggering unit)
                  • Custom script: if udg_ShacklePickedTree == null then
                  • Set ShacklePickedTree = (Picked destructible)
                  • Set ShacklePickedTreePosition2 = (Position of ShacklePickedTree)
                  • Custom script: endif
                • Else - Actions
          • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            • If - Conditions
              • ShacklePickedTree Not equal to No destructible
            • Then - Actions
              • Lightning - Create a Mana Flare lightning effect from source ShackleTargetPosition to target ShacklePickedTreePosition2
              • Set Shackle[ShackleInstances[0]] = (Last created lightning effect)
              • Lightning - Change color of (Last created lightning effect) to (0.30 0.50 0.90) with 0.50 alpha
              • Custom script: call RemoveLocation(udg_ShacklePickedTreePosition2)
              • Set ShackleInstances[0] = (ShackleInstances[0] + 1)
              • Set ShackleInstances[1] = (ShackleInstances[1] + 1)
              • Set ShacklePickedTree = No destructible
              • Custom script: if udg_ShackleInstances[0] >= 8000 then
              • Set ShackleInstances[0] = 0
              • Custom script: endif
              • Custom script: call RemoveLocation(udg_ShackleCasterPosition)
              • Custom script: call RemoveLocation(udg_ShackleTargetPosition)
              • Custom script: call RemoveLocation(udg_ShacklePickedUnitPosition)
              • Custom script: call RemoveLocation(udg_ShacklePickedTreePosition)
              • Custom script: call DestroyGroup(udg_ShackleTargetPick)
              • Custom script: call DestroyGroup(udg_ShackleGroup)
              • Wait (0.75 x (Real((Level of Shackleshot for (Damage source))))) seconds
              • Lightning - Destroy Shackle[(ShackleInstances[0] - ShackleInstances[1])]
              • Set ShackleInstances[1] = (ShackleInstances[1] - 1)
            • Else - Actions


Powershot

GUI/JASS: GUI
MUI/MPI: MUI
Leakless: Yes
Lagless: Yes

Spell Info:

Windrunner winds up her bow for up to 1 second to perform a single powerful shot. The arrow travels up to 1700 distance, dealing damage and destroying trees in its path. The damaged dealt is greatest to the first target it hits and is reduced by 10% with each other it passes through.

Level 1 - 120 initial damage.
Level 2 - 200 initial damage.
Level 3 - 280 initial damage.
Level 4 - 360 initial damage.

Screenshot:
powershot.jpg
Code:
Trigger:
  • Powershot Casting
    • Events
      • Unit - A unit Begins casting an ability
    • Conditions
      • (Ability being cast) Equal to Powershot
    • Actions
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • PowerInstances Greater than or equal to 1000
        • Then - Actions
          • Set FocusFireTargets = 0
        • Else - Actions
      • Set PowerCasterPosition = (Position of (Triggering unit))
      • Set PowerTargetPoint = (Target point of ability being cast)
      • Set PowerAngle[PowerInstances] = (Angle from PowerCasterPosition to PowerTargetPoint)
      • Animation - Change (Triggering unit)'s animation speed to 80.00% of its original speed
      • Unit - Set the custom value of (Triggering unit) to PowerInstances
      • Countdown Timer - Start PowerTimer[PowerInstances] as a One-shot timer that will expire in 1.00 seconds
      • Set PowerInstances = (PowerInstances + 1)
      • Custom script: call RemoveLocation(udg_PowerCasterPosition)
      • Custom script: call RemoveLocation(udg_PowerTargetPoint)

Trigger:
  • Powershot Shoot
    • Events
      • Unit - A unit Stops casting an ability
    • Conditions
      • (Ability being cast) Equal to Powershot
    • Actions
      • Animation - Change (Triggering unit)'s animation speed to 100.00% of its original speed
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • (Elapsed time for PowerTimer[(Custom value of (Triggering unit))]) Greater than 0.30
        • Then - Actions
          • Set PowerCasterPosition2 = (Position of (Triggering unit))
          • Unit - Create 1 Powershot Dummy for (Owner of (Triggering unit)) at PowerCasterPosition2 facing PowerAngle[(Custom value of (Triggering unit))] degrees
          • Unit - Add a 0.60 second Generic expiration timer to (Last created unit)
          • Unit - Set the custom value of (Last created unit) to (Custom value of (Triggering unit))
          • Unit Group - Add (Last created unit) to PowerGroup
          • Set PowerDamage[(Custom value of (Triggering unit))] = ((40.00 + (80.00 x (Real((Level of Powershot for (Triggering unit)))))) x (Elapsed time for PowerTimer[(Custom value of (Triggering unit))]))
          • Set PowerSpeed[(Custom value of (Triggering unit))] = 90.00
          • Unit - Set the custom value of (Triggering unit) to 0
          • Custom script: call RemoveLocation(udg_PowerCasterPosition2)
        • Else - Actions

Trigger:
  • Powershot Arrow
    • Events
      • Time - Every 0.03 seconds of game time
    • Conditions
    • Actions
      • Unit Group - Pick every unit in PowerGroup and do (Actions)
        • Loop - Actions
          • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
            • If - Conditions
              • ((Picked unit) is alive) Equal to True
            • Then - Actions
              • Set PowerArrow = (Picked unit)
              • Set PowerPosition = (Position of PowerArrow)
              • Set PowerCustomValue = (Custom value of (Picked unit))
              • Special Effect - Create a special effect at PowerPosition using Tornado.mdx
              • Special Effect - Destroy (Last created special effect)
              • Unit - Add a 1.50 second Generic expiration timer to (Last created unit)
              • Set PowerDamageArea = (Units within 150.00 of PowerPosition matching ((((Matching unit) is A structure) Equal to False) and ((((Matching unit) belongs to an enemy of (Owner of (Picked unit))) Equal to True) and (((Matching unit) Not equal to (Picked unit)) and ((((Matching unit) is in PowerDamagedTargets[PowerCustomValue]) Equal to False) and (((Matching unit is alive) Equal to True))
              • Unit Group - Pick every unit in PowerDamageArea and do (Actions)
                • Loop - Actions
                  • Unit Group - Add (Picked unit) to PowerDamagedTargets[PowerCustomValue]
                  • Unit - Cause PowerArrow to damage (Picked unit), dealing PowerDamage[PowerCustomValue] damage of attack type Hero and damage type Universal
                  • Set PowerDamage[PowerCustomValue] = (PowerDamage[PowerCustomValue] x 0.90)
                  • Set PowerSpeed[PowerCustomValue] = (PowerSpeed[PowerCustomValue] x 0.90)
              • Destructible - Pick every destructible within 90.00 of PowerPosition and do (Actions)
                • Loop - Actions
                  • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
                    • If - Conditions
                      • ((Picked destructible) is alive) Equal to True
                    • Then - Actions
                      • Destructible - Kill (Picked destructible)
                      • Set PowerSpeed[PowerCustomValue] = (PowerSpeed[PowerCustomValue] x 0.99)
                      • Set PowerDamage[PowerCustomValue] = (PowerDamage[PowerCustomValue] x 0.99)
                    • Else - Actions
              • Set PowerPosition2 = (PowerPosition offset by PowerSpeed[PowerCustomValue] towards (Facing of (Picked unit)) degrees)
              • Unit - Move (Picked unit) instantly to PowerPosition2
              • Custom script: call RemoveLocation(udg_PowerPosition)
              • Custom script: call RemoveLocation(udg_PowerPosition2)
              • Custom script: call DestroyGroup(udg_PowerDamageArea)
            • Else - Actions
              • Set PowerCustomValue = (Custom value of (Picked unit))
              • Custom script: call DestroyGroup(udg_PowerDamagedTargets[udg_PowerCustomValue])
              • Unit Group - Remove (Picked unit) from PowerGroup


Windrunner

GUI/JASS: GUI
MUI/MPI: MUI
Leakless: Yes
Lagless: Yes

Spell Info:

Imbues her body with the essence of wind, increasing her movement speed by 50% and giving her the ability to evade all physical attacks for short period of time. Additionally, the gusts of wind around her impairs the movement of nearby enemies, slowing their movement speed in a 300 AoE around her.

Level 1 - 8% slow, lasts 2.75 seconds.
Level 2 - 16% slow, lasts 3.5 seconds.
Level 3 - 24% slow, lasts 4.25 seconds.
Level 4 - 30% slow, lasts 5 seconds.

Screenshot:
windrunner.jpg
Code:
Trigger:
  • Windrunner
    • Events
      • Unit - A unit Starts the effect of an ability
    • Conditions
      • (Ability being cast) Equal to Windrunner
    • Actions
      • Set WindrunnerPosition = (Position of (Triggering unit))
      • Unit - Add Windrunner Spell Book to (Triggering unit)
      • Player - Disable Windrunner Spell Book for (Owner of (Triggering unit))
      • Unit - Create 1 Dummy for (Owner of (Triggering unit)) at WindrunnerPosition facing Default building facing degrees
      • Unit - Add a 1.00 second Generic expiration timer to (Last created unit)
      • Unit - Add Windrunner Speed to (Last created unit)
      • Unit - Set level of Windrunner Speed for (Last created unit) to (Level of Windrunner for (Triggering unit))
      • Unit - Order (Last created unit) to Orc Shaman - Bloodlust (Triggering unit)
      • Unit - Set level of Windrunner Slow Aura for (Triggering unit) to (Level of Windrunner for (Triggering unit))
      • Custom script: call RemoveLocation(udg_WindrunnerPosition)
      • Wait (2.00 + (0.75 x (Real((Level of Windrunner for (Triggering unit)))))) seconds
      • Unit - Remove Windrunner Spell Book from (Triggering unit)

Trigger:
  • Windrunner Effect
    • Events
      • Time - Every 0.10 seconds of game time
    • Conditions
    • Actions
      • Set WindrunnerCasters = (Units in (Playable map area) matching (((Matching unit) has buff Windrunner Speed ) Equal to True))
      • Unit Group - Pick every unit in WindrunnerCasters and do (Actions)
        • Loop - Actions
          • Set WindrunnerPosition = (Position of (Picked unit))
          • Special Effect - Create a special effect at WindrunnerPosition using Tornado.mdx
          • Special Effect - Destroy (Last created special effect)
          • Custom script: call RemoveLocation(udg_WindrunnerPosition)
      • Custom script: call DestroyGroup(udg_WindrunnerCasters)


Focus Fire

GUI/JASS: GUI
MUI/MPI: MUI
Leakless: Yes
Lagless: Yes

Spell Info:

Alleria channels wind throughout her body to surge an excess of adrenaline, giving her maximum attack speed on one target. Damage is reduced in this state.

Level 1 - 50% reduced damage.
Level 2 - 40% reduced damage.
Level 3 - 30% reduced damage.

Screenshot:
focusfire.jpg
Code:
Trigger:
  • Damage Detection
    • Events
      • Map initialization
    • Conditions
    • Actions
      • Set EventUnits = (Units in (Playable map area))
      • Unit Group - Pick every unit in EventUnits and do (Actions)
        • Loop - Actions
          • Trigger - Add to Shackleshot <gen> the event (Unit - (Picked unit) Takes damage)
          • Trigger - Add to Focus Fire Damage Reduction <gen> the event (Unit - (Picked unit) Takes damage)

Trigger:
  • Damage Detection 2
    • Events
      • Unit - A unit enters (Playable map area)
    • Conditions
      • ((Triggering unit) is in EventUnits) Equal to False
    • Actions
      • Unit Group - Add (Triggering unit) to EventUnits
      • Trigger - Add to Shackleshot <gen> the event (Unit - (Triggering unit) Takes damage)
      • Trigger - Add to Focus Fire Damage Reduction <gen> the event (Unit - (Triggering unit) Takes damage)

Trigger:
  • Focus Fire Casting
    • Events
      • Unit - A unit Starts the effect of an ability
    • Conditions
      • (Ability being cast) Equal to Focus Fire
    • Actions
      • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
        • If - Conditions
          • FocusFireTargets Greater than or equal to 500
        • Then - Actions
          • Set FocusFireTargets = 0
        • Else - Actions
      • Unit - Set the custom value of (Triggering unit) to FocusFireTargets
      • Set FocusFireTarget[(Custom value of (Triggering unit))] = (Target unit of ability being cast)
      • Unit - Add Focus Fire Attack Speed to (Triggering unit)
      • Unit - Order (Triggering unit) to Orc Troll Berserker - Berserk
      • Unit - Remove Focus Fire Attack Speed from (Triggering unit)
      • Unit - Order (Triggering unit) to Attack FocusFireTarget[(Custom value of (Triggering unit))]
      • Set FocusFireTargets = (FocusFireTargets + 1)

Trigger:
  • Focus Fire Damage Reduction
    • Events
    • Conditions
      • ((Damage source) has buff Focus Fire Buff ) Equal to True
    • Actions
      • Unit - Set life of (Triggering unit) to ((Life of (Triggering unit)) + ((Damage taken) x (0.60 - (0.10 x (Real((Level of Focus Fire for (Damage source))))))))

Trigger:
  • Focus Fire Remove Buff
    • Events
      • Unit - A unit Is attacked
    • Conditions
      • (Attacked unit) Not equal to FocusFireTarget[(Custom value of (Attacking unit))]
      • ((Attacking unit) has buff Focus Fire Buff ) Equal to True
    • Actions
      • Unit - Remove Focus Fire Buff buff from (Attacking unit)

Updates:
Update v1.1: Fixed powershot hotkey for learning. Added wind effect for Windrunner and Focus Fire. Changed some triggers.
 

Attachments

  • Windrunner's Spells.w3x
    55.9 KB · Views: 725
  • Windrunner's Spells v1.1.w3x
    57.4 KB · Views: 1,302
Oh lord. A GUI MUI spellpack.
What could be worse? :p
 
......yet another DotA pack, if you do make another one, please make it Storm Spirit :)!
Testing now, wait a few minutes.

Shackle Shot seems fine, though I never really understood it's angle or how it works.
Powershot's hotkey is broken (Learn). Looks fine otherwise.
Windrunner's trail isn't prominent either.
Focus Fire doesn't have those fancy wind things attached to hand and stuff and what if you cast some buff dispelling spell onto her? Will Focus Fire be removed?

You do know that DotA uses a custom model for the wind effects? It is just the same one with no animation (no stand or birth) (like Frost Nova)<-- Not an accurate explanation of what I'm trying to tell you, I can't think of how to say.

Oh lord. A GUI MUI spellpack.
What could be worse?
Right now, SO COLD!

Windrunner's Spells
Shackleshot
Powershot
Windrunner
Focus Fire
Made By Angel_Island
Alleria the Windrunner's Skills
Shackleshot
Powershot
Windrunner
Focus Fire
CODED by Angel_Island
 
I wonder why those spells will include
Lagless
Leakless

If you want to post up a spell of spell pack, just be sure it is lagless and leakless. So interesting...
 
I know, I mean from where you get them?
Is there any Dota site where you find the icons?

I found them in the Dota Site.

......yet another DotA pack, if you do make another one, please make it Storm Spirit :)!
Testing now, wait a few minutes.

Shackle Shot seems fine, though I never really understood it's angle or how it works.
Powershot's hotkey is broken (Learn). Looks fine otherwise.
Windrunner's trail isn't prominent either.
Focus Fire doesn't have those fancy wind things attached to hand and stuff and what if you cast some buff dispelling spell onto her? Will Focus Fire be removed?

You do know that DotA uses a custom model for the wind effects? It is just the same one with no animation (no stand or birth) (like Frost Nova)<-- Not an accurate explanation of what I'm trying to tell you, I can't think of how to say.

The angle of the Shackleshot is listed in the DotA-Wiki.
I will fix the Powershot hotkey (Learn), Windrunner's trail and Focus Fire wind thing later.
No. Focus Fire is not removed when you use dispel magic on the unit.
 
Code:
# Custom script: if udg_FocusFireTargets >= 500 then
# Set FocusFireTargets = 0
# Custom script: endif
Why?
There's a perfectly fine GUI function for that :p .

And good spells;
But try to make your own instead of copying :rolleyes: .
 
Code:
If (All Conditions are True) then do (Then Actions) else do (Else Actions)
    If - Conditions
        FocusFireTargets Greater than or equal to (>=) 500
    Then - Actions
        Set FocusFireTargets = 0
    Else - Actions
 
Romek said:
Oh lord. A GUI MUI spellpack.
What could be worse?
Oh, I forgot.
A Hybrid-JASS-GUI MUI spellpack.
 
The shackleshot is good, the powershot distance should be improved like in dotA(this is if u want it to be as same as dotA), the windrunner ability should have more of those tornado effects attached to her chest or origin or whatever and the focus fire should be good. I rly don't know if your Focus Fire is fixed cuz in dotA if u cast it many times you will heal the targeted unit :). For more info about the Windrunner spells check this out. Here is what dotA uses. A tornado wind model but with no animation. Import it to your map.
 

Attachments

  • Tornado.mdx
    1.9 KB · Views: 485
Yep, the windrunner needs almost all of her skills to involve tornadoes hehehe.....
 
There's something very strange with the Powershot ability after I imported it into another map.

I'm able to use the skill twice perfectly, but if I try to use it a third time the arrow won't fire.
 
General chit-chat
Help Users
  • The Helper The Helper:
    alternatively if you not making at least 23 an hour you could work in an Aldi warehouse
  • Varine Varine:
    Yeah I've been thinking about using AI for shit. I'm on vacation next week so I'm going to spend some time reorganizing everything and getting all my shit back in order
  • Varine Varine:
    lol I technically make less than 23 right now because I'm on salary and am there all the time, but it's a lot more than a normal wage still. I also have a meeting soon to renegotiate my pay because I want about a 25% increase to account for what I'm actually doing or a re-evaluation of our duties so that that my responsibilities are more in line with my pay. Depending on how that goes I'm prepared to give notice and move on, I don't mind taking less money so I'd have time for the rest of my life, but I'd rather they just fucking pay me enough to justify the commitment on my end. Plus right now I hold pretty much all the cards since I'm the only one actually qualified for my position.
    +1
  • Varine Varine:
    The other chef was there before me and got his position by virtue of being the only adult when the old general manager got married and didn't want to deal with the kitchen all the time, and happened to be in the position when the GM quit. New GM is fine with front of house but doesn't know enough about the kitchen side to really do anything or notice that I'm the one primarily maintaining it. Last time I left they hired like 3 people to replace me and there was still a noticeable drop in quality, so I got offered like 6 dollars an hour more and a pretty significant summer bonus to come back
  • Varine Varine:
    So honestly even if I leave I think it would last a couple of months until it's obvious that I am not exactly replaceable and then I would be in an even better position.
  • Varine Varine:
    But as of right now I have two other job offers that are reasonably close to what my hourly equivalency would be, and I would probably have more time for my other projects. The gap would be pretty easy to fill up if I had time to do my side jobs. I use to do some catering and private events, personal lessons, consultations, ect, and I charge like 120 an hour for those. But they aren't consistent enough for a full time job, too small of a town. And I'm not allowed to move for another year until my probation is over
  • Varine Varine:
    I guess I could get it transferred, but that seems like a hassle.
  • Varine Varine:
    Plus I have a storage room full of broken consoles I need to fix. I need to build a little reflow oven so I can manufacture some mod chips still, but it'll get there.
    +1
  • Varine Varine:
    I would like to get out of cooking in general at some point in the next ten years, but for the time being I can make decent money and pump that into savings. I've been taking some engineering classes online, but those aren't exactly career oriented at the moment, but I think getting into electronic or computer engineering of some sort would be ideal. I'm just going to keep taking some classes here and there until there's one that I am really into.
    +2
  • The Helper The Helper:
    There is money in fixing and reselling consoles. Problem is people know that so they are doing it
  • The Helper The Helper:
    If you can find a source of broken consoles though you can make money fixing them - sometimes some big money
  • Varine Varine:
    I was buying them on Ebay, but it's pretty competitive, so more recently I've just been telling the thrift stores to call me and I will come take all their electronics they can't sell. I've volunteered there before and people use them like a dump sometimes, and so they just have a massive amount of broken shit they throw away
  • Varine Varine:
    The local GoodWill was pretty into it, surprisingly the animal shelter store was not. The lady I talked to there seemed to think I was trying to steal stuff or something, she wasn't very nice about it. Like I'm just trying to stop you having to throw a bunch of electronics away, if you can sell it great. I'd probably pay you for the broken shit too if you wanted
  • Varine Varine:
    Then I make posts on Facebook yard sale pages sometimes saying I want your old electronics, but Facebook being Facebook people on there are also wary about why I want it, then want a bunch of money like it's going to be very worth it
  • Varine Varine:
    Sooner than later I'm going to get my archives business going a little more. I need some office space that is kind of hard to get at the moment, but without it, I have to be like "Yeah so go ahead and just leave your family heirlooms and hundred year old photographs here at my shitty apartment and give me a thousand dollars, and next month I'll give you a thumb drive. I promise I'll take care of them!"
    +1
  • Varine Varine:
    I can do some things with them at their home, but when people have thousands of slides and very delicate newspaper clippings and things, not really practical. I
  • Varine Varine:
    I would be there for days, even with my camera set up slides can take a long time, and if they want perfect captures I really need to use my scanners that are professionally made for that. My camera rig works well for what it is, but for enlargements and things it's not as good.
  • Varine Varine:
    I've only had a couple clients with that so far, though. I don't have a website or anything yet though.
  • Varine Varine:
    Console repair can be worthwhile, but it's also not a thing I can do at scale in my house. I just don't have room for the equipment. I need an office that I can segregate out for archival and then electronic restoration.
  • Varine Varine:
    But in order for that to be real, I need more time, and for more time I need to work less, and to work less I need a different job, and for a different job I need more money to fall back on so that I can make enough to just pay like, rent and utilities and use my savings to find these projects
    +1
  • Varine Varine:
    Another couple years. I just need to take it slow and it'll get there.
  • jonas jonas:
    any chance to get that stolen money back?
  • jonas jonas:
    Maybe you can do console repair just as a side thing, especially if there's so much competition business might be slow. Or do you need a lot of special equipment for that?
  • jonas jonas:
    I recently bought a used sauna and the preowner told me some component is broken, I took a look and it was just a burnt fuse, really cheap to fix. I was real proud of my self since I usually have two left hands for this kinda stuff :p
  • tom_mai78101 tom_mai78101:
    I am still playing Shapez 2. What an awful thing to happen, Varine, and hopefully everything has been sorted out soon. Always use multi-factor authentication whenever you have the opportunity to do so.

      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