This is a read only copy without any forum functionality of the old Modcraft forum.
If there is anything that you would like to have removed, message me on Discord via Kaev#5208.
Big thanks to Alastor for making this copy!

Menu

Author Topic: [SHOWOFF] What Are You Working On  (Read 318511 times)

stoneharry

  • Contributors
  • Creator of Worlds
  • *****
  • Posts: 617
    • View Profile
Re: [SHOWOFF] What Are You Working On
« Reply #1770 on: July 06, 2016, 12:01:08 pm »
Quote from: "111tester"
Quote from: "stoneharry"
I did some updates to my spell editor recently:



Added icons to the spell list, started working on spell string parsing. I'm working through Vel's tag documentation:

Quote
MAIN THINGS
Each spell can have up to 3 effects. Each linked tag can also have a number of the effect, like $TAG1 $TAG2 $TAG3

for example our spell has a two damage types, the first deals a

(effect1)1-100 damage(Randomly)
(effect2)50 damage. Additionally
(effect3)decrease enemy speed by 30%

Spell deals a $s1 damage, and $s2 damage. Additionally decrease target's speed by $s3%.
ingame: spell deals a 1-100 damage, and 50 damage. Additionally decrease target's spee by 30%.

if you use tag without the number - it calculate all the damage(1+2+3 if it possible) from the spell. Or something else(dependent of the tag)

-------------------------------------------------------
$N - current stacks of spell, for example in tooltip:
          Your blazing shield now have $n charges
-------------------------------------------------------
$d - spell duration:
          Your diseace will torment the victim within $d.
-------------------------------------------------------
$t - pereodic trigger, for example:
          Your fire shield deals 100 damage every $t seconds.
-----------------------------------------------------
$o - summary damage dome from DOTHOT
          Your immolation made a $o damage during 10 seconds.
          (for example your spell made a 10 damage each 2 seconds, spelldur 10seconds = $o automatically calculate damage as 50, $o in this case = 50)
-----------------------------------------------------
$x - count of targets for this spell
          your chain lightning hits $x targets
-----------------------------------------------------
$v - maximal allowed level of target
           "Target of the spell can only be a target not higher than level $v
-----------------------------------------------------
$z - destination of heartstone(your tavern name)
-----------------------------------------------------
$s - simple base point of spell(damage or healing, support scatter like in fireball damage 8-12 damage etc)
           your fireball deals a $s fire damage.
           $s - is minimal damage
           $S - is MAXIMAL DAMAGE
           like deals $s - $S damage. INGAME: deals 7 - 14 damage.
-----------------------------------------------------
$m - modified (can by talents or glyph, used only for player-based spells) point of spell
            you can ressurect the target with the $m health and mana
------------------------------------------------------
$r - radius for direct spell
           cast a fireball, works at a distance of $r yards.
------------------------------------------------------
$a - radius for AOE spell
           your circle of fire deals a XXX damage of $a yards around you.
------------------------------------------------------
$b - additional multipler of the spell(HARD TO USE)
           for example 66(main damage) + combo point * $b
           (used only by rogues and druids in cat form)
           deals a $(66*1+$b) damage for 1 combo, and $(66*2+$b) damage for 2 combo
------------------------------------------------------
$h - chance to proc (percentage only)
           your mind blast can proc by $h% chance, when you use a this spell.
------------------------------------------------------
$g(Mr:Mrs) (specific gender description)
           Usefull mostly for ruRU(and maybe other) locales with different class names by gender.
           example: $g(Priest:Priestess) deals a 150% holy damage.
           the same as quests like senjorlady
------------------------------------------------------
$l - Specific locale description(mostly with the ruRU locale)
          typocal form: $l: екс: екса: ексов)(if try to translate it $l:One_Cake:two_Cakes:lot_cakes(higher than 2)
          (nevermind, a feature of the Russian language)
------------------------------------------------------
$q - misc value
          used in auras with base value + misc value(for example ressurection useas BV as restored hp, and miscA as restored mana.

------------------------------------------------------
$AP - Current attack power(not confirmed) uses only for formulas, involved in the formation of damage or healing.
------------------------------------------------------
$E - dependent(from damage) spell value. For example in death coil. It deals 244($s) damage, and leech $e health to the caster
     or mana shield, when caster take a damage, they less $e of mana per 1 taken damage.
------------------------------------------------------
$u - max stack value
------------------------------------------------------
$i - max affected target of spells(for example mass fear)
------------------------------------------------------
$f - dummy(script) value (used in death strike of DK)
------------------------------------------------------
$LINK to spell param, set your spell entry from the different spell(if they triggered by current)
for example main spell with entry 100(fireball) and deals a 7 damage , triggered spell with entry 666(burn) deals a 14 damage during the 5 seconds.
EXAMPLE: Deals a $s1 damage, and additional $666o1 fire damage by $d.

three parts
1) $
2) spell entry(usually different(triggered))
3) linked param(see above)
------------------------------------------------------
${FORMULA} - in brackets you can combine different values to made a one.

1. { } external brackets
2. ( ) internal brackets - Within each of these brackets, a separate formula, like ${(formula1)*(formula2)} or more
3. *$ multi-modifier, always in the end of formula(it calculates: *per level of caster, *base spell modifier. and other things from spell.dbc is not included into main formula)

EXAMPLE: Ice nova uses ${$m1*$} - ${$M1*$} of frost damage at discription.
original formula: 52-59+caster level*0.50(spell modifier)

for example player level is 50.

result: ice nova uses 52+50*0.50 = 51 minimal damage, 59 + 50*0.50=54.5 damage
frost bols deals a 51 - 54 frost damage.
**************************
second example:
Revenge(warrior tank spell): Deals from ${$m1+$AP*0.310} to ${$M1+$AP*0.310} weapon damage
**************************
third example:
backstab(rogue spell): deals $m2% weapon damage, and additional  ${$m1*1.5} damage.

effect1: weapon 60% of normalized weapon damage
effect2: weapon 150% percent damage(include buff effects)
effect3: add compo point +1

we know that this spell deals a 60% of weapon damage +150%, this can be present as 1.5, we get ${$m1*1.5} (60%*150%). = 210% of weapon damage(approx)
---------------------------------------------------------



Unknown params of formulas:
$MWS - some of meele spells
$PL
$FLOOR
$COND
$GT

unused tags:
$j
$w

$sp = spellpower
$spa = arcane spellpower
$spfi = fire
$spfr = frost
$sph = holy
$spn = nature
$sps = shadow
$bh = spell power healing

$RAP = range attack power

$MWB - max weapon base dmg   | melee weapon base dmg (max)
$mwb - min weapon base dmg   | melee weapon base dmg (min)
$MWS - max weapon speed      | melee weapon speed

true or false
$?(s Id of spell needed to check)[If learned - this text][If not learned - this text]
$?(sid1 | sid2)[true][false] = If learned spell 1 or spell 2 than true, else - false
$?!(sid1 | sid2)[true][false] = If learned spell 1 or spell 2 than false, else - true

Thanks, that's actually really useful.
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

schlumpf

  • Administrator
  • Creator of Worlds
  • *****
  • Posts: 2967
    • View Profile
Re: [SHOWOFF] What Are You Working On
« Reply #1771 on: July 06, 2016, 02:11:04 pm »
Someone please add that stuff to the wiki.
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

fakepanda

  • Registred Member
  • Race Changer
  • *****
  • Posts: 29
    • View Profile
Re: [SHOWOFF] What Are You Working On
« Reply #1772 on: July 13, 2016, 07:50:18 am »
Been working on retro porting the original alpha gnome female to 1.12.1, I'm only porting the textures over since the release model is clearly superior to the alpha one, mixing alpha textures and release model and you get something that doesn't look that bad.

Pretty good result so far:


The only problem that I have with the texturing atm is getting the ears to line up properly, but I think I have an idea on what I will do.
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

Met@

  • Contributors
  • Wiki Incarnate
  • *****
  • Posts: 120
    • View Profile
Re: [SHOWOFF] What Are You Working On
« Reply #1773 on: July 18, 2016, 01:59:01 am »
Not WoW, I'm working for a friend ( feels good when you are allowed to draw on walls :P )


« Last Edit: January 01, 1970, 01:00:00 am by Admin »

Grymskvll

  • Registred Member
  • Polygonshifter
  • *****
  • Posts: 65
    • View Profile
Re: [SHOWOFF] What Are You Working On
« Reply #1774 on: July 19, 2016, 01:02:37 am »
^there isn't any part of this that isn't great

I made a custom secondary class resource with TrinityCore, Eluna and AIO. I couldn't find an Eluna PlayerHook for when a cast is initiated, only when it finishes successfully, so I had to hack that in (poorly, probably). Handlers for the new hook can return false to stop the cast. What's the best place to request for a new PlayerHook to be added to Eluna?

[media:1ee6a4j3]https://www.youtube.com/watch?v=qHSFOsNAs_A[/media:1ee6a4j3]
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

Kaev

  • Contributors
  • Creator of Worlds
  • *****
  • Posts: 308
    • View Profile
Re: [SHOWOFF] What Are You Working On
« Reply #1775 on: July 20, 2016, 07:08:30 am »
Quote from: "Grymskvll"
^there isn't any part of this that isn't great

I made a custom secondary class resource with TrinityCore, Eluna and AIO. I couldn't find an Eluna PlayerHook for when a cast is initiated, only when it finishes successfully, so I had to hack that in (poorly, probably). Handlers for the new hook can return false to stop the cast. What's the best place to request for a new PlayerHook to be added to Eluna?

[media:hth23vcl]https://www.youtube.com/watch?v=qHSFOsNAs_A[/media:hth23vcl]
Request it on emudevs.com. It's a WoW server development forum hosted by the Eluna developers. :)
(Or just use their GitHub repository to request it, e.g. via issue or pull request)
« Last Edit: January 01, 1970, 01:00:00 am by Admin »

Finsternis

  • Contributors
  • Creator of Worlds
  • *****
  • Posts: 505
    • View Profile
Re: [SHOWOFF] What Are You Working On
« Reply #1776 on: August 03, 2016, 11:09:34 pm »
Work on sharper and for me nicer looking(maybe some 1 else :D) Ahn Qira weapon Textures.

« Last Edit: January 01, 1970, 01:00:00 am by Admin »

phantomx

  • Contributors
  • Creator of Worlds
  • *****
  • Posts: 615
    • View Profile
Re: [SHOWOFF] What Are You Working On
« Reply #1777 on: August 16, 2016, 05:20:58 am »
Hello again here with another showoff video it's been a while.

This is a little hobby of mine this time I added Kenpachi's Captain uniform by replacing a cape model and default robe model, as a bonus in the video I show my updated version of Varian based off the legion cinematic played at the end of the broken shore.

[media:1mjtwrry]https://www.youtube.com/watch?v=7b7JNcIJCJs[/media:1mjtwrry]
« Last Edit: January 01, 1970, 01:00:00 am by Admin »
[wimg]http://i.imgur.com/6fxUQL1.gif[/wimg]

Alastor

  • Contributors
  • Creator of Worlds
  • *****
  • Posts: 1105
    • View Profile
Re: [SHOWOFF] What Are You Working On
« Reply #1778 on: August 25, 2016, 11:03:44 pm »
Well its been a while ...
« Last Edit: January 01, 1970, 01:00:00 am by Admin »
No matter how fast light travels it finds the darkness has always got there first and is waiting for it
Star Citizen Referral Code : STAR-XNFS-HVL9

Amaroth

  • Contributors
  • Creator of Worlds
  • *****
  • Posts: 1219
    • View Profile
    • Amaroth's Tools
Re: [SHOWOFF] What Are You Working On
« Reply #1779 on: August 25, 2016, 11:18:26 pm »
Yep, thats what we surely are working on, on spam :D.
« Last Edit: January 01, 1970, 01:00:00 am by Admin »
English YT tutorial channel. Check it out if you preffer videos over walls of text.:
https://www.youtube.com/AmarothEng

Want to support me for my releases and/or tutorials? You can send donation via Paypal to:
jantoms@seznam.cz

Alastor

  • Contributors
  • Creator of Worlds
  • *****
  • Posts: 1105
    • View Profile
Re: [SHOWOFF] What Are You Working On
« Reply #1780 on: August 25, 2016, 11:52:58 pm »
« Last Edit: January 01, 1970, 01:00:00 am by Admin »
No matter how fast light travels it finds the darkness has always got there first and is waiting for it
Star Citizen Referral Code : STAR-XNFS-HVL9

Bardh

  • Contributors
  • Wiki Incarnate
  • *****
  • Posts: 130
    • View Profile
Re: [SHOWOFF] What Are You Working On
« Reply #1781 on: August 25, 2016, 11:56:28 pm »
I remember when  here in modcraft I got a new rank, I actually thought somebody was thinking for me and my work but I had just reached my number of posts to achieve that rank. Number of post actually means something, but not always, users who actually post useful work here are not clearly distinguished from those who doesn't.I congrats Alastor for reaching 1000 posts, you have truly given the community so much, I just hope modcraft continues to advance and get some updates soon.
« Last Edit: January 01, 1970, 01:00:00 am by Admin »
You can also check project Haradon here: http://www.model-changing.net/blogs/blog/41-haradon/

Alastor

  • Contributors
  • Creator of Worlds
  • *****
  • Posts: 1105
    • View Profile
Re: [SHOWOFF] What Are You Working On
« Reply #1782 on: August 26, 2016, 12:05:50 am »
Thank and keep it up - talking about improving is quite at hand since i still didnt get what i wanted from WoW modding :D When i started doing this i was like ohh so now i could make even custome animations and so but for god's sake its definitly not that easy its been 4 years and i still dont have enough its just quite mess since i want to know something that nobody can answer me just like when you are asking on how to convert wod to lk ... heh if i just had time to play with this more :D
« Last Edit: January 01, 1970, 01:00:00 am by Admin »
No matter how fast light travels it finds the darkness has always got there first and is waiting for it
Star Citizen Referral Code : STAR-XNFS-HVL9

Alastor

  • Contributors
  • Creator of Worlds
  • *****
  • Posts: 1105
    • View Profile
Re: [SHOWOFF] What Are You Working On
« Reply #1783 on: September 01, 2016, 06:46:48 am »
best banner iv ever made
« Last Edit: January 01, 1970, 01:00:00 am by Admin »
No matter how fast light travels it finds the darkness has always got there first and is waiting for it
Star Citizen Referral Code : STAR-XNFS-HVL9

Uthil

  • Registred Member
  • Model Change Addict
  • *****
  • Posts: 283
    • View Profile
Re: [SHOWOFF] What Are You Working On
« Reply #1784 on: September 01, 2016, 09:26:12 am »
Quote from: "Alastor"
best banner iv ever made

 :lol:   :lol:   :lol:   :lol:   :lol:
« Last Edit: January 01, 1970, 01:00:00 am by Admin »
Like my project and you like to support me, you can do it here!