Spellpack 4 Blade Master Spells

Chocobo

White-Flower
Reaction score
409
Ooh GUI Locals can ya teach?

:p

Remember Hybrid GUI (using locals in GUI) won't work with extra functions :p

Meaning : If you are using a Pick Every or a thing that creates auto-creates a new function inside the script (not the triggerfunction itself, but it's functions call), it won't work because locals won't be there. ;)
 

Monovertex

Formerly Smith_S9
Reaction score
1,461
How is writing jass any faster then clicking..... anyhow please check the spells.

Typing is faster than clicking. Believe me, I tested xD. I made up a trigger in Jass, then in GUI. I finished the Jass one faster. And it was cleaner, and less laggier. :p

Ok, ok, I will check the spells :p

EDIT: Ok, I finished testing your spells. The first and the lasat ones are great, talking about eye-candy. Their actual effect (on all the spells) is a bit plain. Even if you damage the target depending on different stuff, the only stuff you do is to deal damage. You could have added different effects.

On the first spell, I noticed a thing. After the spell is finished, the hero is unselected. You could select it for the player.
You should modify the second spell. Make it so it impales the first enemy encountered and make it both point and unit targetable. If you target a unit and, in it's 'rush' the blademaster passes through other units without harming them, it's a bit unrealistic.
The third is a bit laggy on the first cast. Also, the idea is not so original. I've seen it done a couple of times (even I did it, when I started mapping).
The last one is cool, although you could shrink down the down the distances, when the blademaster strikes from different angles.
 

hell_knight

Playing WoW
Reaction score
126
K thx for checking spells , you could always make a dummy unit cast a spell on them if you want more effect by the way :p
 

hell_knight

Playing WoW
Reaction score
126
I cannot do JASS, and it drives me in loops and loops and loops and loops and loops and loops and loops and loops X 9999
 

Chocobo

White-Flower
Reaction score
409
Can you re explain array stuff or show me an example cause thats how I learn best :)

Example you have a unit that slide, to make in MPI, it's simple as heaven to use arrays : (I wrote it, took me 25 min)

Code:
Magic Leet Detect
Events
Unit - Generic unit starts the effect of an ability

Conditions
(Ability being cast) Equal to Magic Leet!

Actions
Set CasterUnit[(Player number of (Owner of (Triggering unit)))] = (Triggering unit)
Set TargetUnit[(Player number of (Owner of (Triggering unit)))] = (Target unit of ability being cast)
Wait 5.00 seconds of game-time
Unit - Turn off collision of CasterUnit[(Player number of (Owner of (Triggering unit)))]
Unit - Move instantly CasterUnit[(Player number of (Owner of (Triggering unit)))] at (Position of TargetUnit[(Player number of (Owner of (Triggering unit)))])
Unit - Turn on collision of CasterUnit[(Player number of (Owner of (Triggering unit)))]
Unit - Move instantly TargetUnit[(Player number of (Owner of (Triggering unit)))] at (Random point in (Entire map))

This work simple : After 5 seconds when the cast is ran, the triggering unit takes the place of the target unit, and the target unit is pushed anywhere in the entire map. For a non MPI spell, it would do :

Code:
Magic Leet Detect
Events
Unit - Generic unit starts the effect of an ability

Conditions
(Ability being cast) Equal to Magic Leet!

Actions
Set CasterUnit = (Triggering unit)
Set TargetUnit = (Target unit of ability being cast)
Wait 5.00 seconds of game-time
Unit - Turn off collision of CasterUnit
Unit - Move instantly CasterUnit at (Position of TargetUnit)
Unit - Turn on collision of CasterUnit
Unit - Move instantly TargetUnit at (Random point in (Entire map))

Very simple.

In all cases, to make a spell MPI, we need (1+x)D Arrays than (x)D Arrays.
In that example, the MPI spell had (1+x)D Array than (1)D Array.
Meaning : (2)D Arrays than (1)D Array.


For 3D Arrays, you will go on your own choice, using X slots of the variable you need (you still using 2d arrays).


Code:
Stats Up Code
Events
Unit - Generic unit starts the effect of an ability

Conditions
(Ability being cast) Equal to Stats Up!
[B]//The ability saves the current stats (str, agi, int), divide it after 5 seconds, and gives it the double of all after 30 seconds[/B]

Actions
Set CurrentStats[((Player number of (Owner of (Triggering unit))*3) - 2)] = (Current of strength of (Triggering unit), exclude bonuses)
[B]//Saves the Strength, can be saved at slots (player) : 1 (1), 4 (2), 7 (3), 10 (4), 13 (5), 16 (6), 19 (7), 22 (8), 25 (9), 28 (10), 31 (11), 34 (12), 37 (13), 40 (14), 43 (15), 46 (16)[/B]
Set CurrentStats[((Player number of (Owner of (Triggering unit))*3) - 1)] = (Current of agility of (Triggering unit), exclude bonuses)
[B]//Saves the Agility, can be saved at slots (player) : 2 (1), 5 (2), 8 (3), 11 (4), 14 (5), 17 (6), 20 (7), 23 (8), 26 (9), 29 (10), 32 (11), 35 (12), 38 (13), 41 (14), 44 (15), 47 (16)[/B]
Set CurrentStats[(Player number of (Owner of (Triggering unit))*3)] = (Current of intelligence of (Triggering unit), exclude bonuses)
[B]//Saves the Intelligence, can be saved at slots (player) : 3 (1), 6 (2), 9 (3), 12 (4), 15 (5), 18 (6), 21 (7), 24 (8), 27 (9), 30 (10), 33 (11), 36 (12), 39 (13), 42 (14), 45 (15), 48 (16)[/B]
Wait 5.00 seconds of game-time
Hero - Set (Triggering unit)'s Strength to CurrentStats([((Player number of (Owner of (Triggering unit))*3) - 2)] / 2)
[B]//Retreive Strength[/B]
Hero - Set (Triggering unit)'s Agility to CurrentStats([((Player number of (Owner of (Triggering unit))*3) - 1)] / 2)
[B]//Retreive Agility[/B]
Hero - Set (Triggering unit)'s Intelligence to CurrentStats([(Player number of (Owner of (Triggering unit))*3)] / 2)
[B]//Retreive Intelligence[/B]
Wait 25.00 seconds of game-time
Hero - Set (Triggering unit)'s Strength to CurrentStats([((Player number of (Owner of (Triggering unit))*3) - 2)] x 2)
[B]//Add Strength[/B]
Hero - Set (Triggering unit)'s Agility to CurrentStats([((Player number of (Owner of (Triggering unit))*3) - 1)] x 2)
[B]//Add Agility[/B]
Hero - Set (Triggering unit)'s Intelligence to CurrentStats([(Player number of (Owner of (Triggering unit))*3)] x 2)
[B]//Add Intelligence[/B]

:p We used 3d/2d arrays for MPI, 2d/1d can be used for with/for single spell.
 

hell_knight

Playing WoW
Reaction score
126
Ahh now I get it maybe in some of my future spells it will feature MPI, I get everything, but 3d arrays look a bit confusing.
 

Chocobo

White-Flower
Reaction score
409
Ahh now I get it maybe in some of my future spells it will feature MPI, I get everything, but 3d arrays look a bit confusing.

3d can be called 2d if you want. It is simply we give a 3st dimentional type to the variable, like a matrix :

Code:
--------------------> 2d
|   1  2  3  4  5  6  7
|   8  9  10 11 12 13 14
|   15 16 17 18 19 20 21
|   22 23 24 25 26 27 28
...
3d

Like that. (3d)


Code:
--------------------> 2d
1  2  3  4  5  6  7  8  9  10 11 12 13...

This is 2d


Code:
-> 1d
1

And this is 1d.
 

hell_knight

Playing WoW
Reaction score
126
I kind of get it now but where would you use it instead of just normal arrays I don't see the reason yet :[ ( bear with me )
 

LordOglog

New Member
Reaction score
16
V nice spells though i think you should make it so the blademaster is re selected after the spell has been used so players don't have to select the blademaster again after the spell has been used:
Code:
Selection - Select fecaster for (Owner of fecaster)
 

elmstfreddie

The Finglonger
Reaction score
203
I haven't looked at them in warcraft, but they sound nice and the screenshots look nice... So GJ!

But seriously, do people only post blademaster spells -.-"
 

hell_knight

Playing WoW
Reaction score
126
Blade masters are the only cool looking swordsman int he game (Footmans meh) (Arthas has a blade 2 X as fat at the bottom then at the top with a retarded colour)
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • WildTurkey WildTurkey:
    is there a stephen green in the house?
    +1
  • The Helper The Helper:
    What is up WildTurkey?
  • The Helper The Helper:
    Looks like Google fixed whatever mistake that made the recipes on the site go crazy and we are no longer trending towards a recipe site lol - I don't care though because it motivated me to spend alot of time on the site improving it and at least now the content people are looking at is not stupid and embarrassing like it was when I first got back into this like 5 years ago.
  • The Helper The Helper:
    Plus - I have a pretty bad ass recipe collection now! That section of the site is 10 thousand times better than it was before
  • The Helper The Helper:
    We now have a web designer at my job. A legit talented professional! I am going to get him to redesign the site theme. It is time.
  • Varine Varine:
    I got one more day of community service and then I'm free from this nonsense! I polished a cop car today for a funeral or something I guess
  • Varine Varine:
    They also were digging threw old shit at the sheriff's office and I tried to get them to give me the old electronic stuff, but they said no. They can't give it to people because they might use it to impersonate a cop or break into their network or some shit? idk but it was a shame to see them take a whole bunch of radios and shit to get shredded and landfilled
  • The Helper The Helper:
    whatever at least you are free
  • Monovertex Monovertex:
    How are you all? :D
    +1
  • 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 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