• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

Item Enchanting Idea And How?

Status
Not open for further replies.
Level 2
Joined
Feb 12, 2012
Messages
18
Guys 2 things I want to create a trigger named enchanting to transform itens by buying the created item, like that: I have "Steel Sword" them I enchant (by buying the holy sword(other item)) that and turn in "Holy Steel Sword" Or "Blazing Steel Sword" (other items) paying 200 mana for exemple.

Thank You Soooooo Much For That Guys!!

Thank You A Lot Guys!
I learning so quick with you guys!
 
Level 14
Joined
Apr 20, 2009
Messages
1,543
You know... There is a link called Search next to New Posts and Quick Links in your toolbar. It's underneath your profile info in the top right corner of your screen.

I used it to find this:

http://www.hiveworkshop.com/forums/spells-569/item-combination-system-v1-3-a-210505/

http://www.hiveworkshop.com/forums/triggers-scripts-269/recipe-system-210692/

http://www.hiveworkshop.com/forums/spells-569/recipe-engine-v2-0-0-0-a-199204/

http://www.hiveworkshop.com/forums/spells-569/item-recipe-system-1-1-1-a-196760/

http://www.hiveworkshop.com/forums/spells-569/recipe-system-v1-5-0-0-a-206644/

http://www.hiveworkshop.com/forums/...ger-all-recipe-item-what-do-you-think-206907/

And guess what, they where all on the first page :O!
Imagine how much more links I could've posted if I looked on the second and third page!
There are a total of 8 pages!!!! 0.o

Try this search term: Recipe System

(Yeah I know, there are way to many of them at this moment ^.^. Just pick one that you like...)

I hope that this satisfies your needs?
 
Level 2
Joined
Feb 12, 2012
Messages
18
OWWWW You are soo, like we say here in my country, good people guys! more than other game forums.


Note: Good people means: cool, or friendly people.
But I already do my enchanting system! It very nice! This is my first map stays so cool!
Hey did you know if there is an action to set mana -number ?
 
Level 17
Joined
Nov 13, 2006
Messages
1,814
OWWWW You are soo, like we say here in my country, good people guys! more than other game forums.


Note: Good people means: cool, or friendly people.
But I already do my enchanting system! It very nice! This is my first map stays so cool!
Hey did you know if there is an action to set mana -number ?

like this?

  • Unit - Set mana of (Triggering unit) to 888.00
this modify the mana but not the max mana, so if max mana is 1000 then with this u cant give more but u can give any mana between 0-1000.

for modify the max mana/hp u must use item permanent hp/mp ability (like on my map), or use tomes for increase it, abilities, but if u want do with items like in my map then best way is the useing ability trick, i also made buff what increase with x% max hp then after buff expired decrease to original and item also can give hp and its stacking with buff , so if u pick up a item what must give 1000 hp and buff increase 30% hp then its give + 300 hp.

if u use alot item its long work, not hard but u must declare every stat to items

i do this way:
-i use item level like a unique id, so each equipment got different item level (hold shift+left click then u can type any level)

so lowest level armor got level 100 item level, next armor is lv 101

then i use alot variables

i give a example if i use armor what is lv100 item
item_hp[100] = 500
item_mp[100] = 100
item_crit[100] = 2
item_critdmg[100] = 25
item_eva[100] = 200
item_lifesteal[100] = 15
item_agi[100] = 5
etc etc etc, depend how much stat i want give with that item

when i equip the item i check each variable, so
add to unit + 500hp, + 100mp, +2% crit etc

if already was 1 equiped item then i do this
x = item_hp[new item level] - item_hp[old item level]
add x hp to unit
same with other stats
 
Status
Not open for further replies.
Top